Revert "Initial AOSP push"

This reverts commit dcbff3fe489feb2a1e2dead858ad8cd7afeb6ec3.

Reason for revert: build breakage (b/159482103)

Change-Id: I2a183333c4f4451e81f2aa113f3c2154c5bcad8b
diff --git a/Android.bp b/Android.bp
deleted file mode 100644
index 38444f4..0000000
--- a/Android.bp
+++ /dev/null
@@ -1,46 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_defaults {
-    name: "native_bridge_stub_library_defaults",
-    cflags: [
-        "-Wall",
-        "-Werror",
-        "-Wextra",
-        "-Wover-aligned",
-        "-Wunused",
-    ],
-
-    shared_libs: [
-        "libnative_bridge_vdso",
-    ],
-
-    // TODO(b/24465209): keep stub libraries old loader-compatible.
-    ldflags: [
-        "-Wl,--hash-style=both",
-    ],
-    pack_relocations: false,
-
-    enabled: false,
-    target: {
-       native_bridge: {
-           enabled: true,
-       }
-    },
-
-    native_bridge_supported: true,
-    compile_multilib: "both",
-}
diff --git a/app_process/Android.bp b/app_process/Android.bp
deleted file mode 100644
index 7a2a968..0000000
--- a/app_process/Android.bp
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_binary {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "native_bridge_guest_app_process",
-    overrides: ["app_process"],
-    stem: "app_process",
-
-    srcs: [
-        "app_process.cc",
-    ],
-
-    multilib: {
-        lib64: {
-            suffix: "64",
-        },
-    },
-}
diff --git a/app_process/app_process.cc b/app_process/app_process.cc
deleted file mode 100644
index f997a7e..0000000
--- a/app_process/app_process.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Copyright (C) 2017 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "native_bridge_support/vdso/vdso.h"
-
-int main() {
-  // Let the runtime know that app_process has successfully started
-  native_bridge_post_init();
-}
diff --git a/libEGL/Android.bp b/libEGL/Android.bp
deleted file mode 100644
index 4d5e96d..0000000
--- a/libEGL/Android.bp
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libEGL",
-    overrides: ["libEGL"],
-    stem: "libEGL",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libnativewindow",
-        "libutils",
-    ],
-}
diff --git a/libEGL/stubs_arm.cc b/libEGL/stubs_arm.cc
deleted file mode 100644
index 1dcdcdb..0000000
--- a/libEGL/stubs_arm.cc
+++ /dev/null
@@ -1,247 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13eglBeginFramePvS_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t10initializeEPNS_13egl_display_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t16setCacheFilenameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t18getBlobCacheLockedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t3getEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t7getBlobEPKvlPvl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t7setBlobEPKvlS2_l);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t9terminateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_tC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_tD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t10initializeEPiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t11loseCurrentEPNS_13egl_context_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t11makeCurrentEPNS_13egl_context_tES2_PvS3_S3_S3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t12removeObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t15loseCurrentImplEPNS_13egl_context_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t18getPlatformDisplayEPvPKi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t20getFromNativeDisplayEPvPKi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t3getEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t9addObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t9terminateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_tC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_tD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17eglBeginFrameImplEPvS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18egl_get_connectionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18egl_get_init_countEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19setGlThreadSpecificEPKNS_10gl_hooks_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22egl_set_cache_filenameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34egl_get_string_for_current_contextEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34egl_get_string_for_current_contextEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39eglQueryStringImplementationANDROIDImplEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42egl_get_num_extensions_for_current_contextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android13egl_display_t13haveExtensionEPKcj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android13egl_display_t9getObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglBindAPI);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglBindTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglChooseConfig);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglClientWaitSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCopyBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePbufferFromClientBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePbufferSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePixmapSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePlatformPixmapSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePlatformWindowSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamFromFileDescriptorKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamProducerSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateWindowSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDupNativeFenceFDANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCompositorTimingANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCompositorTimingSupportedANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetConfigAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetConfigs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetFrameTimestampSupportedANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetFrameTimestampsANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetNativeClientBufferANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetNextFrameIdANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetPlatformDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetProcAddress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetStreamFileDescriptorKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSyncAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSyncAttribKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSystemTimeFrequencyNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSystemTimeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglInitialize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglLockSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglMakeCurrent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglPresentationTimeANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryAPI);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamTimeKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamu64KHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStringImplementationANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQuerySurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglReleaseTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglReleaseThread);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSetDamageRegionKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSignalSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamAttribKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerAcquireKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerGLTextureExternalKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerReleaseKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSurfaceAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapBuffersWithDamageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapInterval);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglTerminate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglUnlockSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitClient);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitGL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitNative);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitSyncKHR);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _Z13eglBeginFramePvS_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t10initializeEPNS_13egl_display_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t16setCacheFilenameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t18getBlobCacheLockedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t3getEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t7getBlobEPKvlPvl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t7setBlobEPKvlS2_l);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t9terminateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_tC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_tD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t10initializeEPiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t11loseCurrentEPNS_13egl_context_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t11makeCurrentEPNS_13egl_context_tES2_PvS3_S3_S3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t12removeObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t15loseCurrentImplEPNS_13egl_context_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t18getPlatformDisplayEPvPKi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t20getFromNativeDisplayEPvPKi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t3getEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t9addObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t9terminateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_tC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_tD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android17eglBeginFrameImplEPvS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android18egl_get_connectionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android18egl_get_init_countEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android19setGlThreadSpecificEPKNS_10gl_hooks_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android22egl_set_cache_filenameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android34egl_get_string_for_current_contextEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android34egl_get_string_for_current_contextEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android39eglQueryStringImplementationANDROIDImplEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android42egl_get_num_extensions_for_current_contextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZNK7android13egl_display_t13haveExtensionEPKcj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZNK7android13egl_display_t9getObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglBindAPI);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglBindTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglChooseConfig);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglClientWaitSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCopyBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePbufferFromClientBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePbufferSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePixmapSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePlatformPixmapSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePlatformWindowSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamFromFileDescriptorKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamProducerSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateWindowSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDupNativeFenceFDANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCompositorTimingANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCompositorTimingSupportedANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetConfigAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetConfigs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetFrameTimestampSupportedANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetFrameTimestampsANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetNativeClientBufferANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetNextFrameIdANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetPlatformDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetProcAddress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetStreamFileDescriptorKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSyncAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSyncAttribKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSystemTimeFrequencyNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSystemTimeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglInitialize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglLockSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglMakeCurrent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglPresentationTimeANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryAPI);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamTimeKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamu64KHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStringImplementationANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQuerySurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglReleaseTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglReleaseThread);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSetDamageRegionKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSignalSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamAttribKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerAcquireKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerGLTextureExternalKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerReleaseKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSurfaceAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapBuffersWithDamageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapInterval);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglTerminate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglUnlockSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitClient);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitGL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitNative);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitSyncKHR);
-}
-// clang-format on
diff --git a/libEGL/stubs_arm64.cc b/libEGL/stubs_arm64.cc
deleted file mode 100644
index 1ee108b..0000000
--- a/libEGL/stubs_arm64.cc
+++ /dev/null
@@ -1,247 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13eglBeginFramePvS_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t10initializeEPNS_13egl_display_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t16setCacheFilenameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t18getBlobCacheLockedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t3getEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t7getBlobEPKvlPvl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t7setBlobEPKvlS2_l);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_t9terminateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_tC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11egl_cache_tD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t10initializeEPiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t11loseCurrentEPNS_13egl_context_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t11makeCurrentEPNS_13egl_context_tES2_PvS3_S3_S3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t12removeObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t15loseCurrentImplEPNS_13egl_context_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t18getPlatformDisplayEPvPKl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t20getFromNativeDisplayEPvPKl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t3getEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t9addObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_t9terminateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_tC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13egl_display_tD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17eglBeginFrameImplEPvS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18egl_get_connectionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18egl_get_init_countEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19setGlThreadSpecificEPKNS_10gl_hooks_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22egl_set_cache_filenameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34egl_get_string_for_current_contextEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34egl_get_string_for_current_contextEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39eglQueryStringImplementationANDROIDImplEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42egl_get_num_extensions_for_current_contextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android13egl_display_t13haveExtensionEPKcm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android13egl_display_t9getObjectEPNS_12egl_object_tE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglBindAPI);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglBindTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglChooseConfig);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglClientWaitSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCopyBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePbufferFromClientBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePbufferSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePixmapSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePlatformPixmapSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreatePlatformWindowSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamFromFileDescriptorKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateStreamProducerSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglCreateWindowSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroyStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDestroySyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglDupNativeFenceFDANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCompositorTimingANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCompositorTimingSupportedANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetConfigAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetConfigs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetCurrentSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetFrameTimestampSupportedANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetFrameTimestampsANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetNativeClientBufferANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetNextFrameIdANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetPlatformDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetProcAddress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetStreamFileDescriptorKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSyncAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSyncAttribKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSystemTimeFrequencyNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglGetSystemTimeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglInitialize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglLockSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglMakeCurrent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglPresentationTimeANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryAPI);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamTimeKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStreamu64KHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQueryStringImplementationANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglQuerySurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglReleaseTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglReleaseThread);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSetDamageRegionKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSignalSyncKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamAttribKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerAcquireKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerGLTextureExternalKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglStreamConsumerReleaseKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSurfaceAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapBuffersWithDamageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglSwapInterval);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglTerminate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglUnlockSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitClient);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitGL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitNative);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(eglWaitSyncKHR);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _Z13eglBeginFramePvS_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t10initializeEPNS_13egl_display_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t16setCacheFilenameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t18getBlobCacheLockedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t3getEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t7getBlobEPKvlPvl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t7setBlobEPKvlS2_l);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_t9terminateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_tC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android11egl_cache_tD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t10initializeEPiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t11loseCurrentEPNS_13egl_context_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t11makeCurrentEPNS_13egl_context_tES2_PvS3_S3_S3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t12removeObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t15loseCurrentImplEPNS_13egl_context_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t18getPlatformDisplayEPvPKl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t20getFromNativeDisplayEPvPKl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t3getEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t9addObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_t9terminateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_tC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android13egl_display_tD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android17eglBeginFrameImplEPvS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android18egl_get_connectionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android18egl_get_init_countEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android19setGlThreadSpecificEPKNS_10gl_hooks_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android22egl_set_cache_filenameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android34egl_get_string_for_current_contextEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android34egl_get_string_for_current_contextEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android39eglQueryStringImplementationANDROIDImplEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZN7android42egl_get_num_extensions_for_current_contextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZNK7android13egl_display_t13haveExtensionEPKcm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", _ZNK7android13egl_display_t9getObjectEPNS_12egl_object_tE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglBindAPI);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglBindTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglChooseConfig);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglClientWaitSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCopyBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePbufferFromClientBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePbufferSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePixmapSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePlatformPixmapSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreatePlatformWindowSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamFromFileDescriptorKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateStreamProducerSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglCreateWindowSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroyStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDestroySyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglDupNativeFenceFDANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCompositorTimingANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCompositorTimingSupportedANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetConfigAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetConfigs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetCurrentSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetFrameTimestampSupportedANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetFrameTimestampsANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetNativeClientBufferANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetNextFrameIdANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetPlatformDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetProcAddress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetStreamFileDescriptorKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSyncAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSyncAttribKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSystemTimeFrequencyNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglGetSystemTimeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglInitialize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglLockSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglMakeCurrent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglPresentationTimeANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryAPI);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamTimeKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStreamu64KHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQueryStringImplementationANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglQuerySurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglReleaseTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglReleaseThread);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSetDamageRegionKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSignalSyncKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamAttribKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerAcquireKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerGLTextureExternalKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglStreamConsumerReleaseKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSurfaceAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapBuffersWithDamageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglSwapInterval);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglTerminate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglUnlockSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitClient);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitGL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitNative);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libEGL.so", eglWaitSyncKHR);
-}
-// clang-format on
diff --git a/libGLESv1_CM/Android.bp b/libGLESv1_CM/Android.bp
deleted file mode 100644
index 5e14267..0000000
--- a/libGLESv1_CM/Android.bp
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libGLESv1_CM",
-    overrides: ["libGLESv1_CM"],
-    stem: "libGLESv1_CM",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libEGL"
-    ],
-}
diff --git a/libGLESv1_CM/stubs_arm.cc b/libGLESv1_CM/stubs_arm.cc
deleted file mode 100644
index 36b61e8..0000000
--- a/libGLESv1_CM/stubs_arm.cc
+++ /dev/null
@@ -1,579 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatusOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColorx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColorxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanefIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanexIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4ub);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCurrentPaletteMatrixOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableClientState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexsOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexsvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableClientState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmapOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFixedv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFixedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameterivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameterivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnviv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidthx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidthxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadIdentity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadPaletteFromModelViewMatrixOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLogicOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixIndexPointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixIndexPointerOESBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormalPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormalPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthof);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthofOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizePointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizePointerOESBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoveragex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoveragexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShadeModel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexCoordPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexCoordPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnviv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGeniOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPointerOESBounds);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFuncx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFuncxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindFramebufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendEquationOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendEquationSeparateOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendFuncSeparateOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCheckFramebufferStatusOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColorx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColorxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClientActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanefIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanexIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4ub);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCurrentPaletteMatrixOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteFramebuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteRenderbuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisableClientState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexsOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexsvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnableClientState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenFramebuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenRenderbuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenerateMipmapOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFixedv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFixedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFramebufferAttachmentParameterivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetRenderbufferParameterivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnviv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsFramebufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidthx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidthxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadIdentity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadPaletteFromModelViewMatrixOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLogicOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixIndexPointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixIndexPointerOESBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormalPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormalPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthof);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthofOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizePointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizePointerOESBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffsetx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffsetxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPopMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPushMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glQueryMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoveragex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoveragexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glShadeModel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexCoordPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexCoordPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnviv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGeniOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glVertexPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glVertexPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glWeightPointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glWeightPointerOESBounds);
-}
-// clang-format on
diff --git a/libGLESv1_CM/stubs_arm64.cc b/libGLESv1_CM/stubs_arm64.cc
deleted file mode 100644
index 36b61e8..0000000
--- a/libGLESv1_CM/stubs_arm64.cc
+++ /dev/null
@@ -1,579 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatusOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColorx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColorxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanefIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanexIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipPlanexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4ub);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColor4xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCurrentPaletteMatrixOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableClientState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexsOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexsvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTexxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableClientState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFogxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrustumxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffersOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmapOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanefOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetClipPlanexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFixedv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFixedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameterivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetLightxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMaterialxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameterivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnviv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexEnvxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexGenxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightModelxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLightxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidthx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidthxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadIdentity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLoadPaletteFromModelViewMatrixOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLogicOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaterialxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixIndexPointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixIndexPointerOESBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiTexCoord4xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3x);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormal3xOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormalPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNormalPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthof);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthofOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glOrthoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizePointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizePointerOESBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointSizexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryMatrixxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRotatexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoveragex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoveragexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScalexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShadeModel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexCoordPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexCoordPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnviv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexEnvxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGeniOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexGenxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterxvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTranslatexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexPointerBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPointerOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPointerOESBounds);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFuncx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glAlphaFuncxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindFramebufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendEquationOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendEquationSeparateOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBlendFuncSeparateOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCheckFramebufferStatusOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColorx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearColorxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearDepthxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClientActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanefIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanexIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glClipPlanexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4ub);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColor4xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glColorPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glCurrentPaletteMatrixOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteFramebuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteRenderbuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDepthRangexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisableClientState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexsOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexsvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glDrawTexxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnableClientState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFogxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFramebufferTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glFrustumxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenFramebuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenRenderbuffersOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGenerateMipmapOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanefOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetClipPlanexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFixedv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFixedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetFramebufferAttachmentParameterivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetLightxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetMaterialxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetRenderbufferParameterivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnviv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexEnvxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexGenxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glGetTexParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsFramebufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsRenderbufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightModelxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLightxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidthx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLineWidthxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadIdentity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLoadPaletteFromModelViewMatrixOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glLogicOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMaterialxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixIndexPointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixIndexPointerOESBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMatrixMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glMultiTexCoord4xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3x);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormal3xOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormalPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glNormalPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthof);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthofOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glOrthoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizePointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizePointerOESBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPointSizexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffsetx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPolygonOffsetxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPopMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glPushMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glQueryMatrixxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glRotatexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoveragex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSampleCoveragexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScalexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glShadeModel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexCoordPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexCoordPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnviv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexEnvxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGeniOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexGenxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexParameterxvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glTranslatexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glVertexPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glVertexPointerBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glWeightPointerOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv1_CM.so", glWeightPointerOESBounds);
-}
-// clang-format on
diff --git a/libGLESv2/Android.bp b/libGLESv2/Android.bp
deleted file mode 100644
index d3db2a1..0000000
--- a/libGLESv2/Android.bp
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libGLESv2",
-    overrides: ["libGLESv2"],
-    stem: "libGLESv2",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libEGL"
-    ],
-}
diff --git a/libGLESv2/stubs_arm.cc b/libGLESv2/stubs_arm.cc
deleted file mode 100644
index 148b3ef..0000000
--- a/libGLESv2/stubs_arm.cc
+++ /dev/null
@@ -1,1715 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgramEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glApplyFramebufferAttachmentCMAAINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAttachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindImageTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearPixelLocalStorageuiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexSubImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipControlEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompileShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glConservativeRasterParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubDataNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTextureLevelsAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageMaskNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageOperationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreatePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallbackKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControlKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsert);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsertKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDetachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchComputeIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawVkImageNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTextureStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFragmentCoverageColorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationConfigQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayerDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultisampleMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformsiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttachedShaders);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleani_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteri64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLogKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFirstPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetImageHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64i_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64vAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformatSampleivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformativ);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMultisamplefv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetNextPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathLengthNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathSpacingNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfCounterInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterDataAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterInfoAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryDataINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryIdByNameINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointervKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInterfaceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLogEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocationIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourcefvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjecti64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderPrecisionFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetStringi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSynciv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSyncivAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTransformFeedbackVarying);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTranslatedShaderSourceANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformBlockIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformIndices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformi64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytei_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytevEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVkProcAddrNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportMemoryFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportSemaphoreFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInsertEventMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInterpolatePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateSubFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabledi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsMemoryObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLabelObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLinkProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixFrustumEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadIdentityEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoaddEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixOrthoEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPopEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPushEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScaledEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScalefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaxShaderCompilerThreadsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrierByRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShading);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShadingOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoverDepthFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathMemoryGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilDepthOffsetNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStringNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPauseTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointAlongPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonModeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetClampEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramPathFragmentInputGenNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryCounterEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRasterSamplesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReleaseShaderCompiler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveDepthValuesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveMultisampleFramebufferAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResumeTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSelectPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMaskSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOpSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSubpixelPrecisionBiasNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexPageCommitmentEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisampleOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformFeedbackVaryings);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformBlockBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStagesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexBindingDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportPositionWScaleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportSwizzleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWindowRectanglesEXT);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveShaderProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveShaderProgramEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glAlphaFuncQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glApplyFramebufferAttachmentCMAAINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glAttachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBufferBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFragDataLocationEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFragDataLocationIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindImageTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrierKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrierNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunciEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunciOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebufferANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCheckFramebufferStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferfi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearPixelLocalStorageuiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearTexImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearTexSubImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClientWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClipControlEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaskiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaskiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompileShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glConservativeRasterParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyBufferSubDataNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubDataEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubDataOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTextureLevelsAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageMaskNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageModulationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageOperationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreatePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShaderProgramv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShaderProgramvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageCallbackKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageControl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageControlKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageInsert);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageInsertKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeArrayfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeArrayfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDetachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDispatchCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDispatchComputeIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawTransformFeedbackEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawTransformFeedbackInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawVkImageNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTexStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTextureStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFenceSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFenceSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlushMappedBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlushMappedBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFragmentCoverageColorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFetchBarrierEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFetchBarrierQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFoveationConfigQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureLayer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureLayerDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureMultisampleMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenPerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenerateMipmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformBlockName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformBlockiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformsiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetAttachedShaders);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBooleani_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferParameteri64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDebugMessageLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDebugMessageLogKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFirstPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloati_vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloati_vOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFragDataIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFragDataLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferAttachmentParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatusEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatusKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetImageHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64i_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64vAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegeri_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegeri_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInternalformatSampleivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInternalformativ);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetMultisamplefv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetNextPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabelEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathLengthNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathMetricRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathMetricsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathSpacingNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfCounterInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterDataAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterInfoAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorGroupStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorGroupsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryDataINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryIdByNameINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPointervKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramInterfaceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineInfoLogEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceLocationIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourcefvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjecti64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetRenderbufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderPrecisionFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetStringi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSynciv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSyncivAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexLevelParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexLevelParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureSamplerHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureSamplerHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTransformFeedbackVarying);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTranslatedShaderSourceANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformBlockIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformIndices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformi64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUnsignedBytei_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUnsignedBytevEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVkProcAddrNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfvKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformuivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glImportMemoryFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glImportSemaphoreFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInsertEventMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInterpolatePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInvalidateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInvalidateSubFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnabledi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsMemoryObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPointInFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPointInStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLabelObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLinkProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeImageHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeTextureHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixFrustumEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoad3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoad3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadIdentityEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoaddEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMult3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMult3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixOrthoEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixPopEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixPushEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixRotatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixRotatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixScaledEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixScalefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixTranslatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixTranslatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMaxShaderCompilerThreadsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryBarrierByRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMinSampleShading);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMinSampleShadingOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawArraysIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteriOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCoverDepthFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphIndexRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathMemoryGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStencilDepthOffsetNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStencilFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStringNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathSubCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathSubCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPauseTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPointAlongPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonModeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonOffsetClampEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBoxEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramPathFragmentInputGenNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glQueryCounterEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRasterSamplesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBufferIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixelsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixelsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReleaseShaderCompiler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResolveDepthValuesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResolveMultisampleFramebufferAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResumeTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSampleMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSelectPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glShaderBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalVkFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilMaskSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilOpSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSubpixelPrecisionBiasNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRangeOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexPageCommitmentEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DMultisampleOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureViewEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureViewOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTransformFeedbackVaryings);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTransformPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformBlockBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUnmapBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgramStages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgramStagesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribIFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribIPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexBindingDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportPositionWScaleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportSwizzleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWeightPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWindowRectanglesEXT);
-}
-// clang-format on
diff --git a/libGLESv2/stubs_arm64.cc b/libGLESv2/stubs_arm64.cc
deleted file mode 100644
index 148b3ef..0000000
--- a/libGLESv2/stubs_arm64.cc
+++ /dev/null
@@ -1,1715 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgramEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glApplyFramebufferAttachmentCMAAINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAttachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindImageTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearPixelLocalStorageuiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexSubImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipControlEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompileShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glConservativeRasterParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubDataNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTextureLevelsAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageMaskNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageOperationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreatePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallbackKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControlKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsert);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsertKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDetachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchComputeIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawVkImageNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTextureStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFragmentCoverageColorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationConfigQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayerDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultisampleMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformsiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttachedShaders);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleani_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteri64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLogKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFirstPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetImageHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64i_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64vAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformatSampleivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformativ);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMultisamplefv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetNextPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathLengthNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathSpacingNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfCounterInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterDataAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterInfoAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryDataINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryIdByNameINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointervKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInterfaceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLogEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocationIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourcefvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjecti64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderPrecisionFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetStringi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSynciv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSyncivAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTransformFeedbackVarying);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTranslatedShaderSourceANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformBlockIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformIndices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformi64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytei_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytevEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVkProcAddrNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportMemoryFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportSemaphoreFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInsertEventMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInterpolatePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateSubFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabledi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsMemoryObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLabelObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLinkProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixFrustumEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadIdentityEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoaddEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixOrthoEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPopEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPushEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScaledEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScalefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaxShaderCompilerThreadsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrierByRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShading);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShadingOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoverDepthFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathMemoryGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilDepthOffsetNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStringNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPauseTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointAlongPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonModeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetClampEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramPathFragmentInputGenNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryCounterEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRasterSamplesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReleaseShaderCompiler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveDepthValuesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveMultisampleFramebufferAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResumeTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSelectPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMaskSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOpSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSubpixelPrecisionBiasNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexPageCommitmentEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisampleOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformFeedbackVaryings);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformBlockBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStagesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexBindingDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportPositionWScaleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportSwizzleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWindowRectanglesEXT);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveShaderProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveShaderProgramEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glAlphaFuncQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glApplyFramebufferAttachmentCMAAINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glAttachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBeginTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBufferBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFragDataLocationEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFragDataLocationIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindImageTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBindVertexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrierKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendBarrierNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendEquationiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFuncSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunciEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendFunciOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlendParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebufferANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBlitFramebufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCheckFramebufferStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferfi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearBufferuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearPixelLocalStorageuiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearTexImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClearTexSubImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClientWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glClipControlEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaskiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glColorMaskiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompileShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCompressedTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glConservativeRasterParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyBufferSubDataNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubDataEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyImageSubDataOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCopyTextureLevelsAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageMaskNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageModulationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCoverageOperationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreatePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShaderProgramv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCreateShaderProgramvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageCallbackKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageControl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageControlKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageInsert);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDebugMessageInsertKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeletePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeArrayfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeArrayfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangeIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDetachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDisableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDispatchCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDispatchComputeIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawArraysInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawBuffersNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawElementsInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawRangeElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawTransformFeedbackEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawTransformFeedbackInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glDrawVkImageNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTexStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEGLImageTargetTextureStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEnableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glEndTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFenceSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFenceSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlushMappedBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFlushMappedBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFragmentCoverageColorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFetchBarrierEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFetchBarrierQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFoveationConfigQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTexture3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureLayer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureLayerDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureMultisampleMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFramebufferTextureOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenPerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGenerateMipmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformBlockName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformBlockiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetActiveUniformsiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetAttachedShaders);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBooleani_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferParameteri64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDebugMessageLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDebugMessageLogKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFirstPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloati_vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloati_vOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFragDataIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFragDataLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferAttachmentParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatusEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetGraphicsResetStatusKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetImageHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64i_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInteger64vAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegeri_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegeri_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInternalformatSampleivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetInternalformativ);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetMultisamplefv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetNextPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabelEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathLengthNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathMetricRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathMetricsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPathSpacingNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfCounterInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterDataAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterInfoAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCounterStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorGroupStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfMonitorGroupsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryDataINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryIdByNameINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPerfQueryInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetPointervKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramInterfaceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineInfoLogEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramPipelineivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceLocationIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourcefvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramResourceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetProgramiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjecti64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryObjectuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetQueryivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetRenderbufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderPrecisionFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetShaderiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetStringi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSynciv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetSyncivAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexLevelParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexLevelParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureSamplerHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTextureSamplerHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTransformFeedbackVarying);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetTranslatedShaderSourceANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformBlockIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformIndices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformi64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUnsignedBytei_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetUnsignedBytevEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVertexAttribiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetVkProcAddrNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformfvKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glGetnUniformuivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glImportMemoryFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glImportSemaphoreFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInsertEventMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInterpolatePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInvalidateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glInvalidateSubFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnabledi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsEnablediOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsMemoryObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPointInFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsPointInStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLabelObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glLinkProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeImageHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeTextureHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMakeTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMapBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixFrustumEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoad3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoad3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadIdentityEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoaddEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixLoadfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMult3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMult3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixMultfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixOrthoEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixPopEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixPushEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixRotatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixRotatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixScaledEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixScalefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixTranslatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMatrixTranslatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMaxShaderCompilerThreadsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryBarrierByRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMinSampleShading);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMinSampleShadingOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawArraysIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glMultiDrawElementsIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glNamedFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPatchParameteriOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathCoverDepthFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphIndexRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathGlyphsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathMemoryGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStencilDepthOffsetNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStencilFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathStringNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathSubCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPathSubCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPauseTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPointAlongPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonModeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPolygonOffsetClampEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPopGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBoxEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPrimitiveBoundingBoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramPathFragmentInputGenNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform1uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform2uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform3uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniform4uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix2x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix3x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glProgramUniformMatrix4x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glPushGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glQueryCounterEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRasterSamplesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBufferIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadBufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixelsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReadnPixelsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glReleaseShaderCompiler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glRenderbufferStorageMultisampleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResolveDepthValuesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResolveMultisampleFramebufferAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glResumeTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSampleMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glScissorIndexedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSelectPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glShaderBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalVkFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSignalVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilMaskSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilOpSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glStencilThenCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glSubpixelPrecisionBiasNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexBufferRangeOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexPageCommitmentEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage2DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorage3DMultisampleOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureViewEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTextureViewOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTransformFeedbackVaryings);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glTransformPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformBlockBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix2x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix3x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUniformMatrix4x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUnmapBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgramStages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glUseProgramStagesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glValidateProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttrib4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribDivisorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribI4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribIFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribIPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexAttribPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glVertexBindingDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportIndexedfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportPositionWScaleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glViewportSwizzleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWaitVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWeightPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv2.so", glWindowRectanglesEXT);
-}
-// clang-format on
diff --git a/libGLESv3/Android.bp b/libGLESv3/Android.bp
deleted file mode 100644
index 7030868..0000000
--- a/libGLESv3/Android.bp
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libGLESv3",
-    overrides: ["libGLESv3"],
-    stem: "libGLESv3",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libEGL"
-    ],
-}
diff --git a/libGLESv3/stubs_arm.cc b/libGLESv3/stubs_arm.cc
deleted file mode 100644
index 9ba7861..0000000
--- a/libGLESv3/stubs_arm.cc
+++ /dev/null
@@ -1,1715 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgramEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glApplyFramebufferAttachmentCMAAINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAttachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindImageTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearPixelLocalStorageuiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexSubImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipControlEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompileShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glConservativeRasterParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubDataNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTextureLevelsAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageMaskNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageOperationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreatePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallbackKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControlKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsert);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsertKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDetachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchComputeIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawVkImageNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTextureStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFragmentCoverageColorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationConfigQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayerDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultisampleMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformsiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttachedShaders);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleani_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteri64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLogKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFirstPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetImageHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64i_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64vAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformatSampleivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformativ);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMultisamplefv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetNextPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathLengthNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathSpacingNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfCounterInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterDataAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterInfoAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryDataINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryIdByNameINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointervKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInterfaceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLogEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocationIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourcefvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjecti64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderPrecisionFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetStringi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSynciv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSyncivAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTransformFeedbackVarying);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTranslatedShaderSourceANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformBlockIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformIndices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformi64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytei_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytevEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVkProcAddrNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportMemoryFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportSemaphoreFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInsertEventMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInterpolatePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateSubFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabledi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsMemoryObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLabelObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLinkProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixFrustumEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadIdentityEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoaddEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixOrthoEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPopEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPushEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScaledEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScalefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaxShaderCompilerThreadsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrierByRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShading);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShadingOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoverDepthFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathMemoryGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilDepthOffsetNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStringNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPauseTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointAlongPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonModeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetClampEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramPathFragmentInputGenNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryCounterEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRasterSamplesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReleaseShaderCompiler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveDepthValuesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveMultisampleFramebufferAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResumeTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSelectPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMaskSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOpSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSubpixelPrecisionBiasNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexPageCommitmentEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisampleOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformFeedbackVaryings);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformBlockBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStagesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexBindingDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportPositionWScaleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportSwizzleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWindowRectanglesEXT);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveShaderProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveShaderProgramEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glAlphaFuncQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glApplyFramebufferAttachmentCMAAINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glAttachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBufferBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFragDataLocationEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFragDataLocationIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindImageTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrierKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrierNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunciEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunciOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebufferANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCheckFramebufferStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferfi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearPixelLocalStorageuiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearTexImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearTexSubImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClientWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClipControlEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaskiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaskiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompileShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glConservativeRasterParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyBufferSubDataNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubDataEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubDataOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTextureLevelsAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageMaskNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageModulationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageOperationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreatePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShaderProgramv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShaderProgramvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageCallbackKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageControl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageControlKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageInsert);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageInsertKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeArrayfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeArrayfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDetachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDispatchCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDispatchComputeIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawTransformFeedbackEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawTransformFeedbackInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawVkImageNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTexStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTextureStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFenceSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFenceSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlushMappedBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlushMappedBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFragmentCoverageColorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFetchBarrierEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFetchBarrierQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFoveationConfigQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureLayer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureLayerDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureMultisampleMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenPerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenerateMipmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformBlockName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformBlockiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformsiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetAttachedShaders);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBooleani_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferParameteri64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDebugMessageLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDebugMessageLogKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFirstPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloati_vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloati_vOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFragDataIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFragDataLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferAttachmentParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatusEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatusKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetImageHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64i_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64vAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegeri_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegeri_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInternalformatSampleivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInternalformativ);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetMultisamplefv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetNextPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabelEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathLengthNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathMetricRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathMetricsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathSpacingNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfCounterInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterDataAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterInfoAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorGroupStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorGroupsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryDataINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryIdByNameINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPointervKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramInterfaceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineInfoLogEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceLocationIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourcefvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjecti64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetRenderbufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderPrecisionFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetStringi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSynciv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSyncivAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexLevelParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexLevelParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureSamplerHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureSamplerHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTransformFeedbackVarying);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTranslatedShaderSourceANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformBlockIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformIndices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformi64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUnsignedBytei_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUnsignedBytevEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVkProcAddrNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfvKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformuivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glImportMemoryFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glImportSemaphoreFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInsertEventMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInterpolatePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInvalidateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInvalidateSubFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnabledi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsMemoryObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPointInFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPointInStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLabelObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLinkProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeImageHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeTextureHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixFrustumEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoad3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoad3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadIdentityEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoaddEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMult3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMult3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixOrthoEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixPopEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixPushEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixRotatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixRotatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixScaledEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixScalefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixTranslatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixTranslatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMaxShaderCompilerThreadsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryBarrierByRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMinSampleShading);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMinSampleShadingOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawArraysIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteriOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCoverDepthFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphIndexRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathMemoryGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStencilDepthOffsetNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStencilFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStringNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathSubCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathSubCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPauseTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPointAlongPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonModeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonOffsetClampEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBoxEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramPathFragmentInputGenNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glQueryCounterEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRasterSamplesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBufferIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixelsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixelsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReleaseShaderCompiler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResolveDepthValuesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResolveMultisampleFramebufferAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResumeTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSampleMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSelectPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glShaderBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalVkFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilMaskSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilOpSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSubpixelPrecisionBiasNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRangeOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexPageCommitmentEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DMultisampleOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureViewEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureViewOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTransformFeedbackVaryings);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTransformPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformBlockBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUnmapBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgramStages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgramStagesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribIFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribIPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexBindingDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportPositionWScaleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportSwizzleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWeightPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWindowRectanglesEXT);
-}
-// clang-format on
diff --git a/libGLESv3/stubs_arm64.cc b/libGLESv3/stubs_arm64.cc
deleted file mode 100644
index 9ba7861..0000000
--- a/libGLESv3/stubs_arm64.cc
+++ /dev/null
@@ -1,1715 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveShaderProgramEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glActiveTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAlphaFuncQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glApplyFramebufferAttachmentCMAAINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glAttachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBeginTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFragDataLocationIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindImageTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBindVertexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendBarrierNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendEquationiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparatei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFuncSeparateiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendFunciOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlendParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBlitFramebufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCheckFramebufferStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearBufferuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearDepthf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearPixelLocalStorageuiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearStencil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClearTexSubImageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClientWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glClipControlEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glColorMaskiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompileShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCompressedTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glConservativeRasterParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyBufferSubDataNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyImageSubDataOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCopyTextureLevelsAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageMaskNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCoverageOperationNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreatePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCreateShaderProgramvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glCullFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageCallbackKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageControlKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsert);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDebugMessageInsertKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteMemoryObjectsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeletePerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDeleteVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeArrayfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangeIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDepthRangef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDetachShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDisableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDiscardFramebufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDispatchComputeIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawArraysInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawBuffersNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstanced);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawElementsInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawRangeElementsBaseVertexOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawTransformFeedbackInstancedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glDrawVkImageNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetRenderbufferStorageOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTexture2DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEGLImageTargetTextureStorageEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableDriverControlQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableVertexAttribArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEnableiOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndConditionalRenderNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfMonitorAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndPerfQueryINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glEndTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBufferPointervQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetBuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetFramebuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramBinarySourceQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetProgramsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetRenderbuffersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetShadersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexLevelParameterivQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexSubImageQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtGetTexturesQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtIsProgramBinaryQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glExtTexObjectStateOverrideiQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFenceSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFinishFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFlushMappedBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFragmentCoverageColorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFetchBarrierQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationConfigQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture2DMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTexture3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureLayerDownsampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultisampleMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureMultiviewOVR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFramebufferTextureOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glFrontFace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFencesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenFramebuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenPerfMonitorsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenProgramPipelinesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueries);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenQueriesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenRenderbuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSamplers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenSemaphoresEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTextures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenTransformFeedbacks);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArrays);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenVertexArraysOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGenerateMipmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveAttrib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformBlockiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetActiveUniformsiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttachedShaders);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetAttribLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleani_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBooleanv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteri64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetBufferPointervOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetCoverageModulationTableNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDebugMessageLogKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlStringQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetDriverControlsQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFenceivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFirstPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloati_vOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFloatv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFragDataLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferAttachmentParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetFramebufferPixelLocalStorageSizeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetGraphicsResetStatusKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetImageHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64i_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInteger64vAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_v);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegeri_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetIntegerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformatSampleivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetInternalformativ);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetMultisamplefv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetNextPerfQueryIdINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathLengthNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathMetricsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPathSpacingNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfCounterInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterDataAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterInfoAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCounterStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupStringAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfMonitorGroupsAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryDataINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryIdByNameINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPerfQueryInfoINTEL);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetPointervKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramInterfaceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineInfoLogEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramPipelineivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceLocationIndexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourcefvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramResourceiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetProgramiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjecti64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryObjectuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetQueryivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetRenderbufferParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderInfoLog);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderPrecisionFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetShaderiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetStringi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSynciv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetSyncivAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexLevelParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTextureSamplerHandleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTransformFeedbackVarying);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetTranslatedShaderSourceANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformBlockIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformIndices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformi64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytei_vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetUnsignedBytevEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribPointerv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVertexAttribiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetVkProcAddrNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformfvKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glGetnUniformuivKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportMemoryFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glImportSemaphoreFdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInsertEventMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInterpolatePathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glInvalidateSubFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnabledi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsEnablediOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsMemoryObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsPointInStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsQueryEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsRenderbuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsShader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glIsVertexArrayOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLabelObjectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glLinkProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeImageHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleNonResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMakeTextureHandleResidentNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMapBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixFrustumEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoad3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadIdentityEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoaddEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixLoadfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x2fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMult3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTranspose3x3fNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultTransposefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultdEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixMultfEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixOrthoEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPopEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixPushEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixRotatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScaledEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixScalefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMatrixTranslatefEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMaxShaderCompilerThreadsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryBarrierByRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMemoryObjectParameterivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShading);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMinSampleShadingOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawArraysIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsBaseVertexEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glMultiDrawElementsIndirectEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageExternalEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedBufferStorageMemEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glNamedFramebufferSampleLocationsfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glObjectPtrLabelKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPatchParameteriOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathCoverDepthFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathDashArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphIndexRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphRangeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathGlyphsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathMemoryGlyphIndexArrayNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameteriNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathParameterivNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilDepthOffsetNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStencilFuncNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathStringNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCommandsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPathSubCoordsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPauseTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPixelStorei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPointAlongPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonModeNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPolygonOffsetClampEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPopGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBox);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPrimitiveBoundingBoxOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramBinaryOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramParameteriEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramPathFragmentInputGenNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform1uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform2uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform3uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniform4uivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix2x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix3x4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x2fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glProgramUniformMatrix4x3fvEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroup);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushDebugGroupKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glPushGroupMarkerEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glQueryCounterEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRasterSamplesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferIndexedEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadBufferNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReadnPixelsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glReleaseShaderCompiler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glRenderbufferStorageMultisampleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveDepthValuesNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResolveMultisampleFramebufferAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glResumeTransformFeedback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleCoverage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSampleMaski);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSamplerParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glScissorIndexedvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSelectPerfMonitorCountersAMD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSemaphoreParameterui64vEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSetFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderBinary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glShaderSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSignalVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStartTilingQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFunc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilFuncSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilMaskSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilOpSeparate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverFillPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathInstancedNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glStencilThenCoverStrokePathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glSubpixelPrecisionBiasNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTestFenceNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexBufferRangeOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexPageCommitmentEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterIuivOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameterfv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexParameteriv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage2DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisample);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorage3DMultisampleOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage2D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3D);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTexSubImage3DOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureFoveationParametersQCOM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage1DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorage3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem2DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureStorageMem3DMultisampleEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTextureViewOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformFeedbackVaryings);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glTransformPathNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform1uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform2uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform3uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4i64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4ui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniform4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformBlockBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64IMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64NV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vIMG);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformHandleui64vNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix2x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix3x4fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x2fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUniformMatrix4x3fvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUnmapBufferOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glUseProgramStagesEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgram);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glValidateProgramPipelineEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib1fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib2fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib3fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4f);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttrib4fv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribBinding);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorANGLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribDivisorNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4iv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4ui);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribI4uiv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribIPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexAttribPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glVertexBindingDivisor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportArrayvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportIndexedfvOES);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportPositionWScaleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glViewportSwizzleNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSemaphoreEXT);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitSyncAPPLE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWaitVkSemaphoreNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWeightPathsNV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(glWindowRectanglesEXT);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveShaderProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveShaderProgramEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glActiveTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glAlphaFuncQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glApplyFramebufferAttachmentCMAAINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glAttachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBeginTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBufferBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFragDataLocationEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFragDataLocationIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindImageTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBindVertexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrierKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendBarrierNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendEquationiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparatei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparateiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFuncSeparateiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunciEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendFunciOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlendParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebufferANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBlitFramebufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCheckFramebufferStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferfi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearBufferuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearDepthf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearPixelLocalStorageuiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearStencil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearTexImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClearTexSubImageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClientWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClientWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glClipControlEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaskiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glColorMaskiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompileShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCompressedTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glConservativeRasterParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyBufferSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyBufferSubDataNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubDataEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyImageSubDataOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCopyTextureLevelsAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageMaskNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageModulationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCoverageOperationNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreatePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShaderProgramv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCreateShaderProgramvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glCullFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageCallbackKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageControl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageControlKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageInsert);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDebugMessageInsertKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteMemoryObjectsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeletePerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDeleteVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeArrayfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeArrayfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangeIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDepthRangef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDetachShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDisableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDiscardFramebufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDispatchCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDispatchComputeIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawArraysInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawBuffersNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstanced);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexBaseInstanceEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawElementsInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawRangeElementsBaseVertexOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawTransformFeedbackEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawTransformFeedbackInstancedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glDrawVkImageNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetRenderbufferStorageOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTexStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTexture2DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEGLImageTargetTextureStorageEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableDriverControlQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableVertexAttribArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEnableiOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndConditionalRenderNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndPerfMonitorAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndPerfQueryINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glEndTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetBufferPointervQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetBuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetFramebuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetProgramBinarySourceQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetProgramsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetRenderbuffersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetShadersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexLevelParameterivQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexSubImageQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtGetTexturesQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtIsProgramBinaryQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glExtTexObjectStateOverrideiQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFenceSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFenceSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFinish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFinishFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlushMappedBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFlushMappedBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFragmentCoverageColorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFetchBarrierEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFetchBarrierQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFoveationConfigQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture2DMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTexture3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureLayer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureLayerDownsampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureMultisampleMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureMultiviewOVR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFramebufferTextureOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glFrontFace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenFencesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenFramebuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenPerfMonitorsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenProgramPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenProgramPipelinesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenQueries);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenQueriesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenRenderbuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenSamplers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenSemaphoresEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenTextures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenTransformFeedbacks);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenVertexArrays);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenVertexArraysOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGenerateMipmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveAttrib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformBlockName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformBlockiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetActiveUniformsiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetAttachedShaders);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetAttribLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBooleani_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBooleanv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferParameteri64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetBufferPointervOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetCoverageModulationTableNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDebugMessageLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDebugMessageLogKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDriverControlStringQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetDriverControlsQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFenceivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFirstPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloati_vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloati_vOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFloatv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFragDataIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFragDataLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferAttachmentParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetFramebufferPixelLocalStorageSizeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatusEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetGraphicsResetStatusKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetImageHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64i_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInteger64vAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegeri_v);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegeri_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetIntegerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInternalformatSampleivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetInternalformativ);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetMultisamplefv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetNextPerfQueryIdINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabelEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathLengthNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathMetricRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathMetricsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPathSpacingNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfCounterInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterDataAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterInfoAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCounterStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorGroupStringAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfMonitorGroupsAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryDataINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryIdByNameINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPerfQueryInfoINTEL);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetPointervKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramInterfaceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineInfoLogEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramPipelineivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceLocationIndexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourcefvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramResourceiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetProgramiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjecti64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryObjectuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetQueryivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetRenderbufferParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderInfoLog);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderPrecisionFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetShaderiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetStringi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSynciv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetSyncivAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexLevelParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexLevelParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureSamplerHandleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTextureSamplerHandleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTransformFeedbackVarying);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetTranslatedShaderSourceANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformBlockIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformIndices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformi64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUnsignedBytei_vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetUnsignedBytevEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribPointerv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVertexAttribiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetVkProcAddrNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformfvKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glGetnUniformuivKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glImportMemoryFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glImportSemaphoreFdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInsertEventMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInterpolatePathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInvalidateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glInvalidateSubFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnabledi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsEnablediOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsMemoryObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPointInFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsPointInStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsQueryEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsRenderbuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsShader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsVertexArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glIsVertexArrayOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLabelObjectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glLinkProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeImageHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeImageHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeTextureHandleNonResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMakeTextureHandleResidentNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMapBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixFrustumEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoad3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoad3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadIdentityEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoaddEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixLoadfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMult3x2fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMult3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTranspose3x3fNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTransposedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultTransposefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultdEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixMultfEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixOrthoEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixPopEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixPushEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixRotatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixRotatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixScaledEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixScalefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixTranslatedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMatrixTranslatefEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMaxShaderCompilerThreadsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryBarrierByRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMemoryObjectParameterivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMinSampleShading);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMinSampleShadingOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawArraysEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawArraysIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsBaseVertexEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glMultiDrawElementsIndirectEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedBufferStorageExternalEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedBufferStorageMemEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glNamedFramebufferSampleLocationsfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectPtrLabel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glObjectPtrLabelKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPatchParameteriOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathCoverDepthFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathDashArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphIndexRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphRangeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathGlyphsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathMemoryGlyphIndexArrayNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameteriNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathParameterivNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStencilDepthOffsetNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStencilFuncNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathStringNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathSubCommandsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPathSubCoordsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPauseTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPixelStorei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPointAlongPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonModeNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPolygonOffsetClampEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPopGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBox);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBoxEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPrimitiveBoundingBoxOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramBinaryOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramParameteriEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramPathFragmentInputGenNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform1uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform2uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform3uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4iEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uiEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniform4uivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix2x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix3x4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x2fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glProgramUniformMatrix4x3fvEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushDebugGroup);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushDebugGroupKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glPushGroupMarkerEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glQueryCounterEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRasterSamplesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBufferIndexedEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadBufferNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixelsEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReadnPixelsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glReleaseShaderCompiler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glRenderbufferStorageMultisampleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResolveDepthValuesNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResolveMultisampleFramebufferAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glResumeTransformFeedback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSampleCoverage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSampleMaski);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSamplerParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glScissorIndexedvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSelectPerfMonitorCountersAMD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSemaphoreParameterui64vEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSetFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glShaderBinary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glShaderSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalVkFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSignalVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStartTilingQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFunc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilFuncSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilMaskSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilOp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilOpSeparate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverFillPathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverFillPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverStrokePathInstancedNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glStencilThenCoverStrokePathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glSubpixelPrecisionBiasNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTestFenceNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRangeEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexBufferRangeOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexPageCommitmentEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuivEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterIuivOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameterfv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameteri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexParameteriv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage2DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DMultisample);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorage3DMultisampleOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage2D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage3D);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTexSubImage3DOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureFoveationParametersQCOM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage1DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorage3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem2DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem2DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem3DEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureStorageMem3DMultisampleEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureViewEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTextureViewOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTransformFeedbackVaryings);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glTransformPathNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform1uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform2uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform3uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4i64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4ui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniform4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformBlockBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64IMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64NV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64vIMG);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformHandleui64vNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix2x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix3x4fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x2fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUniformMatrix4x3fvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUnmapBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUnmapBufferOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgramStages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glUseProgramStagesEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgram);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgramPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glValidateProgramPipelineEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib1f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib1fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib2f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib2fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib3f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib3fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib4f);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttrib4fv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribBinding);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorANGLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribDivisorNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4iv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4ui);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribI4uiv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribIFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribIPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexAttribPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glVertexBindingDivisor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportArrayvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportArrayvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfvNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportIndexedfvOES);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportPositionWScaleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glViewportSwizzleNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSemaphoreEXT);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitSyncAPPLE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWaitVkSemaphoreNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWeightPathsNV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libGLESv3.so", glWindowRectanglesEXT);
-}
-// clang-format on
diff --git a/libOpenMAXAL/Android.bp b/libOpenMAXAL/Android.bp
deleted file mode 100644
index 36eebb1..0000000
--- a/libOpenMAXAL/Android.bp
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libOpenMAXAL",
-    overrides: ["libOpenMAXAL"],
-    stem: "libOpenMAXAL",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "liblog",
-        "libnative_bridge_guest_libnativewindow",
-    ],
-}
diff --git a/libOpenMAXAL/stubs_arm.cc b/libOpenMAXAL/stubs_arm.cc
deleted file mode 100644
index 042a697..0000000
--- a/libOpenMAXAL/stubs_arm.cc
+++ /dev/null
@@ -1,111 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaCreateEngine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaQueryNumSupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaQuerySupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_ANDROIDBUFFERQUEUESOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOIODEVICECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CAMERA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CAMERACAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CONFIGEXTENSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DEVICEVOLUME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DYNAMICINTERFACEMANAGEMENT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DYNAMICSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_ENGINE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_EQUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGECONTROLS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEDECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEEFFECTS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_LED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATAEXTRACTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATAINSERTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATATRAVERSAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_NULL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_OBJECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_OUTPUTMIX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PLAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PLAYBACKRATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PREFETCHSTATUS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RADIO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RDS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RECORD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_SEEK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_SNAPSHOT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_STREAMINFORMATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_THREADSYNC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIBRA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOPOSTPROCESSING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VOLUME);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaCreateEngine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaQueryNumSupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaQuerySupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_ANDROIDBUFFERQUEUESOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOIODEVICECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CAMERA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CAMERACAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CONFIGEXTENSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DEVICEVOLUME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DYNAMICINTERFACEMANAGEMENT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DYNAMICSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_ENGINE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_EQUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGECONTROLS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEDECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEEFFECTS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_LED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATAEXTRACTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATAINSERTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATATRAVERSAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_NULL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_OBJECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_OUTPUTMIX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PLAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PLAYBACKRATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PREFETCHSTATUS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RADIO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RDS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RECORD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_SEEK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_SNAPSHOT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_STREAMINFORMATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_THREADSYNC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIBRA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOPOSTPROCESSING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VOLUME);
-}
-// clang-format on
diff --git a/libOpenMAXAL/stubs_arm64.cc b/libOpenMAXAL/stubs_arm64.cc
deleted file mode 100644
index 042a697..0000000
--- a/libOpenMAXAL/stubs_arm64.cc
+++ /dev/null
@@ -1,111 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaCreateEngine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaQueryNumSupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(xaQuerySupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_ANDROIDBUFFERQUEUESOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_AUDIOIODEVICECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CAMERA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CAMERACAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_CONFIGEXTENSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DEVICEVOLUME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DYNAMICINTERFACEMANAGEMENT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_DYNAMICSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_ENGINE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_EQUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGECONTROLS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEDECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEEFFECTS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_IMAGEENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_LED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATAEXTRACTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATAINSERTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_METADATATRAVERSAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_NULL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_OBJECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_OUTPUTMIX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PLAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PLAYBACKRATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_PREFETCHSTATUS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RADIO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RDS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_RECORD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_SEEK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_SNAPSHOT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_STREAMINFORMATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_THREADSYNC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIBRA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VIDEOPOSTPROCESSING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(XA_IID_VOLUME);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaCreateEngine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaQueryNumSupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenMAXAL.so", xaQuerySupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_ANDROIDBUFFERQUEUESOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_AUDIOIODEVICECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CAMERA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CAMERACAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_CONFIGEXTENSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DEVICEVOLUME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DYNAMICINTERFACEMANAGEMENT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_DYNAMICSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_ENGINE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_EQUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGECONTROLS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEDECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEEFFECTS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_IMAGEENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_LED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATAEXTRACTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATAINSERTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_METADATATRAVERSAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_NULL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_OBJECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_OUTPUTMIX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PLAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PLAYBACKRATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_PREFETCHSTATUS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RADIO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RDS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_RECORD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_SEEK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_SNAPSHOT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_STREAMINFORMATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_THREADSYNC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIBRA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VIDEOPOSTPROCESSING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenMAXAL.so", XA_IID_VOLUME);
-}
-// clang-format on
diff --git a/libOpenSLES/Android.bp b/libOpenSLES/Android.bp
deleted file mode 100644
index 7af1f21..0000000
--- a/libOpenSLES/Android.bp
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libOpenSLES",
-    overrides: ["libOpenSLES"],
-    stem: "libOpenSLES",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "liblog",
-        "libnative_bridge_guest_libnativewindow",
-    ],
-}
diff --git a/libOpenSLES/stubs_arm.cc b/libOpenSLES/stubs_arm.cc
deleted file mode 100644
index 427b61d..0000000
--- a/libOpenSLES/stubs_arm.cc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slCreateEngine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slQueryNumSupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slQuerySupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DCOMMIT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DDOPPLER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DGROUPING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DLOCATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DMACROSCOPIC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDACOUSTICECHOCANCELLATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDAUTOMATICGAINCONTROL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDBUFFERQUEUESOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDCONFIGURATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECTCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECTSEND);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDNOISESUPPRESSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDSIMPLEBUFFERQUEUE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOIODEVICECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_BASSBOOST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_BUFFERQUEUE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DEVICEVOLUME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DYNAMICINTERFACEMANAGEMENT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DYNAMICSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_EFFECTSEND);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENGINE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENGINECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENVIRONMENTALREVERB);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_EQUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_LED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_METADATAEXTRACTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_METADATATRAVERSAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDIMESSAGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDIMUTESOLO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDITEMPO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDITIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MUTESOLO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_NULL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_OBJECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_OUTPUTMIX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PITCH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PLAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PLAYBACKRATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PREFETCHSTATUS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PRESETREVERB);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_RATEPITCH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_RECORD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_SEEK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_THREADSYNC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VIBRA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VIRTUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VISUALIZATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VOLUME);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slCreateEngine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slQueryNumSupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slQuerySupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DCOMMIT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DDOPPLER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DGROUPING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DLOCATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DMACROSCOPIC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDACOUSTICECHOCANCELLATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDAUTOMATICGAINCONTROL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDBUFFERQUEUESOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDCONFIGURATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECTCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECTSEND);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDNOISESUPPRESSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDSIMPLEBUFFERQUEUE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOIODEVICECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_BASSBOOST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_BUFFERQUEUE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DEVICEVOLUME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DYNAMICINTERFACEMANAGEMENT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DYNAMICSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_EFFECTSEND);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENGINE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENGINECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENVIRONMENTALREVERB);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_EQUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_LED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_METADATAEXTRACTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_METADATATRAVERSAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDIMESSAGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDIMUTESOLO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDITEMPO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDITIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MUTESOLO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_NULL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_OBJECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_OUTPUTMIX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PITCH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PLAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PLAYBACKRATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PREFETCHSTATUS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PRESETREVERB);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_RATEPITCH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_RECORD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_SEEK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_THREADSYNC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VIBRA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VIRTUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VISUALIZATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VOLUME);
-}
-// clang-format on
diff --git a/libOpenSLES/stubs_arm64.cc b/libOpenSLES/stubs_arm64.cc
deleted file mode 100644
index 427b61d..0000000
--- a/libOpenSLES/stubs_arm64.cc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slCreateEngine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slQueryNumSupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(slQuerySupportedEngineInterfaces);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DCOMMIT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DDOPPLER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DGROUPING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DLOCATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DMACROSCOPIC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_3DSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDACOUSTICECHOCANCELLATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDAUTOMATICGAINCONTROL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDBUFFERQUEUESOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDCONFIGURATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECTCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDEFFECTSEND);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDNOISESUPPRESSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ANDROIDSIMPLEBUFFERQUEUE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIODECODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOENCODERCAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_AUDIOIODEVICECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_BASSBOOST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_BUFFERQUEUE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DEVICEVOLUME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DYNAMICINTERFACEMANAGEMENT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_DYNAMICSOURCE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_EFFECTSEND);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENGINE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENGINECAPABILITIES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_ENVIRONMENTALREVERB);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_EQUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_LED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_METADATAEXTRACTION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_METADATATRAVERSAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDIMESSAGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDIMUTESOLO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDITEMPO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MIDITIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_MUTESOLO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_NULL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_OBJECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_OUTPUTMIX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PITCH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PLAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PLAYBACKRATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PREFETCHSTATUS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_PRESETREVERB);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_RATEPITCH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_RECORD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_SEEK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_THREADSYNC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VIBRA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VIRTUALIZER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VISUALIZATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(SL_IID_VOLUME);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slCreateEngine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slQueryNumSupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libOpenSLES.so", slQuerySupportedEngineInterfaces);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DCOMMIT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DDOPPLER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DGROUPING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DLOCATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DMACROSCOPIC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_3DSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDACOUSTICECHOCANCELLATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDAUTOMATICGAINCONTROL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDBUFFERQUEUESOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDCONFIGURATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECTCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDEFFECTSEND);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDNOISESUPPRESSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ANDROIDSIMPLEBUFFERQUEUE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIODECODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOENCODERCAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_AUDIOIODEVICECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_BASSBOOST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_BUFFERQUEUE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DEVICEVOLUME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DYNAMICINTERFACEMANAGEMENT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_DYNAMICSOURCE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_EFFECTSEND);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENGINE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENGINECAPABILITIES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_ENVIRONMENTALREVERB);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_EQUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_LED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_METADATAEXTRACTION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_METADATATRAVERSAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDIMESSAGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDIMUTESOLO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDITEMPO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MIDITIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_MUTESOLO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_NULL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_OBJECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_OUTPUTMIX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PITCH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PLAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PLAYBACKRATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PREFETCHSTATUS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_PRESETREVERB);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_RATEPITCH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_RECORD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_SEEK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_THREADSYNC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VIBRA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VIRTUALIZER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VISUALIZATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libOpenSLES.so", SL_IID_VOLUME);
-}
-// clang-format on
diff --git a/libaaudio/Android.bp b/libaaudio/Android.bp
deleted file mode 100644
index 87460ca..0000000
--- a/libaaudio/Android.bp
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: [ "native_bridge_stub_library_defaults" ],
-    name: "libnative_bridge_guest_libaaudio",
-    overrides: [ "libaudio" ],
-    stem: "libaaudio",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        "liblog",
-        "libutils",
-    ],
-}
diff --git a/libaaudio/stubs_arm.cc b/libaaudio/stubs_arm.cc
deleted file mode 100644
index d0d885d..0000000
--- a/libaaudio/stubs_arm.cc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_openStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setAllowedCapturePolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setBufferCapacityInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setChannelCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setContentType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setErrorCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setFramesPerDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setInputPreset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setPerformanceMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSampleRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSamplesPerFrame);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSessionId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSharingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getAllowedCapturePolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getBufferCapacityInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getBufferSizeInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getChannelCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getContentType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesPerBurst);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesPerDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesRead);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesWritten);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getInputPreset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getPerformanceMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSampleRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSamplesPerFrame);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSessionId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSharingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getXRunCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_isMMapUsed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestPause);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestStart);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestStop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_setBufferSizeInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_waitForStateChange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_write);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_convertResultToText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_convertStreamStateToText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_createStreamBuilder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_getMMapPolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_setMMapPolicy);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_openStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setAllowedCapturePolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setBufferCapacityInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setChannelCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setContentType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setErrorCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setFramesPerDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setInputPreset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setPerformanceMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSampleRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSamplesPerFrame);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSessionId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSharingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getAllowedCapturePolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getBufferCapacityInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getBufferSizeInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getChannelCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getContentType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesPerBurst);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesPerDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesRead);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesWritten);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getInputPreset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getPerformanceMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSampleRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSamplesPerFrame);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSessionId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSharingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getXRunCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_isMMapUsed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestPause);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestStart);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestStop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_setBufferSizeInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_waitForStateChange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_write);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_convertResultToText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_convertStreamStateToText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_createStreamBuilder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_getMMapPolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_setMMapPolicy);
-}
-// clang-format on
diff --git a/libaaudio/stubs_arm64.cc b/libaaudio/stubs_arm64.cc
deleted file mode 100644
index d0d885d..0000000
--- a/libaaudio/stubs_arm64.cc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_openStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setAllowedCapturePolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setBufferCapacityInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setChannelCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setContentType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setErrorCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setFramesPerDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setInputPreset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setPerformanceMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSampleRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSamplesPerFrame);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSessionId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setSharingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStreamBuilder_setUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getAllowedCapturePolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getBufferCapacityInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getBufferSizeInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getChannelCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getContentType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesPerBurst);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesPerDataCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesRead);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getFramesWritten);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getInputPreset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getPerformanceMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSampleRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSamplesPerFrame);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSessionId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getSharingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_getXRunCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_isMMapUsed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestPause);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestStart);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_requestStop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_setBufferSizeInFrames);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_waitForStateChange);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudioStream_write);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_convertResultToText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_convertStreamStateToText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_createStreamBuilder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_getMMapPolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAudio_setMMapPolicy);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_openStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setAllowedCapturePolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setBufferCapacityInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setChannelCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setContentType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setErrorCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setFramesPerDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setInputPreset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setPerformanceMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSampleRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSamplesPerFrame);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSessionId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setSharingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStreamBuilder_setUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getAllowedCapturePolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getBufferCapacityInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getBufferSizeInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getChannelCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getContentType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesPerBurst);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesPerDataCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesRead);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getFramesWritten);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getInputPreset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getPerformanceMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSampleRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSamplesPerFrame);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSessionId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getSharingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_getXRunCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_isMMapUsed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestPause);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestStart);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_requestStop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_setBufferSizeInFrames);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_waitForStateChange);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudioStream_write);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_convertResultToText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_convertStreamStateToText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_createStreamBuilder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_getMMapPolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libaaudio.so", AAudio_setMMapPolicy);
-}
-// clang-format on
diff --git a/libamidi/Android.bp b/libamidi/Android.bp
deleted file mode 100644
index 67b57e5..0000000
--- a/libamidi/Android.bp
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libamidi",
-    overrides: ["libamidi"],
-    stem: "libamidi",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "liblog",
-        "libutils",
-        "libnative_bridge_guest_libandroid_runtime",
-        "libnative_bridge_guest_libmediandk",
-        "libutils",
-    ],
-}
diff --git a/libamidi/stubs_arm.cc b/libamidi/stubs_arm.cc
deleted file mode 100644
index f22c58b..0000000
--- a/libamidi/stubs_arm.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_fromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getNumInputPorts);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getNumOutputPorts);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_send);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_sendFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_sendWithTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_receive);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_fromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getNumInputPorts);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getNumOutputPorts);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_send);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_sendFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_sendWithTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_receive);
-}
-// clang-format on
diff --git a/libamidi/stubs_arm64.cc b/libamidi/stubs_arm64.cc
deleted file mode 100644
index f22c58b..0000000
--- a/libamidi/stubs_arm64.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_fromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getNumInputPorts);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getNumOutputPorts);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiDevice_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_send);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_sendFlush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiInputPort_sendWithTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMidiOutputPort_receive);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_fromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getNumInputPorts);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getNumOutputPorts);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiDevice_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_send);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_sendFlush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiInputPort_sendWithTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libamidi.so", AMidiOutputPort_receive);
-}
-// clang-format on
diff --git a/libandroid/Android.bp b/libandroid/Android.bp
deleted file mode 100644
index fe60e64..0000000
--- a/libandroid/Android.bp
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libandroid",
-    overrides: ["libandroid"],
-    stem: "libandroid",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libnative_bridge_guest_libandroid_runtime",
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        // libgui.so — greylisted, not included.
-        "liblog",
-        // libui.so — greylisted, not included.
-        "libutils",
-    ],
-}
diff --git a/libandroid/stubs_arm.cc b/libandroid/stubs_arm.cc
deleted file mode 100644
index 69f03d3..0000000
--- a/libandroid/stubs_arm.cc
+++ /dev/null
@@ -1,577 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_getNextFileName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_rewind);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_fromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_openDir);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getLength);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getLength64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getRemainingLength);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getRemainingLength64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_isAllocated);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_openFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_openFileDescriptor64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_seek);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_seek64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_getInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallback64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallbackDelayed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallbackDelayed64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_diff);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_fromAssetManager);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getCountry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getDensity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getKeyboard);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getKeysHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getLanguage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getLayoutDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getMcc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getMnc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getNavHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getNavigation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenHeightDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenLong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenRound);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getSdkVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getSmallestScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getTouchscreen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getUiModeNight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getUiModeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_isBetterThan);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_match);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setCountry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setDensity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setKeyboard);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setKeysHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setLanguage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setLayoutDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setMcc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setMnc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setNavHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setNavigation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenHeightDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenLong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setSdkVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setSmallestScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setTouchscreen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setUiModeNight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setUiModeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_destroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_match);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setFamilyVariant);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setLocales);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setStyle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisTag);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getCollectionIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getFontFilePath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getLocale);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getWeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_isItalic);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_allocate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_describe);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_fromHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_getNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_isSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockAndGetInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_recvHandleFromUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_sendHandleToUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_toHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_attachLooper);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_detachLooper);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_finishEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_getEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_hasEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_preDispatchEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getAction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getDownTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getKeyCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getMetaState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getRepeatCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getScanCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_addFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_forThread);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_pollAll);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_pollOnce);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_prepare);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_removeFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_wake);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getAction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getButtonState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getDownTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getEdgeFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalPressure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalRawX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalRawY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalToolMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalToolMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalTouchMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalTouchMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistorySize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getMetaState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPointerCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPointerId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPressure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getRawX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getRawY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getTouchMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getTouchMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getXOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getXPrecision);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getYOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getYPrecision);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_hideSoftInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_setWindowFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_setWindowFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_showSoftInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_fromSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_toSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_unlockAndPost);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getPackageName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbScanner_getObbInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_disableSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_enableSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_getEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_hasEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_registerSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_requestAdditionalInfoEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_setEventRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_configureDirectReport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createEventQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createHardwareBufferDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createSharedMemoryDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_destroyDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_destroyEventQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getDefaultSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getDefaultSensorEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getInstanceForPackage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getSensorList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getFifoMaxEventCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getFifoReservedEventCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getHighestDirectReportRateLevel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getMinDelay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getReportingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getResolution);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getStringType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getVendor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_isDirectChannelTypeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_isWakeUpSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_dupFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_setProt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_getMountedObbPath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_isObbMounted);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_mountObb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_unmountObb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_createFromWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_acquireANativeWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_attachToGLContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_detachFromGLContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_fromSurfaceTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_getTransformMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_updateTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getASurfaceControls);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getAcquireTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getLatchTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getPresentFenceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getPreviousReleaseFenceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_releaseASurfaceControls);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_apply);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_reparent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferAlpha);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferTransparency);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setDamageRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setDesiredPresentTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setHdrMetadata_cta861_3);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setHdrMetadata_smpte2086);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setOnComplete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setVisibility);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setZOrder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_next);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_beginAsyncSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_beginSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_endAsyncSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_endSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_isEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_setCounter);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetwork);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_cancel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nquery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nresult);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nsend);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_setprocnetwork);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_setsocknetwork);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_getNextFileName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_rewind);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_fromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_openDir);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getLength);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getLength64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getRemainingLength);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getRemainingLength64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_isAllocated);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_openFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_openFileDescriptor64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_seek);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_seek64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_getInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallback64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallbackDelayed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallbackDelayed64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_diff);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_fromAssetManager);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getCountry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getDensity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getKeyboard);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getKeysHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getLanguage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getLayoutDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getMcc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getMnc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getNavHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getNavigation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenHeightDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenLong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenRound);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getSdkVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getSmallestScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getTouchscreen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getUiModeNight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getUiModeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_isBetterThan);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_match);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setCountry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setDensity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setKeyboard);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setKeysHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setLanguage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setLayoutDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setMcc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setMnc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setNavHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setNavigation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenHeightDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenLong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setSdkVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setSmallestScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setTouchscreen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setUiModeNight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setUiModeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_destroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_match);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setFamilyVariant);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setLocales);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setStyle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisTag);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getCollectionIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getFontFilePath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getLocale);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getWeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_isItalic);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_allocate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_describe);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_fromHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_getNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_isSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lockAndGetInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lockPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_recvHandleFromUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_sendHandleToUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_toHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_attachLooper);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_detachLooper);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_finishEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_getEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_hasEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_preDispatchEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getAction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getDownTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getKeyCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getMetaState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getRepeatCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getScanCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_addFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_forThread);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_pollAll);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_pollOnce);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_prepare);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_removeFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_wake);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getAction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getButtonState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getDownTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getEdgeFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalPressure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalRawX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalRawY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalToolMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalToolMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalTouchMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalTouchMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistorySize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getMetaState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPointerCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPointerId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPressure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getRawX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getRawY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getTouchMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getTouchMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getXOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getXPrecision);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getYOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getYPrecision);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_hideSoftInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_setWindowFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_setWindowFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_showSoftInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_fromSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_setBuffersGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_toSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_unlockAndPost);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getPackageName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbScanner_getObbInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_disableSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_enableSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_getEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_hasEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_registerSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_requestAdditionalInfoEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_setEventRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_configureDirectReport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createEventQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createHardwareBufferDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createSharedMemoryDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_destroyDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_destroyEventQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getDefaultSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getDefaultSensorEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getInstanceForPackage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getSensorList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getFifoMaxEventCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getFifoReservedEventCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getHighestDirectReportRateLevel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getMinDelay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getReportingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getResolution);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getStringType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getVendor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_isDirectChannelTypeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_isWakeUpSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_dupFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_setProt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_getMountedObbPath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_isObbMounted);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_mountObb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_unmountObb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_createFromWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_acquireANativeWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_attachToGLContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_detachFromGLContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_fromSurfaceTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_getTransformMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_updateTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getASurfaceControls);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getAcquireTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getLatchTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getPresentFenceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getPreviousReleaseFenceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_releaseASurfaceControls);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_apply);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_reparent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferAlpha);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferTransparency);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setDamageRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setDesiredPresentTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setHdrMetadata_cta861_3);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setHdrMetadata_smpte2086);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setOnComplete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setVisibility);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setZOrder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_next);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_beginAsyncSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_beginSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_endAsyncSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_endSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_isEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_setCounter);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_getaddrinfofornetwork);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_cancel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nquery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nresult);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nsend);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_setprocnetwork);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_setsocknetwork);
-}
-// clang-format on
diff --git a/libandroid/stubs_arm64.cc b/libandroid/stubs_arm64.cc
deleted file mode 100644
index 69f03d3..0000000
--- a/libandroid/stubs_arm64.cc
+++ /dev/null
@@ -1,577 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_getNextFileName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetDir_rewind);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_fromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAssetManager_openDir);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getLength);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getLength64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getRemainingLength);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_getRemainingLength64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_isAllocated);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_openFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_openFileDescriptor64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_seek);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AAsset_seek64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_getInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallback64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallbackDelayed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AChoreographer_postFrameCallbackDelayed64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_diff);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_fromAssetManager);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getCountry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getDensity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getKeyboard);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getKeysHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getLanguage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getLayoutDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getMcc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getMnc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getNavHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getNavigation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenHeightDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenLong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenRound);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getSdkVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getSmallestScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getTouchscreen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getUiModeNight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_getUiModeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_isBetterThan);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_match);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setCountry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setDensity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setKeyboard);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setKeysHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setLanguage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setLayoutDirection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setMcc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setMnc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setNavHidden);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setNavigation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenHeightDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenLong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setSdkVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setSmallestScreenWidthDp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setTouchscreen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setUiModeNight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AConfiguration_setUiModeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_destroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_match);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setFamilyVariant);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setLocales);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFontMatcher_setStyle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisTag);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getCollectionIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getFontFilePath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getLocale);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_getWeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AFont_isItalic);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_allocate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_describe);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_fromHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_getNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_isSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockAndGetInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_recvHandleFromUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_sendHandleToUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_toHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getDeviceId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputEvent_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_attachLooper);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_detachLooper);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_finishEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_getEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_hasEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AInputQueue_preDispatchEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getAction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getDownTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getKeyCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getMetaState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getRepeatCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AKeyEvent_getScanCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_addFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_forThread);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_pollAll);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_pollOnce);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_prepare);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_removeFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ALooper_wake);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getAction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getButtonState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getDownTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getEdgeFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalAxisValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalEventTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalPressure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalRawX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalRawY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalToolMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalToolMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalTouchMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalTouchMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistoricalY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getHistorySize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getMetaState);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getOrientation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPointerCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPointerId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getPressure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getRawX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getRawY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getToolType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getTouchMajor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getTouchMinor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getX);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getXOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getXPrecision);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getY);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getYOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMotionEvent_getYPrecision);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_hideSoftInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_setWindowFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_setWindowFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeActivity_showSoftInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_fromSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_toSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_unlockAndPost);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getPackageName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbInfo_getVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AObbScanner_getObbInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_disableSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_enableSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_getEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_hasEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_registerSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_requestAdditionalInfoEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorEventQueue_setEventRate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_configureDirectReport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createEventQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createHardwareBufferDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_createSharedMemoryDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_destroyDirectChannel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_destroyEventQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getDefaultSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getDefaultSensorEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getInstanceForPackage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensorManager_getSensorList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getFifoMaxEventCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getFifoReservedEventCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getHighestDirectReportRateLevel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getMinDelay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getReportingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getResolution);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getStringType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_getVendor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_isDirectChannelTypeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASensor_isWakeUpSensor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_dupFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASharedMemory_setProt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_getMountedObbPath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_isObbMounted);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_mountObb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStorageManager_unmountObb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_createFromWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceControl_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_acquireANativeWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_attachToGLContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_detachFromGLContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_fromSurfaceTexture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_getTransformMatrix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTexture_updateTexImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getASurfaceControls);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getAcquireTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getLatchTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getPresentFenceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_getPreviousReleaseFenceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransactionStats_releaseASurfaceControls);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_apply);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_reparent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferAlpha);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setBufferTransparency);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setColor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setDamageRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setDesiredPresentTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setHdrMetadata_cta861_3);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setHdrMetadata_smpte2086);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setOnComplete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setVisibility);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASurfaceTransaction_setZOrder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_next);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ASystemFontIterator_open);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_beginAsyncSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_beginSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_endAsyncSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_endSection);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_isEnabled);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ATrace_setCounter);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetwork);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_cancel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nquery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nresult);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_res_nsend);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_setprocnetwork);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_setsocknetwork);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_getNextFileName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetDir_rewind);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_fromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAssetManager_openDir);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getLength);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getLength64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getRemainingLength);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_getRemainingLength64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_isAllocated);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_openFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_openFileDescriptor64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_seek);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AAsset_seek64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_getInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallback64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallbackDelayed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AChoreographer_postFrameCallbackDelayed64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_diff);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_fromAssetManager);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getCountry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getDensity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getKeyboard);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getKeysHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getLanguage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getLayoutDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getMcc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getMnc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getNavHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getNavigation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenHeightDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenLong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenRound);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getSdkVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getSmallestScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getTouchscreen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getUiModeNight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_getUiModeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_isBetterThan);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_match);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setCountry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setDensity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setKeyboard);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setKeysHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setLanguage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setLayoutDirection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setMcc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setMnc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setNavHidden);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setNavigation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenHeightDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenLong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setSdkVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setSmallestScreenWidthDp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setTouchscreen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setUiModeNight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AConfiguration_setUiModeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_destroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_match);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setFamilyVariant);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setLocales);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFontMatcher_setStyle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisTag);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getCollectionIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getFontFilePath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getLocale);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_getWeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AFont_isItalic);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_allocate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_describe);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_fromHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_getNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_isSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lockAndGetInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_lockPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_recvHandleFromUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_sendHandleToUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_toHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AHardwareBuffer_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getDeviceId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputEvent_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_attachLooper);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_detachLooper);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_finishEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_getEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_hasEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AInputQueue_preDispatchEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getAction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getDownTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getKeyCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getMetaState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getRepeatCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AKeyEvent_getScanCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_addFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_forThread);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_pollAll);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_pollOnce);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_prepare);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_removeFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ALooper_wake);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getAction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getButtonState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getDownTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getEdgeFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalAxisValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalEventTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalPressure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalRawX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalRawY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalToolMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalToolMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalTouchMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalTouchMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistoricalY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getHistorySize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getMetaState);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getOrientation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPointerCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPointerId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getPressure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getRawX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getRawY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getToolType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getTouchMajor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getTouchMinor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getX);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getXOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getXPrecision);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getY);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getYOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AMotionEvent_getYPrecision);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_hideSoftInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_setWindowFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_setWindowFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeActivity_showSoftInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_fromSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_setBuffersGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_toSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ANativeWindow_unlockAndPost);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getPackageName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbInfo_getVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AObbScanner_getObbInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_disableSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_enableSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_getEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_hasEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_registerSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_requestAdditionalInfoEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorEventQueue_setEventRate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_configureDirectReport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createEventQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createHardwareBufferDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_createSharedMemoryDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_destroyDirectChannel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_destroyEventQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getDefaultSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getDefaultSensorEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getInstanceForPackage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensorManager_getSensorList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getFifoMaxEventCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getFifoReservedEventCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getHighestDirectReportRateLevel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getMinDelay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getReportingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getResolution);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getStringType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_getVendor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_isDirectChannelTypeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASensor_isWakeUpSensor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_dupFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASharedMemory_setProt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_getMountedObbPath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_isObbMounted);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_mountObb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", AStorageManager_unmountObb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_createFromWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceControl_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_acquireANativeWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_attachToGLContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_detachFromGLContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_fromSurfaceTexture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_getTransformMatrix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTexture_updateTexImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getASurfaceControls);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getAcquireTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getLatchTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getPresentFenceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_getPreviousReleaseFenceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransactionStats_releaseASurfaceControls);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_apply);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_reparent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferAlpha);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setBufferTransparency);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setColor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setDamageRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setDesiredPresentTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setHdrMetadata_cta861_3);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setHdrMetadata_smpte2086);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setOnComplete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setVisibility);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASurfaceTransaction_setZOrder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_next);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ASystemFontIterator_open);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_beginAsyncSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_beginSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_endAsyncSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_endSection);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_isEnabled);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", ATrace_setCounter);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_getaddrinfofornetwork);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_cancel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nquery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nresult);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_res_nsend);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_setprocnetwork);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid.so", android_setsocknetwork);
-}
-// clang-format on
diff --git a/libandroid_runtime/Android.bp b/libandroid_runtime/Android.bp
deleted file mode 100644
index 96e9a7d..0000000
--- a/libandroid_runtime/Android.bp
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libandroid_runtime",
-    overrides: ["libandroid_runtime"],
-    stem: "libandroid_runtime",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    // We don't track dependencies of libandroid_runtime because we are only
-    // providing a fake implementation without full compatibility.
-}
diff --git a/libandroid_runtime/stubs_arm.cc b/libandroid_runtime/stubs_arm.cc
deleted file mode 100644
index 59d24d4..0000000
--- a/libandroid_runtime/stubs_arm.cc
+++ /dev/null
@@ -1,2493 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmapConfig_getConfigFromFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmapConfig_getFormatFromConfig);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_acquireBitmapFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_acquireRef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_compress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getInfoFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_notifyPixelsChanged);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_releaseRef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_clipOutRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_clipRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_createCanvas);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_destroyCanvas);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_drawBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_drawRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_getNativeHandleFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_isSupportedPixelFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMatrix_getContents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_createPaint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_destroyPaint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_setBlendMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_acquireIterator);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_getRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_getTotalBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_isComplex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_isDone);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_next);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_releaseIterator);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARenderThread_dumpGraphicsMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifCloseFile);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifExtensionToGCB);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetCodeNext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetExtensionNext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetImageDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetLZCodes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetLine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetPixel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetRecordType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetScreenDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpenFileHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpenFileName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifSavedExtensionToGCB);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifSlurp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(FreeLastSavedImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifAddExtensionBlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifApplyTranslation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifBitSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeExtensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeMapObject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeSavedImages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifMakeMapObject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifMakeSavedImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifUnionColorMap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowIAEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowIOEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowISEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowNPEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10error_exitP18jpeg_common_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10getContextx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z11doThrowOOMEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z11getMimeType20SkEncodedImageFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z12checkGlErrorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13create_jmovieP7_JNIEnvP5Movie);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13doThrowAIOOBEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z17get_native_cameraP7_JNIEnvP8_jobjectPP16JNICameraContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z19CopyJavaInputStreamP7_JNIEnvP8_jobjectP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z19_set_seccomp_filter10FilterType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z21postProcessAndReleaseP7_JNIEnvP8_jobjectNSt3__110unique_ptrIN7android6CanvasENS3_14default_deleteIS6_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z22get_device_from_objectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z22set_app_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z23getMimeTypeAsJavaStringP7_JNIEnv20SkEncodedImageFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z23get_request_from_objectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25_install_setuidgid_filterjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25android_os_Process_setGidP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25android_os_Process_setUidP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25set_system_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26android_os_Process_getPidsP7_JNIEnvP8_jobjectP8_jstringP10_jintArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26get_exclusive_cpuset_cores11SchedPolicyP9cpu_set_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26register_android_os_BinderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27android_os_Process_setArgV0P7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27register_android_media_midiP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27register_android_os_ProcessP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z28CreateByteArrayStreamAdaptorP7_JNIEnvP11_jbyteArrayjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z28CreateJavaInputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArrayb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29CreateByteBufferStreamAdaptorP7_JNIEnvP8_jobjectjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29CreateJavaOutputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29android_os_Process_sendSignalP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29set_app_zygote_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z31android_os_Process_readProcFileP7_JNIEnvP8_jobjectP8_jstringP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z31register_android_graphics_MovieP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_getGidForNameP7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_getUidForNameP7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_parseProcLineP7_JNIEnvP8_jobjectP11_jbyteArrayiiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_readProcLinesP7_JNIEnvP8_jobjectP8_jstringP13_jobjectArrayP11_jlongArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_setSwappinessP7_JNIEnvP8_jobjectih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32install_setuidgid_seccomp_filterjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_BitmapP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_CameraP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_ShaderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_hardware_CameraP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33android_os_Process_setThreadGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_media_AudioTrackP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_opengl_jni_EGL14P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_opengl_jni_EGL15P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34JHwBinder_native_joinRpcThreadpoolv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_getProcessGroupP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_sendSignalQuietP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_setProcessGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_GraphicsP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_TypefaceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_YuvImageP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_media_AudioRecordP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_media_AudioSystemP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_EGLExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES10P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES11P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES20P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES30P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES31P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES32P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35android_os_Process_killProcessGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35register_android_graphics_NinePatchP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35register_android_hardware_UsbDeviceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Binder_getNativeFinalizerP7_JNIEnvP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_getExclusiveCoresP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_getThreadPriorityP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_setThreadPriorityP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_graphics_MaskFilterP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_graphics_PathEffectP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_hardware_SerialPortP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_hardware_UsbRequestP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_media_ToneGeneratorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_media_getIntConstantFromClassP7_JNIEnvP7_jclassPKcS4_Pi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_getPidsForCommandsP7_JNIEnvP8_jobjectP13_jobjectArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_getThreadSchedulerP7_JNIEnvP7_jclassi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_parseProcLineArrayP7_JNIEnvP8_jobjectPciiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_setThreadSchedulerP7_JNIEnvP7_jclassiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_media_MicrophoneInfoP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES10ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES11ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES31ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38android_media_AudioTrack_getAudioTrackP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_graphics_ImageDecoderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_graphics_InterpolatorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_media_AudioAttributesP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39JHwBinder_native_configureRpcThreadpoolP7_JNIEnvP7_jclassxh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39android_os_Process_setApplicationObjectP7_JNIEnvP8_jobjectS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_graphics_BitmapFactoryP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_graphics_GraphicBufferP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_hardware_SensorManagerP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z40register_android_hardware_HardwareBufferP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z40register_android_media_AudioVolumeGroupsP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41android_os_BinderProxy_getNativeFinalizerP7_JNIEnvP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41android_os_Process_removeAllProcessGroupsP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41register_android_media_AudioDeviceAddressP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z42android_os_Process_setThreadGroupAndCpusetP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z43android_os_Process_setCallingThreadPriorityP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z43register_com_google_android_gles_jni_GLImplP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_android_hardware_camera2_DngCreatorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_android_media_AudioEffectDescriptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_com_google_android_gles_jni_EGLImplP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_graphics_BitmapRegionDecoderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_hardware_UsbDeviceConnectionP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_media_AudioProductStrategiesP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z48register_android_hardware_camera2_CameraMetadataP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z49register_android_graphics_ByteBufferStreamAdaptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z52register_android_media_AudioVolumeGroupChangeHandlerP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z55register_android_graphics_CreateJavaOutputStreamAdaptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z56register_android_graphics_drawable_AnimatedImageDrawableP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z56register_android_hardware_camera2_legacy_PerfMeasurementP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z59register_android_hardware_camera2_legacy_LegacyCameraDeviceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z62register_android_hardware_location_ActivityRecognitionHardwareP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z9doThrowREP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI12createRegionEP7_JNIEnvP8SkRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI12hasExceptionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13getBitmapInfoEP7_JNIEnvP8_jobjectPj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13getColorSpaceEP7_JNIEnvP12SkColorSpace11SkColorType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13jrect_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14irect_to_jrectERK7SkIRectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14jrect_to_irectEP7_JNIEnvP8_jobjectP7SkIRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14jrectf_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14rect_to_jrectfERK6SkRectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeBitmapEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeCanvasEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeRegionEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16convertColorLongEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16ipoint_to_jpointERK8SkIPointP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16isHardwareConfigEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16jpoint_to_ipointEP7_JNIEnvP8_jobjectP8SkIPoint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16jpointf_to_pointEP7_JNIEnvP8_jobjectP7SkPoint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16point_to_jpointfERK7SkPointP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getConfigFromFormatEP7_JNIEnv19AndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getFormatFromConfigEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getNativeColorSpaceEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI24getNativeBitmapColorTypeEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI25createBitmapRegionDecoderEP7_JNIEnvP21SkBitmapRegionDecoder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI26hardwareLegacyBitmapConfigEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI29colorTypeToLegacyBitmapConfigE11SkColorType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI29legacyBitmapConfigToColorTypeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9SetPixelsEP7_JNIEnvP10_jintArrayiiiiiiP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9get_jrectEP7_JNIEnvP8_jobjectPiS4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9set_jrectEP7_JNIEnvP8_jobjectiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13HeapAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext10setGpsDataERK7GpsData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext12setThumbnailEPKhjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setCaptureTimeERKN7android7String8E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setDescriptionERKN7android7String8E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setOrientationEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext9getWriterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextC2ERKN7android14CameraMetadataES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4readEPhjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4skipEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream5writeEPKhjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15NinePatchPeeker5scaleEffii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15NinePatchPeeker9readChunkEPKcPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16AutoJavaIntArrayC2EP7_JNIEnvP10_jintArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16AutoJavaIntArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSource13writeToStreamERN7android9img_utils6OutputEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceC2EP7_JNIEnvRN7android9img_utils5InputEjjjjjyjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext11copyAndPostEP7_JNIEnvRKN7android2spINS2_7IMemoryEEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext12postMetadataEP7_JNIEnviP21camera_frame_metadata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext15setCallbackModeEP7_JNIEnvbb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17addCallbackBufferEP7_JNIEnvP11_jbyteArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17getCallbackBufferEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17postDataTimestampExiRKN7android2spINS0_7IMemoryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext33postRecordingFrameHandleTimestampExP13native_handle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext38postRecordingFrameHandleTimestampBatchERKNSt3__16vectorIxNS0_9allocatorIxEEEERKNS1_IP13native_handleNS2_IS8_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext6notifyEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext7releaseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext8postDataEiRKN7android2spINS0_7IMemoryEEEP21camera_frame_metadata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContextC1EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContextC2EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder21setJpegCompressStructEP20jpeg_compress_structiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder6createEiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder6encodeEP9SkWStreamPviiPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17AutoJavaByteArrayC2EP7_JNIEnvP11_jbyteArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17AutoJavaByteArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSource13writeToStreamERN7android9img_utils6OutputEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceC2EP7_JNIEnvPKhjjjjjyjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaFloatArrayC2EP7_JNIEnvP12_jfloatArrayi9JNIAccess);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaFloatArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaShortArrayC2EP7_JNIEnvP12_jshortArrayi9JNIAccess);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaShortArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList3addERKN7android2spI18JavaDeathRecipientEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList4findEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList4lockEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList6removeERKN7android2spI18JavaDeathRecipientEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfo12CreateFromFdEiRKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfo13GetSocketNameEiPNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfoC2E4statRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiiiil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfoC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer4readEPhjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable14RestatInternalERNSt3__13setIiNS0_4lessIiEENS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS4_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable6CreateERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable6RestatERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable7ParseFdEP6direnti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTableC2ERKNSt3__113unordered_mapIiP18FileDescriptorInfoNS0_4hashIiEENS0_8equal_toIiEENS0_9allocatorINS0_4pairIKiS3_EEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20AshmemPixelAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20AshmemPixelAllocatorC2EP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback13onServiceDiedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback21onAudioPortListUpdateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback22onAudioPatchListUpdateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback9sendEventEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackC2EP7_JNIEnvP8_jobjectS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder12deinterleaveEPhS0_S0_S0_iii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder12deinterleaveEPhS0_S0_iii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN23FileDescriptorWhitelist3GetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN23FileDescriptorWhitelistC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocator15copyIfNecessaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorC2EPN7android6BitmapEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie10DecodeFileEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie10ensureInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie12DecodeMemoryEPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie12DecodeStreamEP18SkStreamRewindable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie5widthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie6bitmapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie6heightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie7setTimeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie8durationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie8isOpaqueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5MovieC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue11createQueueEP8_jobjectRKNS_2spINS_6LooperEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue11finishEventEPNS_10InputEventEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12attachLooperEPNS_6LooperEiPFiiiPvES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12detachLooperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12enqueueEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue13handleMessageERKNS_7MessageE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue14createKeyEventEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue16preDispatchEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue17createMotionEventEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue17recycleInputEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue18detachLooperLockedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue8getEventEPPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue9hasEventsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueC1EP8_jobjectRKNS_2spINS_6LooperEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueC2EP8_jobjectRKNS_2spINS_6LooperEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo14ReadDmaBufInfoEPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEERKNS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo14ReadDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo16AppendDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10getServiceINS_8hardware14ICameraServiceEEEiRKNS_8String16EPNS_2spIT_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10isSeekableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10nativeOpenEP7_JNIEnvP7_jclassix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11BnInterfaceINS_20IRemoteDisplayClientEE10onAsBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11BnInterfaceINS_23IRegionSamplingListenerEE10onAsBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory12javaToNativeEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory16getNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory6toJavaEP7_JNIEnvRKNS_8hardware11hidl_memoryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory8fromJavaEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11nativeCloseEP7_JNIEnvP7_jclassx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueue22raiseAndClearExceptionEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MinikinUtils10forFontRunINS_9PaintGlue14GetTextFunctorEEEvRKN7minikin6LayoutEPNS_5PaintERT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle19MakeCppNativeHandleEP7_JNIEnvP8_jobjectPNS_16EphemeralStorageE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle23MakeJavaNativeHandleObjEP7_JNIEnvPK13native_handle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle29AllocJavaNativeHandleObjArrayEP7_JNIEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime10getRuntimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime11onVmCreatedEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime14parseExtraOptsEPcPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime15NewStringLatin1EP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime15javaThreadShellEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime16createJavaThreadEPKcPFvPvES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime16toSlashClassNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime18parseRuntimeOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime19javaCreateThreadEtcEPFiPvES1_PKcijPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime19parseCompilerOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime26parseCompilerRuntimeOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime4exitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime5startEPKcRKNS_6VectorINS_7String8EEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnvbb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8callMainERKNS_7String8EP7_jclassRKNS_6VectorIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8setArgv0EPKcb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8startRegEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9addOptionEPKcPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9getJNIEnvEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9getJavaVMEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeC2EPcj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14get_env_or_dieEP7_JavaVM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14init_FontUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9NewObjectEP7_JNIEnvRKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9setBinderERKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15MediaMetricsJNI20writeMetricsToBundleEP7_JNIEnvPNS_12mediametrics4ItemEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15MediaMetricsJNI29nativeToJavaPersistableBundleEP7_JNIEnvPNS_2os17PersistableBundleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15getBPNativeDataEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16DeleteScreenshotEPvS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage16allocStringArrayEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage20allocTemporaryStringEP7_JNIEnvP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage21allocTemporaryStorageEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage24allocTemporaryInt8VectorEP7_JNIEnvP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryFloatVectorEP7_JNIEnvP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt16VectorEP7_JNIEnvP12_jshortArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt32VectorEP7_JNIEnvP10_jintArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt64VectorEP7_JNIEnvP11_jlongArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage26allocTemporaryDoubleVectorEP7_JNIEnvP13_jdoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage26allocTemporaryNativeHandleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage7releaseEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorageC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorageD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16nullObjectReturnEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17AutoBufferPointerC2EP7_JNIEnvP8_jobjecth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17AutoBufferPointerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17CopyAssetToStreamEPNS_5AssetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallback19onAudioDeviceUpdateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackC2EP7_JNIEnvP8_jobjectS4_P10_jmethodID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4moveEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4readEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4seekEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor6rewindEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptorC2EPNS_5AssetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannel18setDisposeCallbackEPFvP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPvESA_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannel30invokeAndRemoveDisposeCallbackEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannelC2ERKNS_2spINS_12InputChannelEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannelD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue14raiseExceptionEP7_JNIEnvPKcP11_jthrowable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue23setFileDescriptorEventsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue4wakeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueC1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18forwardPdfiumErrorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18nativeGetPageCountEP7_JNIEnvP7_jclassx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19parcelForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState11addMovementEPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState11getVelocityEiPfS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState12getEstimatorEiPNS_15VelocityTracker9EstimatorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState22computeCurrentVelocityEif);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerStateC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20ibinderForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20javaObjectForIBinderEP7_JNIEnvRKNS_2spINS_7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20poly_clip_to_frustumEPNS_4PolyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender12sendKeyEventEjPKNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender15sendMotionEventEjPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender22receiveFinishedSignalsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22createJavaParcelObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22nativeScaleForPrintingEP7_JNIEnvP7_jclassx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22poly_clip_to_halfspaceEPNS_4PolyES1_iff);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22validateCanUseHwBinderERKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper10makeUniqueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper12getJavaArrayEP7_JNIEnvPP13_jobjectArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper12nativeToJavaEP7_JNIEnvPP8_jobjectRK18audio_attributes_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper14nativeFromJavaEP7_JNIEnvP8_jobjectP18audio_attributes_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandle10updateInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandle31getInputWindowHandleObjLocalRefEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleC2EP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23newParcelFileDescriptorEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23recycleJavaParcelObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23signalExceptionForErrorEP7_JNIEnvP8_jobjectibi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23signalExceptionForErrorEP7_JNIEnvib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3PKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnviPKcS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserver13getNextBufferEP7_JNIEnvP11_jlongArrayPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserver6notifyEPKx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverC2EP7_JavaVMP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext16onFrameAvailableERKNS_10BufferItemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext9detachJNIEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext9getJNIEnvEPb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextC1EP7_JNIEnvP8_jobjectP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextC2EP7_JNIEnvP8_jobjectP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver11setFdEventsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver13consumeEventsEP7_JNIEnvbxPb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver16finishInputEventEjb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25AssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_os_DebugEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_os_TraceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_util_LogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList3addERKNS_2spINS_22HwBinderDeathRecipientEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList4findEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList4lockEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList6removeERKNS_2spINS_22HwBinderDeathRecipientEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver13dispatchVsyncExyj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver15dispatchHotplugExyb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver21dispatchConfigChangedExyix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26SurfaceTexture_getProducerEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26audioEffectDescriptorClassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26register_android_os_HwBlobEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26register_android_os_ParcelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallback13onServiceDiedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallback25onAudioVolumeGroupChangedENS_14volume_group_tEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackC2EP7_JNIEnvP8_jobjectS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27register_android_os_SELinuxEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandle10updateInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandle36getInputApplicationHandleObjLocalRefEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleC2EP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NdkAssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28register_android_os_HwBinderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28register_android_os_HwParcelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28set_dalvik_blockguard_policyEP7_JNIEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_NativeActivity_finishEP15ANativeActivity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_view_KeyEvent_recycleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_view_PointerIcon_loadEP7_JNIEnvP8_jobjectS3_PNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29register_android_app_ActivityEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29register_android_view_SurfaceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android2spINS_10AudioTrackEEaSEPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android2spINS_11AudioRecordEEaSEPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30AssetManagerForNdkAssetManagerEP13AAssetManager);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30android_view_KeyEvent_toNativeEP7_JNIEnvP8_jobjectPNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_graphics_PathEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_os_HidlMemoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_os_MemoryFileEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_util_EventLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_util_StatsLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_view_KeyEventEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31android_view_InputDevice_createEP7_JNIEnvRKNS_15InputDeviceInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31android_view_Surface_getSurfaceEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31convertMicrophoneInfoFromNativeEP7_JNIEnvPP8_jobjectPKNS_5media14MicrophoneInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_graphics_PaintEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_opengl_classesEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_HidlSupportEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_SystemClockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_VintfObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31throw_sqlite3_exception_errcodeEP7_JNIEnviPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32CameraMetadata_getNativeMetadataEP7_JNIEnvP8_jobjectPNS_14CameraMetadataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32SurfaceTexture_getSurfaceTextureEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32android_view_KeyEvent_fromNativeEP7_JNIEnvPKNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32android_view_MotionEvent_recycleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_CanvasEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_MatrixEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_RegionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_FileObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_MessageQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_NativeHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_SharedMemoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_security_ScryptEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_text_HyphenatorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_util_PathParserEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_view_InputQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_view_RenderNodeEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33android_Configuration_getFromJavaEP7_JNIEnvP8_jobjectP14AConfiguration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33android_view_Surface_isInstanceOfEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_content_XmlBlockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_graphics_PictureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_net_NetworkUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_InputDeviceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_MotionEventEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_PointerIconEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_TextureViewEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34createAudioDeviceAddressFromNativeEP7_JNIEnvPP8_jobjectPKNS_19AudioDeviceTypeAddrE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_os_HwRemoteBinderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_os_UEventObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_view_InputChannelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_view_TextureLayerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_SurfaceTexture_isInstanceOfEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_graphics_Matrix_getSkMatrixEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_view_KeyCharacterMap_createEP7_JNIEnviRKNS_2spINS_15KeyCharacterMapEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_app_ActivityThreadEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_app_NativeActivityEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_media_MediaMetricsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_NativeActivity_hideSoftInputEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_NativeActivity_showSoftInputEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getDeathObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getLocalObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getProxyObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_util_Log_isVerboseLogEnabledEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_view_Surface_getNativeWindowEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_content_StringBlockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_ColorSpaceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_DrawFilterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_FontFamilyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_fonts_FontEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_media_RemoteDisplayEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_net_LocalSocketImplEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_os_SystemPropertiesEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_os_VintfRuntimeInfoEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_util_MemoryIntArrayEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_view_SurfaceControlEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_view_SurfaceSessionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_NativeActivity_setWindowFlagsEP15ANativeActivityii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_MotionEvent_getNativePtrEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_MotionEvent_obtainAsCopyEP7_JNIEnvPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_SurfaceSession_getClientEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_content_AssetManagerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_database_SQLiteDebugEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_graphics_ColorFilterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_graphics_PathMeasureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_view_KeyCharacterMapEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_view_VelocityTrackerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_NativeActivity_setWindowFormatEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_PointerIcon_getLoadedIconEP7_JNIEnvP8_jobjectPNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_PointerIcon_getSystemIconEP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_Surface_createFromSurfaceEP7_JNIEnvRKNS_2spINS_7SurfaceEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38convertAudioEffectDescriptorFromNativeEP7_JNIEnvPP8_jobjectPK19effect_descriptor_s);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_app_admin_SecurityLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_app_backup_FullBackupEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_content_res_ApkAssetsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_database_CursorWindowEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_database_SQLiteGlobalEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_text_AndroidCharacterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_util_StatsLogInternalEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_view_InputEventSenderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_view_ThreadedRendererEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39android_os_MessageQueue_getMessageQueueEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39android_view_PointerIcon_loadSystemIconEP7_JNIEnvP8_jobjectiPNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_backup_BackupDataInputEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_content_res_ObbScannerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_graphics_pdf_PdfEditorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_os_GraphicsEnvironmentEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_util_jar_StrictJarFileEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_view_DisplayListCanvasEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_view_InputWindowHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_com_android_internal_os_ZygoteEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40android_view_InputWindowHandle_getHandleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_backup_BackupDataOutputEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_ddm_DdmHandleNativeHeapEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_graphics_CanvasPropertyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_graphics_SurfaceTextureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_view_InputEventReceiverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_view_RenderNodeAnimatorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41android_view_InputChannel_getInputChannelEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41register_android_graphics_pdf_PdfDocumentEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41register_android_graphics_pdf_PdfRendererEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_content_res_ConfigurationEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_database_SQLiteConnectionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_BLASTBufferQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_fonts_FontFamilyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_text_LineBreakerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_service_DataLoaderServiceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_view_DisplayEventReceiverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43register_android_graphics_text_MeasuredTextEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43register_com_android_internal_os_ZygoteInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44android_view_InputChannel_setDisposeCallbackEP7_JNIEnvP8_jobjectPFvS1_S3_RKNS_2spINS_12InputChannelEEEPvES9_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44convertAudioEffectDescriptorVectorFromNativeEP7_JNIEnvPP13_jobjectArrayRKNSt3__16vectorI19effect_descriptor_sNS5_9allocatorIS7_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_android_backup_FileBackupHelperBaseEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_android_view_InputApplicationHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_com_android_internal_os_FuseAppLoopEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_com_android_internal_os_RuntimeInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android45android_view_InputApplicationHandle_getHandleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android46register_android_backup_BackupHelperDispatcherEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android47register_android_animation_PropertyValuesHolderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49android_hardware_display_DisplayViewport_toNativeEP7_JNIEnvP8_jobjectPNS_15DisplayViewportE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_graphics_drawable_VectorDrawableEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_hardware_display_DisplayViewportEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_view_CompositionSamplingListenerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android50register_android_graphics_HardwareRendererObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android50register_android_os_incremental_IncrementalManagerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android51register_com_android_internal_os_ClassLoaderFactoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android52android_hardware_HardwareBuffer_convertToPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android52register_com_android_internal_util_VirtualRefBasePtrEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android53android_view_Surface_createFromIGraphicBufferProducerEP7_JNIEnvRKNS_2spINS_22IGraphicBufferProducerEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android53register_android_server_NetworkManagementSocketTaggerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android54android_graphics_GraphicBuffer_getNativeGraphicsBufferEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android54android_hardware_HardwareBuffer_convertFromPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android55android_hardware_HardwareBuffer_getNativeHardwareBufferEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android56android_graphics_GraphicBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57android_hardware_HardwareBuffer_convertToGrallocUsageBitsEy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57android_hardware_HardwareBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57register_android_graphics_drawable_AnimatedVectorDrawableEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57register_com_android_internal_content_NativeLibraryHelperEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android5vintf9to_stringINS0_13KernelVersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android5vintf9to_stringINS0_7VersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android60register_com_android_internal_os_ZygoteInit_nativeZygoteInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap10toSkBitmapExP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap12createBitmapEP7_JNIEnvPNS_6BitmapEiP11_jbyteArrayP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap12reinitBitmapEP7_JNIEnvP8_jobjectRK11SkImageInfob);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap8toBitmapEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android76register_com_android_internal_view_animation_NativeInterpolatorFactoryHelperEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16specializeBlobToENS0_8BlobTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob4dataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob5setToEPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob5writeEjPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob7putBlobEjRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9NewObjectEP7_JNIEnvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9NewObjectEP7_JNIEnvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobC2EP7_JNIEnvP8_jobjectj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture12endRecordingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture14beginRecordingEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture16CreateFromStreamEP8SkStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture4drawEPNS_6CanvasE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7PictureC2EO5sk_spI9SkPictureE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7PictureC2EPKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android8getBlockEPvmPhm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android8hardware10fromBinderINS_4hidl4base4V1_05IBaseENS4_8BpHwBaseENS4_8BnHwBaseEEENS_2spIT_EERKNS8_INS0_7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder10onTransactEjRKNS_8hardware6ParcelEPS2_jNSt3__18functionIFvRS2_EEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder15GetNativeBinderEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spINS_15JHwBinderHolderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderC1EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel10getStorageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel19setTransactCallbackENSt3__18functionIFvRNS_8hardware6ParcelEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel4sendEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9NewObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9getParcelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9setParcelEPNS_8hardware6ParcelEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIdEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIhEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIiEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIjEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryItEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIdED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIdED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIhED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIhED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIiED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIiED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIjED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIjED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplItED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplItED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie11onGetBitmapEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie9onGetInfoEPN5Movie4InfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie9onSetTimeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieC2EP8SkStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext10getGpsDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext10hasGpsDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext12getThumbnailEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext12hasThumbnailEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getCaptureTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getOrientationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14hasCaptureTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14hasDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext17getThumbnailWidthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext18getCharacteristicsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext18getThumbnailHeightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext9getResultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK15NinePatchPeeker10getPaddingEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK15NinePatchPeeker21createNinePatchInsetsEP7_JNIEnvf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK16InputStripSource6getIfdEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK16JNICameraContext33isRawImageCallbackBufferAvailableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK17DirectStripSource6getIfdEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo12DetachSocketERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo16RefersToSameFileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK23FileDescriptorWhitelist9IsAllowedERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10AxisHelper13getStyleValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10AxisHelper6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10ListHelper3getEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10ListHelper4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE10do_compareEPKvS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_compareEPKvS6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_compareEPKvS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_compareEPKvS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android15JHwRemoteBinder21getDeathRecipientListEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android15JHwRemoteBinder9getBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11getPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11hasPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11onDuplicateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor7isAtEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor9getLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE10do_destroyEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE12do_constructEPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE15do_move_forwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE16do_move_backwardEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE7do_copyEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIxE8do_splatEPvPKvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob13writeToParcelEPNS_8hardware6ParcelE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob21writeEmbeddedToParcelEPNS_8hardware6ParcelEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob21writeSubBlobsToParcelEPNS_8hardware6ParcelEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4dataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4readEjPvj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4typeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob9getHandleEPj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob9getStringEjPPKNS_8hardware11hidl_stringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture15makePartialCopyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture5widthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture6heightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture9serializeEP9SkWStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9JHwParcel7wasSentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIdEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIhEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIiEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIjEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryItEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEPNS0_6__baseISR_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__112__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_22__unordered_map_hasherIS7_S8_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_S8_NS_8equal_toIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS8_PvEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS4_JS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE6rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE8__rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIN7minikin12MinikinPaintEjEENS_22__unordered_map_hasherIS3_S4_NS2_12LayoutPieces11PaintHasherELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_21piecewise_construct_tENS_5tupleIJRKiEEENSK_IJEEEEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiS3_EEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS4_PvEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE8__rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJNS_4pairIiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIjJRjSF_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE8__rehashEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__114__split_bufferINS_17basic_string_viewIcNS_11char_traitsIcEEEERNS_9allocatorIS4_EEE9push_backEOS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIN7android15ResTable_configENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10shared_ptrIN7minikin14FontCollectionEEEEENS_19__map_value_compareIS7_SC_NS_4lessIS7_EELb1EEENS5_ISC_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISN_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EEiEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISJ_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIS7_JRKNS_4pairIKS7_S7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEENS_21__tree_const_iteratorIS8_SP_iEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEyEENS_19__map_value_compareIS5_S6_NS_4lessIS5_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE12__find_equalIfEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS3_PNS_11__tree_nodeIS3_SD_EEiEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE7destroyEPNS_11__tree_nodeIS3_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIffEENS_19__map_value_compareIfS2_NS_4lessIfEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EEiEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIiJRKNS_4pairIKiS7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEENS_21__tree_const_iteratorIS8_SP_iEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_6vectorIN7android15AudioAttributesENS_9allocatorIS4_EEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiPKcEENS_19__map_value_compareIiS4_NS_4lessIiEELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIifEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiiEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIixEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIyNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIySA_NS_4lessIyEELb1EEENS_9allocatorISA_EEE5eraseENS_21__tree_const_iteratorISA_PNS_11__tree_nodeISA_PvEEiEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIyNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIySA_NS_4lessIyEELb1EEENS_9allocatorISA_EEE7destroyEPNS_11__tree_nodeISA_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SD_EEiEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISF_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIiPNS_11__tree_nodeIiS8_EEiEERPNS_15__tree_end_nodeISA_EESB_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE7destroyEPNS_11__tree_nodeIiPvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI18audio_attributes_tNS_9allocatorIS1_EEEC2ERKS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI19audio_stream_type_tNS_9allocatorIS1_EEEC2ERKS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lj2EEEE24__emplace_back_slow_pathIJS2_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lj2EEEE7reserveEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmyiRA10_KcSB_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRyyS8_RNS_12basic_stringIcNS_11char_traitsIcEENS4_IcEEEESE_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJmRyS8_RPcPKcEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android15AudioAttributesENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android2spINS1_22HwBinderDeathRecipientEEENS_9allocatorIS4_EEE21__push_back_slow_pathIRKS4_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android8graphics6BitmapENS_9allocatorIS3_EEE8__appendEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJjRfEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRS4_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE7reserveEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrI14ScopedUtfCharsNS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_14ReplacementRunENS4_ISB_EEEEEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_8StyleRunENS4_ISB_EEEEEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIRKS6_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIS6_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_17basic_string_viewIcNS_11char_traitsIcEEEENS_9allocatorIS4_EEE6insertENS_11__wrap_iterIPKS4_EEOS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIP13native_handleNS_9allocatorIS2_EEEC2ERKS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIP14ScopedUtfCharsNS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEE21__push_back_slow_pathIS4_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEEC2ERKS7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPKcNS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPN7android10PageRecordENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIcNS_9allocatorIcEEE6assignIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIcNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIRKfEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIfEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE6assignIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKfEES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEEC2ERKS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIRKiEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIiEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE6insertINS_11__wrap_iterIPiEEEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS9_E9referenceEEE5valueES7_E4typeENS5_IPKiEES9_S9_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE6insertIPiEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKiEES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIjEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIjNS_9allocatorIjEEE6assignIPjEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIjNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIjNS_9allocatorIjEEEC2ERKS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__17getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N7android18NativeMessageQueue11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android10InputQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android10InputQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android12MessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android12MessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android22NativeInputEventSenderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android22NativeInputEventSenderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android24JNISurfaceTextureContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android24JNISurfaceTextureContextD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android24NativeInputEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android24NativeInputEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android26NativeDisplayEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android26NativeDisplayEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android9JHwBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n12_N7android9JHwBinderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_fatal_no_abort);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_fatal_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_buffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_buffer_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_fd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_fd_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_log);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_log_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_write_log);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(crypto_scrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(init_android_graphics);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(note_log_drop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(reallocarray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(registerFrameworkNatives);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(register_android_graphics_classes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statd_writer_trylock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(stats_log_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statsd_writer_init_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statsd_writer_init_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(write_buffer_to_statsd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zygote_preload_graphics);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmapConfig_getConfigFromFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmapConfig_getFormatFromConfig);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_acquireBitmapFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_acquireRef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_compress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getInfoFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_notifyPixelsChanged);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_releaseRef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_clipOutRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_clipRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_createCanvas);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_destroyCanvas);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_drawBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_drawRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_getNativeHandleFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_isSupportedPixelFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", AMatrix_getContents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_createPaint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_destroyPaint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_setBlendMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_acquireIterator);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_getRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_getTotalBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_isComplex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_isDone);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_next);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_releaseIterator);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARenderThread_dumpGraphicsMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifCloseFile);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifExtensionToGCB);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetCodeNext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetExtensionNext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetImageDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetLZCodes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetLine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetPixel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetRecordType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetScreenDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpenFileHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpenFileName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifSavedExtensionToGCB);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifSlurp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", FreeLastSavedImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifAddExtensionBlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifApplyTranslation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifBitSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeExtensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeMapObject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeSavedImages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifMakeMapObject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifMakeSavedImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifUnionColorMap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowIAEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowIOEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowISEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowNPEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10error_exitP18jpeg_common_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10getContextx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z11doThrowOOMEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z11getMimeType20SkEncodedImageFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z12checkGlErrorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z13create_jmovieP7_JNIEnvP5Movie);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z13doThrowAIOOBEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z17get_native_cameraP7_JNIEnvP8_jobjectPP16JNICameraContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z19CopyJavaInputStreamP7_JNIEnvP8_jobjectP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z19_set_seccomp_filter10FilterType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z21postProcessAndReleaseP7_JNIEnvP8_jobjectNSt3__110unique_ptrIN7android6CanvasENS3_14default_deleteIS6_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z22get_device_from_objectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z22set_app_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z23getMimeTypeAsJavaStringP7_JNIEnv20SkEncodedImageFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z23get_request_from_objectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25_install_setuidgid_filterjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25android_os_Process_setGidP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25android_os_Process_setUidP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25set_system_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26android_os_Process_getPidsP7_JNIEnvP8_jobjectP8_jstringP10_jintArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26get_exclusive_cpuset_cores11SchedPolicyP9cpu_set_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26register_android_os_BinderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27android_os_Process_setArgV0P7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27register_android_media_midiP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27register_android_os_ProcessP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z28CreateByteArrayStreamAdaptorP7_JNIEnvP11_jbyteArrayjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z28CreateJavaInputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArrayb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29CreateByteBufferStreamAdaptorP7_JNIEnvP8_jobjectjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29CreateJavaOutputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29android_os_Process_sendSignalP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29set_app_zygote_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z31android_os_Process_readProcFileP7_JNIEnvP8_jobjectP8_jstringP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z31register_android_graphics_MovieP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_getGidForNameP7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_getUidForNameP7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_parseProcLineP7_JNIEnvP8_jobjectP11_jbyteArrayiiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_readProcLinesP7_JNIEnvP8_jobjectP8_jstringP13_jobjectArrayP11_jlongArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_setSwappinessP7_JNIEnvP8_jobjectih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32install_setuidgid_seccomp_filterjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_BitmapP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_CameraP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_ShaderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_hardware_CameraP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33android_os_Process_setThreadGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_media_AudioTrackP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_opengl_jni_EGL14P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_opengl_jni_EGL15P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34JHwBinder_native_joinRpcThreadpoolv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_getProcessGroupP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_sendSignalQuietP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_setProcessGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_GraphicsP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_TypefaceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_YuvImageP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_media_AudioRecordP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_media_AudioSystemP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_EGLExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES10P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES11P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES20P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES30P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES31P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES32P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35android_os_Process_killProcessGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35register_android_graphics_NinePatchP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35register_android_hardware_UsbDeviceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Binder_getNativeFinalizerP7_JNIEnvP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_getExclusiveCoresP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_getThreadPriorityP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_setThreadPriorityP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_graphics_MaskFilterP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_graphics_PathEffectP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_hardware_SerialPortP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_hardware_UsbRequestP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_media_ToneGeneratorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_media_getIntConstantFromClassP7_JNIEnvP7_jclassPKcS4_Pi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_getPidsForCommandsP7_JNIEnvP8_jobjectP13_jobjectArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_getThreadSchedulerP7_JNIEnvP7_jclassi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_parseProcLineArrayP7_JNIEnvP8_jobjectPciiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_setThreadSchedulerP7_JNIEnvP7_jclassiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_media_MicrophoneInfoP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES10ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES11ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES31ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38android_media_AudioTrack_getAudioTrackP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_graphics_ImageDecoderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_graphics_InterpolatorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_media_AudioAttributesP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39JHwBinder_native_configureRpcThreadpoolP7_JNIEnvP7_jclassxh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39android_os_Process_setApplicationObjectP7_JNIEnvP8_jobjectS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_graphics_BitmapFactoryP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_graphics_GraphicBufferP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_hardware_SensorManagerP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z40register_android_hardware_HardwareBufferP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z40register_android_media_AudioVolumeGroupsP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41android_os_BinderProxy_getNativeFinalizerP7_JNIEnvP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41android_os_Process_removeAllProcessGroupsP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41register_android_media_AudioDeviceAddressP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z42android_os_Process_setThreadGroupAndCpusetP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z43android_os_Process_setCallingThreadPriorityP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z43register_com_google_android_gles_jni_GLImplP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_android_hardware_camera2_DngCreatorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_android_media_AudioEffectDescriptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_com_google_android_gles_jni_EGLImplP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_graphics_BitmapRegionDecoderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_hardware_UsbDeviceConnectionP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_media_AudioProductStrategiesP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z48register_android_hardware_camera2_CameraMetadataP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z49register_android_graphics_ByteBufferStreamAdaptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z52register_android_media_AudioVolumeGroupChangeHandlerP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z55register_android_graphics_CreateJavaOutputStreamAdaptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z56register_android_graphics_drawable_AnimatedImageDrawableP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z56register_android_hardware_camera2_legacy_PerfMeasurementP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z59register_android_hardware_camera2_legacy_LegacyCameraDeviceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z62register_android_hardware_location_ActivityRecognitionHardwareP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z9doThrowREP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI12createRegionEP7_JNIEnvP8SkRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI12hasExceptionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13getBitmapInfoEP7_JNIEnvP8_jobjectPj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13getColorSpaceEP7_JNIEnvP12SkColorSpace11SkColorType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13jrect_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14irect_to_jrectERK7SkIRectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14jrect_to_irectEP7_JNIEnvP8_jobjectP7SkIRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14jrectf_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14rect_to_jrectfERK6SkRectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeBitmapEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeCanvasEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeRegionEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16convertColorLongEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16ipoint_to_jpointERK8SkIPointP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16isHardwareConfigEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16jpoint_to_ipointEP7_JNIEnvP8_jobjectP8SkIPoint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16jpointf_to_pointEP7_JNIEnvP8_jobjectP7SkPoint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16point_to_jpointfERK7SkPointP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getConfigFromFormatEP7_JNIEnv19AndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getFormatFromConfigEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getNativeColorSpaceEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI24getNativeBitmapColorTypeEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI25createBitmapRegionDecoderEP7_JNIEnvP21SkBitmapRegionDecoder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI26hardwareLegacyBitmapConfigEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI29colorTypeToLegacyBitmapConfigE11SkColorType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI29legacyBitmapConfigToColorTypeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9SetPixelsEP7_JNIEnvP10_jintArrayiiiiiiP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9get_jrectEP7_JNIEnvP8_jobjectPiS4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9set_jrectEP7_JNIEnvP8_jobjectiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13HeapAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext10setGpsDataERK7GpsData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext12setThumbnailEPKhjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setCaptureTimeERKN7android7String8E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setDescriptionERKN7android7String8E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setOrientationEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext9getWriterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextC2ERKN7android14CameraMetadataES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4readEPhjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4skipEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream5writeEPKhjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15NinePatchPeeker5scaleEffii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15NinePatchPeeker9readChunkEPKcPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16AutoJavaIntArrayC2EP7_JNIEnvP10_jintArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16AutoJavaIntArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSource13writeToStreamERN7android9img_utils6OutputEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceC2EP7_JNIEnvRN7android9img_utils5InputEjjjjjyjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext11copyAndPostEP7_JNIEnvRKN7android2spINS2_7IMemoryEEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext12postMetadataEP7_JNIEnviP21camera_frame_metadata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext15setCallbackModeEP7_JNIEnvbb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17addCallbackBufferEP7_JNIEnvP11_jbyteArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17getCallbackBufferEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17postDataTimestampExiRKN7android2spINS0_7IMemoryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext33postRecordingFrameHandleTimestampExP13native_handle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext38postRecordingFrameHandleTimestampBatchERKNSt3__16vectorIxNS0_9allocatorIxEEEERKNS1_IP13native_handleNS2_IS8_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext6notifyEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext7releaseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext8postDataEiRKN7android2spINS0_7IMemoryEEEP21camera_frame_metadata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContextC1EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContextC2EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder21setJpegCompressStructEP20jpeg_compress_structiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder6createEiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder6encodeEP9SkWStreamPviiPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17AutoJavaByteArrayC2EP7_JNIEnvP11_jbyteArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17AutoJavaByteArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSource13writeToStreamERN7android9img_utils6OutputEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceC2EP7_JNIEnvPKhjjjjjyjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaFloatArrayC2EP7_JNIEnvP12_jfloatArrayi9JNIAccess);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaFloatArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaShortArrayC2EP7_JNIEnvP12_jshortArrayi9JNIAccess);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaShortArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList3addERKN7android2spI18JavaDeathRecipientEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList4findEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList4lockEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList6removeERKN7android2spI18JavaDeathRecipientEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfo12CreateFromFdEiRKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfo13GetSocketNameEiPNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfoC2E4statRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiiiil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfoC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer4readEPhjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable14RestatInternalERNSt3__13setIiNS0_4lessIiEENS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS4_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable6CreateERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable6RestatERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable7ParseFdEP6direnti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTableC2ERKNSt3__113unordered_mapIiP18FileDescriptorInfoNS0_4hashIiEENS0_8equal_toIiEENS0_9allocatorINS0_4pairIKiS3_EEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20AshmemPixelAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20AshmemPixelAllocatorC2EP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback13onServiceDiedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback21onAudioPortListUpdateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback22onAudioPatchListUpdateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback9sendEventEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackC2EP7_JNIEnvP8_jobjectS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder12deinterleaveEPhS0_S0_S0_iii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder12deinterleaveEPhS0_S0_iii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN23FileDescriptorWhitelist3GetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN23FileDescriptorWhitelistC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocator15copyIfNecessaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorC2EPN7android6BitmapEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie10DecodeFileEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie10ensureInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie12DecodeMemoryEPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie12DecodeStreamEP18SkStreamRewindable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie5widthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie6bitmapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie6heightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie7setTimeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie8durationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie8isOpaqueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5MovieC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue11createQueueEP8_jobjectRKNS_2spINS_6LooperEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue11finishEventEPNS_10InputEventEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12attachLooperEPNS_6LooperEiPFiiiPvES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12detachLooperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12enqueueEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue13handleMessageERKNS_7MessageE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue14createKeyEventEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue16preDispatchEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue17createMotionEventEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue17recycleInputEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue18detachLooperLockedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue8getEventEPPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue9hasEventsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueC1EP8_jobjectRKNS_2spINS_6LooperEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueC2EP8_jobjectRKNS_2spINS_6LooperEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo14ReadDmaBufInfoEPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEERKNS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo14ReadDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo16AppendDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10getServiceINS_8hardware14ICameraServiceEEEiRKNS_8String16EPNS_2spIT_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10isSeekableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10nativeOpenEP7_JNIEnvP7_jclassix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11BnInterfaceINS_20IRemoteDisplayClientEE10onAsBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11BnInterfaceINS_23IRegionSamplingListenerEE10onAsBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory12javaToNativeEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory16getNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory6toJavaEP7_JNIEnvRKNS_8hardware11hidl_memoryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory8fromJavaEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11nativeCloseEP7_JNIEnvP7_jclassx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueue22raiseAndClearExceptionEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MinikinUtils10forFontRunINS_9PaintGlue14GetTextFunctorEEEvRKN7minikin6LayoutEPNS_5PaintERT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle19MakeCppNativeHandleEP7_JNIEnvP8_jobjectPNS_16EphemeralStorageE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle23MakeJavaNativeHandleObjEP7_JNIEnvPK13native_handle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle29AllocJavaNativeHandleObjArrayEP7_JNIEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime10getRuntimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime11onVmCreatedEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime14parseExtraOptsEPcPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime15NewStringLatin1EP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime15javaThreadShellEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime16createJavaThreadEPKcPFvPvES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime16toSlashClassNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime18parseRuntimeOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime19javaCreateThreadEtcEPFiPvES1_PKcijPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime19parseCompilerOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime26parseCompilerRuntimeOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime4exitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime5startEPKcRKNS_6VectorINS_7String8EEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnvbb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8callMainERKNS_7String8EP7_jclassRKNS_6VectorIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8setArgv0EPKcb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8startRegEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9addOptionEPKcPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9getJNIEnvEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9getJavaVMEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeC2EPcj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14get_env_or_dieEP7_JavaVM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14init_FontUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9NewObjectEP7_JNIEnvRKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9setBinderERKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15MediaMetricsJNI20writeMetricsToBundleEP7_JNIEnvPNS_12mediametrics4ItemEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15MediaMetricsJNI29nativeToJavaPersistableBundleEP7_JNIEnvPNS_2os17PersistableBundleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15getBPNativeDataEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16DeleteScreenshotEPvS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage16allocStringArrayEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage20allocTemporaryStringEP7_JNIEnvP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage21allocTemporaryStorageEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage24allocTemporaryInt8VectorEP7_JNIEnvP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryFloatVectorEP7_JNIEnvP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt16VectorEP7_JNIEnvP12_jshortArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt32VectorEP7_JNIEnvP10_jintArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt64VectorEP7_JNIEnvP11_jlongArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage26allocTemporaryDoubleVectorEP7_JNIEnvP13_jdoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage26allocTemporaryNativeHandleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage7releaseEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorageC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorageD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16nullObjectReturnEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17AutoBufferPointerC2EP7_JNIEnvP8_jobjecth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17AutoBufferPointerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17CopyAssetToStreamEPNS_5AssetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallback19onAudioDeviceUpdateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackC2EP7_JNIEnvP8_jobjectS4_P10_jmethodID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4moveEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4readEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4seekEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor6rewindEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptorC2EPNS_5AssetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannel18setDisposeCallbackEPFvP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPvESA_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannel30invokeAndRemoveDisposeCallbackEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannelC2ERKNS_2spINS_12InputChannelEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannelD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue14raiseExceptionEP7_JNIEnvPKcP11_jthrowable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue23setFileDescriptorEventsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue4wakeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueC1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18forwardPdfiumErrorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18nativeGetPageCountEP7_JNIEnvP7_jclassx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android19parcelForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState11addMovementEPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState11getVelocityEiPfS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState12getEstimatorEiPNS_15VelocityTracker9EstimatorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState22computeCurrentVelocityEif);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerStateC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20ibinderForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20javaObjectForIBinderEP7_JNIEnvRKNS_2spINS_7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20poly_clip_to_frustumEPNS_4PolyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender12sendKeyEventEjPKNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender15sendMotionEventEjPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender22receiveFinishedSignalsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22createJavaParcelObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22nativeScaleForPrintingEP7_JNIEnvP7_jclassx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22poly_clip_to_halfspaceEPNS_4PolyES1_iff);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22validateCanUseHwBinderERKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper10makeUniqueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper12getJavaArrayEP7_JNIEnvPP13_jobjectArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper12nativeToJavaEP7_JNIEnvPP8_jobjectRK18audio_attributes_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper14nativeFromJavaEP7_JNIEnvP8_jobjectP18audio_attributes_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandle10updateInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandle31getInputWindowHandleObjLocalRefEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleC2EP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23newParcelFileDescriptorEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23recycleJavaParcelObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23signalExceptionForErrorEP7_JNIEnvP8_jobjectibi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23signalExceptionForErrorEP7_JNIEnvib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3PKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnviPKcS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserver13getNextBufferEP7_JNIEnvP11_jlongArrayPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserver6notifyEPKx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverC2EP7_JavaVMP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext16onFrameAvailableERKNS_10BufferItemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext9detachJNIEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext9getJNIEnvEPb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextC1EP7_JNIEnvP8_jobjectP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextC2EP7_JNIEnvP8_jobjectP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver11setFdEventsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver13consumeEventsEP7_JNIEnvbxPb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver16finishInputEventEjb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25AssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_os_DebugEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_os_TraceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_util_LogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList3addERKNS_2spINS_22HwBinderDeathRecipientEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList4findEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList4lockEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList6removeERKNS_2spINS_22HwBinderDeathRecipientEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver13dispatchVsyncExyj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver15dispatchHotplugExyb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver21dispatchConfigChangedExyix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26SurfaceTexture_getProducerEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26audioEffectDescriptorClassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26register_android_os_HwBlobEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26register_android_os_ParcelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallback13onServiceDiedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallback25onAudioVolumeGroupChangedENS_14volume_group_tEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackC2EP7_JNIEnvP8_jobjectS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27register_android_os_SELinuxEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandle10updateInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandle36getInputApplicationHandleObjLocalRefEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleC2EP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NdkAssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28register_android_os_HwBinderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28register_android_os_HwParcelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28set_dalvik_blockguard_policyEP7_JNIEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_NativeActivity_finishEP15ANativeActivity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_view_KeyEvent_recycleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_view_PointerIcon_loadEP7_JNIEnvP8_jobjectS3_PNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29register_android_app_ActivityEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29register_android_view_SurfaceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android2spINS_10AudioTrackEEaSEPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android2spINS_11AudioRecordEEaSEPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30AssetManagerForNdkAssetManagerEP13AAssetManager);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30android_view_KeyEvent_toNativeEP7_JNIEnvP8_jobjectPNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_graphics_PathEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_os_HidlMemoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_os_MemoryFileEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_util_EventLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_util_StatsLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_view_KeyEventEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31android_view_InputDevice_createEP7_JNIEnvRKNS_15InputDeviceInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31android_view_Surface_getSurfaceEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31convertMicrophoneInfoFromNativeEP7_JNIEnvPP8_jobjectPKNS_5media14MicrophoneInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_graphics_PaintEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_opengl_classesEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_HidlSupportEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_SystemClockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_VintfObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31throw_sqlite3_exception_errcodeEP7_JNIEnviPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32CameraMetadata_getNativeMetadataEP7_JNIEnvP8_jobjectPNS_14CameraMetadataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32SurfaceTexture_getSurfaceTextureEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32android_view_KeyEvent_fromNativeEP7_JNIEnvPKNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32android_view_MotionEvent_recycleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_CanvasEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_MatrixEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_RegionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_FileObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_MessageQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_NativeHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_SharedMemoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_security_ScryptEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_text_HyphenatorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_util_PathParserEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_view_InputQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_view_RenderNodeEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33android_Configuration_getFromJavaEP7_JNIEnvP8_jobjectP14AConfiguration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33android_view_Surface_isInstanceOfEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_content_XmlBlockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_graphics_PictureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_net_NetworkUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_InputDeviceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_MotionEventEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_PointerIconEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_TextureViewEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34createAudioDeviceAddressFromNativeEP7_JNIEnvPP8_jobjectPKNS_19AudioDeviceTypeAddrE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_os_HwRemoteBinderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_os_UEventObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_view_InputChannelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_view_TextureLayerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_SurfaceTexture_isInstanceOfEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_graphics_Matrix_getSkMatrixEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_view_KeyCharacterMap_createEP7_JNIEnviRKNS_2spINS_15KeyCharacterMapEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_app_ActivityThreadEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_app_NativeActivityEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_media_MediaMetricsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_NativeActivity_hideSoftInputEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_NativeActivity_showSoftInputEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getDeathObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getLocalObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getProxyObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_util_Log_isVerboseLogEnabledEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_view_Surface_getNativeWindowEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_content_StringBlockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_ColorSpaceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_DrawFilterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_FontFamilyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_fonts_FontEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_media_RemoteDisplayEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_net_LocalSocketImplEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_os_SystemPropertiesEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_os_VintfRuntimeInfoEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_util_MemoryIntArrayEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_view_SurfaceControlEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_view_SurfaceSessionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_NativeActivity_setWindowFlagsEP15ANativeActivityii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_MotionEvent_getNativePtrEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_MotionEvent_obtainAsCopyEP7_JNIEnvPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_SurfaceSession_getClientEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_content_AssetManagerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_database_SQLiteDebugEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_graphics_ColorFilterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_graphics_PathMeasureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_view_KeyCharacterMapEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_view_VelocityTrackerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_NativeActivity_setWindowFormatEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_PointerIcon_getLoadedIconEP7_JNIEnvP8_jobjectPNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_PointerIcon_getSystemIconEP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_Surface_createFromSurfaceEP7_JNIEnvRKNS_2spINS_7SurfaceEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38convertAudioEffectDescriptorFromNativeEP7_JNIEnvPP8_jobjectPK19effect_descriptor_s);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_app_admin_SecurityLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_app_backup_FullBackupEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_content_res_ApkAssetsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_database_CursorWindowEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_database_SQLiteGlobalEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_text_AndroidCharacterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_util_StatsLogInternalEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_view_InputEventSenderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_view_ThreadedRendererEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39android_os_MessageQueue_getMessageQueueEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39android_view_PointerIcon_loadSystemIconEP7_JNIEnvP8_jobjectiPNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_backup_BackupDataInputEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_content_res_ObbScannerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_graphics_pdf_PdfEditorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_os_GraphicsEnvironmentEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_util_jar_StrictJarFileEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_view_DisplayListCanvasEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_view_InputWindowHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_com_android_internal_os_ZygoteEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40android_view_InputWindowHandle_getHandleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_backup_BackupDataOutputEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_ddm_DdmHandleNativeHeapEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_graphics_CanvasPropertyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_graphics_SurfaceTextureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_view_InputEventReceiverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_view_RenderNodeAnimatorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41android_view_InputChannel_getInputChannelEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41register_android_graphics_pdf_PdfDocumentEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41register_android_graphics_pdf_PdfRendererEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_content_res_ConfigurationEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_database_SQLiteConnectionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_BLASTBufferQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_fonts_FontFamilyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_text_LineBreakerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_service_DataLoaderServiceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_view_DisplayEventReceiverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android43register_android_graphics_text_MeasuredTextEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android43register_com_android_internal_os_ZygoteInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44android_view_InputChannel_setDisposeCallbackEP7_JNIEnvP8_jobjectPFvS1_S3_RKNS_2spINS_12InputChannelEEEPvES9_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44convertAudioEffectDescriptorVectorFromNativeEP7_JNIEnvPP13_jobjectArrayRKNSt3__16vectorI19effect_descriptor_sNS5_9allocatorIS7_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_android_backup_FileBackupHelperBaseEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_android_view_InputApplicationHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_com_android_internal_os_FuseAppLoopEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_com_android_internal_os_RuntimeInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android45android_view_InputApplicationHandle_getHandleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android46register_android_backup_BackupHelperDispatcherEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android47register_android_animation_PropertyValuesHolderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49android_hardware_display_DisplayViewport_toNativeEP7_JNIEnvP8_jobjectPNS_15DisplayViewportE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_graphics_drawable_VectorDrawableEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_hardware_display_DisplayViewportEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_view_CompositionSamplingListenerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android50register_android_graphics_HardwareRendererObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android50register_android_os_incremental_IncrementalManagerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android51register_com_android_internal_os_ClassLoaderFactoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android52android_hardware_HardwareBuffer_convertToPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android52register_com_android_internal_util_VirtualRefBasePtrEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android53android_view_Surface_createFromIGraphicBufferProducerEP7_JNIEnvRKNS_2spINS_22IGraphicBufferProducerEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android53register_android_server_NetworkManagementSocketTaggerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android54android_graphics_GraphicBuffer_getNativeGraphicsBufferEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android54android_hardware_HardwareBuffer_convertFromPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android55android_hardware_HardwareBuffer_getNativeHardwareBufferEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android56android_graphics_GraphicBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57android_hardware_HardwareBuffer_convertToGrallocUsageBitsEy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57android_hardware_HardwareBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57register_android_graphics_drawable_AnimatedVectorDrawableEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57register_com_android_internal_content_NativeLibraryHelperEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android5vintf9to_stringINS0_13KernelVersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android5vintf9to_stringINS0_7VersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android60register_com_android_internal_os_ZygoteInit_nativeZygoteInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap10toSkBitmapExP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap12createBitmapEP7_JNIEnvPNS_6BitmapEiP11_jbyteArrayP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap12reinitBitmapEP7_JNIEnvP8_jobjectRK11SkImageInfob);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap8toBitmapEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android76register_com_android_internal_view_animation_NativeInterpolatorFactoryHelperEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16specializeBlobToENS0_8BlobTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob4dataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob5setToEPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob5writeEjPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob7putBlobEjRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9NewObjectEP7_JNIEnvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9NewObjectEP7_JNIEnvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobC2EP7_JNIEnvP8_jobjectj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture12endRecordingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture14beginRecordingEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture16CreateFromStreamEP8SkStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture4drawEPNS_6CanvasE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7PictureC2EO5sk_spI9SkPictureE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7PictureC2EPKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android8getBlockEPvmPhm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android8hardware10fromBinderINS_4hidl4base4V1_05IBaseENS4_8BpHwBaseENS4_8BnHwBaseEEENS_2spIT_EERKNS8_INS0_7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder10onTransactEjRKNS_8hardware6ParcelEPS2_jNSt3__18functionIFvRS2_EEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder15GetNativeBinderEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spINS_15JHwBinderHolderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderC1EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel10getStorageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel19setTransactCallbackENSt3__18functionIFvRNS_8hardware6ParcelEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel4sendEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9NewObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9getParcelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9setParcelEPNS_8hardware6ParcelEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIdEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIhEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIiEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIjEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryItEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIdED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIdED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIhED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIhED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIiED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIiED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIjED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIjED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplItED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplItED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie11onGetBitmapEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie9onGetInfoEPN5Movie4InfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie9onSetTimeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieC2EP8SkStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext10getGpsDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext10hasGpsDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext12getThumbnailEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext12hasThumbnailEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getCaptureTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getOrientationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14hasCaptureTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14hasDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext17getThumbnailWidthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext18getCharacteristicsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext18getThumbnailHeightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext9getResultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK15NinePatchPeeker10getPaddingEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK15NinePatchPeeker21createNinePatchInsetsEP7_JNIEnvf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK16InputStripSource6getIfdEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK16JNICameraContext33isRawImageCallbackBufferAvailableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK17DirectStripSource6getIfdEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo12DetachSocketERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo16RefersToSameFileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK23FileDescriptorWhitelist9IsAllowedERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10AxisHelper13getStyleValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10AxisHelper6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10ListHelper3getEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10ListHelper4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE10do_compareEPKvS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_compareEPKvS6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_compareEPKvS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_compareEPKvS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android15JHwRemoteBinder21getDeathRecipientListEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android15JHwRemoteBinder9getBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11getPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11hasPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11onDuplicateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor7isAtEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor9getLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE10do_destroyEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE12do_constructEPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE15do_move_forwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE16do_move_backwardEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE7do_copyEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIxE8do_splatEPvPKvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob13writeToParcelEPNS_8hardware6ParcelE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob21writeEmbeddedToParcelEPNS_8hardware6ParcelEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob21writeSubBlobsToParcelEPNS_8hardware6ParcelEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4dataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4readEjPvj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4typeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob9getHandleEPj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob9getStringEjPPKNS_8hardware11hidl_stringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture15makePartialCopyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture5widthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture6heightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture9serializeEP9SkWStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9JHwParcel7wasSentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIdEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIhEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIiEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIjEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryItEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEPNS0_6__baseISR_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__112__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_22__unordered_map_hasherIS7_S8_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_S8_NS_8equal_toIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS8_PvEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS4_JS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE6rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE8__rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIN7minikin12MinikinPaintEjEENS_22__unordered_map_hasherIS3_S4_NS2_12LayoutPieces11PaintHasherELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_21piecewise_construct_tENS_5tupleIJRKiEEENSK_IJEEEEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiS3_EEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS4_PvEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE8__rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJNS_4pairIiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIjJRjSF_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE8__rehashEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__114__split_bufferINS_17basic_string_viewIcNS_11char_traitsIcEEEERNS_9allocatorIS4_EEE9push_backEOS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIN7android15ResTable_configENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10shared_ptrIN7minikin14FontCollectionEEEEENS_19__map_value_compareIS7_SC_NS_4lessIS7_EELb1EEENS5_ISC_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISN_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EEiEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISJ_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIS7_JRKNS_4pairIKS7_S7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEENS_21__tree_const_iteratorIS8_SP_iEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEyEENS_19__map_value_compareIS5_S6_NS_4lessIS5_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE12__find_equalIfEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS3_PNS_11__tree_nodeIS3_SD_EEiEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE7destroyEPNS_11__tree_nodeIS3_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIffEENS_19__map_value_compareIfS2_NS_4lessIfEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EEiEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIiJRKNS_4pairIKiS7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEEiEENS_21__tree_const_iteratorIS8_SP_iEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_6vectorIN7android15AudioAttributesENS_9allocatorIS4_EEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiPKcEENS_19__map_value_compareIiS4_NS_4lessIiEELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIifEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiiEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIixEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIyNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIySA_NS_4lessIyEELb1EEENS_9allocatorISA_EEE5eraseENS_21__tree_const_iteratorISA_PNS_11__tree_nodeISA_PvEEiEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIyNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareIySA_NS_4lessIyEELb1EEENS_9allocatorISA_EEE7destroyEPNS_11__tree_nodeISA_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SD_EEiEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISF_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIiPNS_11__tree_nodeIiS8_EEiEERPNS_15__tree_end_nodeISA_EESB_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE7destroyEPNS_11__tree_nodeIiPvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI18audio_attributes_tNS_9allocatorIS1_EEEC2ERKS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI19audio_stream_type_tNS_9allocatorIS1_EEEC2ERKS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lj2EEEE24__emplace_back_slow_pathIJS2_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lj2EEEE7reserveEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmyiRA10_KcSB_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRyyS8_RNS_12basic_stringIcNS_11char_traitsIcEENS4_IcEEEESE_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJmRyS8_RPcPKcEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android15AudioAttributesENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android2spINS1_22HwBinderDeathRecipientEEENS_9allocatorIS4_EEE21__push_back_slow_pathIRKS4_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android8graphics6BitmapENS_9allocatorIS3_EEE8__appendEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJjRfEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRS4_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE7reserveEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrI14ScopedUtfCharsNS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_14ReplacementRunENS4_ISB_EEEEEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_8StyleRunENS4_ISB_EEEEEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIRKS6_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIS6_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_17basic_string_viewIcNS_11char_traitsIcEEEENS_9allocatorIS4_EEE6insertENS_11__wrap_iterIPKS4_EEOS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIP13native_handleNS_9allocatorIS2_EEEC2ERKS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIP14ScopedUtfCharsNS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEE21__push_back_slow_pathIS4_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEEC2ERKS7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPKcNS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPN7android10PageRecordENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIcNS_9allocatorIcEEE6assignIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIcNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIRKfEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIfEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE6assignIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKfEES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEEC2ERKS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIRKiEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIiEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE6insertINS_11__wrap_iterIPiEEEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS9_E9referenceEEE5valueES7_E4typeENS5_IPKiEES9_S9_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE6insertIPiEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKiEES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIjEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIjNS_9allocatorIjEEE6assignIPjEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIjNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIjNS_9allocatorIjEEEC2ERKS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__17getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn8_N7android18NativeMessageQueue11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn8_N7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn8_N7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android10InputQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android10InputQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android12MessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android12MessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android22NativeInputEventSenderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android22NativeInputEventSenderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android24JNISurfaceTextureContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android24JNISurfaceTextureContextD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android24NativeInputEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android24NativeInputEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android26NativeDisplayEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android26NativeDisplayEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android9JHwBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n12_N7android9JHwBinderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_fatal_no_abort);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_fatal_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_buffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_buffer_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_fd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_fd_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_log);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_log_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_write_log);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", crypto_scrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", init_android_graphics);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", note_log_drop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", reallocarray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", registerFrameworkNatives);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", register_android_graphics_classes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statd_writer_trylock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", stats_log_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statsd_writer_init_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statsd_writer_init_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", write_buffer_to_statsd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", zygote_preload_graphics);
-}
-// clang-format on
diff --git a/libandroid_runtime/stubs_arm64.cc b/libandroid_runtime/stubs_arm64.cc
deleted file mode 100644
index 667b54e..0000000
--- a/libandroid_runtime/stubs_arm64.cc
+++ /dev/null
@@ -1,2481 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmapConfig_getConfigFromFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmapConfig_getFormatFromConfig);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_acquireBitmapFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_acquireRef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_compress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getInfoFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_getPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_notifyPixelsChanged);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABitmap_releaseRef);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_clipOutRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_clipRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_createCanvas);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_destroyCanvas);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_drawBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_drawRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_getNativeHandleFromJava);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_isSupportedPixelFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACanvas_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMatrix_getContents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_createPaint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_destroyPaint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(APaint_setBlendMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_acquireIterator);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_getRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_getTotalBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_isComplex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_isDone);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_next);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARegionIterator_releaseIterator);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ARenderThread_dumpGraphicsMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifCloseFile);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifExtensionToGCB);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetCodeNext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetExtensionNext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetImageDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetLZCodes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetLine);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetPixel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetRecordType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifGetScreenDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpen);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpenFileHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifOpenFileName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifSavedExtensionToGCB);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(DGifSlurp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(FreeLastSavedImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifAddExtensionBlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifApplyTranslation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifBitSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeExtensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeMapObject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifFreeSavedImages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifMakeMapObject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifMakeSavedImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(GifUnionColorMap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowIAEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowIOEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowISEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10doThrowNPEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10error_exitP18jpeg_common_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z10getContextl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z11doThrowOOMEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z11getMimeType20SkEncodedImageFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z12checkGlErrorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13create_jmovieP7_JNIEnvP5Movie);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z13doThrowAIOOBEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z17get_native_cameraP7_JNIEnvP8_jobjectPP16JNICameraContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z19CopyJavaInputStreamP7_JNIEnvP8_jobjectP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z19_set_seccomp_filter10FilterType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z21postProcessAndReleaseP7_JNIEnvP8_jobjectNSt3__110unique_ptrIN7android6CanvasENS3_14default_deleteIS6_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z22get_device_from_objectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z22set_app_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z23getMimeTypeAsJavaStringP7_JNIEnv20SkEncodedImageFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z23get_request_from_objectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25_install_setuidgid_filterjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25android_os_Process_setGidP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25android_os_Process_setUidP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z25set_system_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26android_os_Process_getPidsP7_JNIEnvP8_jobjectP8_jstringP10_jintArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26get_exclusive_cpuset_cores11SchedPolicyP9cpu_set_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z26register_android_os_BinderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27android_os_Process_setArgV0P7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27register_android_media_midiP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z27register_android_os_ProcessP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z28CreateByteArrayStreamAdaptorP7_JNIEnvP11_jbyteArraymm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z28CreateJavaInputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArrayb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29CreateByteBufferStreamAdaptorP7_JNIEnvP8_jobjectmm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29CreateJavaOutputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29android_os_Process_sendSignalP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z29set_app_zygote_seccomp_filterv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z31android_os_Process_readProcFileP7_JNIEnvP8_jobjectP8_jstringP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z31register_android_graphics_MovieP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_getGidForNameP7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_getUidForNameP7_JNIEnvP8_jobjectP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_parseProcLineP7_JNIEnvP8_jobjectP11_jbyteArrayiiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_readProcLinesP7_JNIEnvP8_jobjectP8_jstringP13_jobjectArrayP11_jlongArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32android_os_Process_setSwappinessP7_JNIEnvP8_jobjectih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32install_setuidgid_seccomp_filterjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_BitmapP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_CameraP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_graphics_ShaderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z32register_android_hardware_CameraP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33android_os_Process_setThreadGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_media_AudioTrackP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_opengl_jni_EGL14P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33register_android_opengl_jni_EGL15P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34JHwBinder_native_joinRpcThreadpoolv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_getProcessGroupP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_sendSignalQuietP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34android_os_Process_setProcessGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_GraphicsP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_TypefaceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_graphics_YuvImageP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_media_AudioRecordP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_media_AudioSystemP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_EGLExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES10P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES11P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES20P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES30P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES31P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34register_android_opengl_jni_GLES32P7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35android_os_Process_killProcessGroupP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35register_android_graphics_NinePatchP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z35register_android_hardware_UsbDeviceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Binder_getNativeFinalizerP7_JNIEnvP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_getExclusiveCoresP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_getThreadPriorityP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36android_os_Process_setThreadPriorityP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_graphics_MaskFilterP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_graphics_PathEffectP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_hardware_SerialPortP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_hardware_UsbRequestP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z36register_android_media_ToneGeneratorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_media_getIntConstantFromClassP7_JNIEnvP7_jclassPKcS4_Pi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_getPidsForCommandsP7_JNIEnvP8_jobjectP13_jobjectArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_getThreadSchedulerP7_JNIEnvP7_jclassi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_parseProcLineArrayP7_JNIEnvP8_jobjectPciiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37android_os_Process_setThreadSchedulerP7_JNIEnvP7_jclassiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_media_MicrophoneInfoP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES10ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES11ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z37register_android_opengl_jni_GLES31ExtP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38android_media_AudioTrack_getAudioTrackP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_graphics_ImageDecoderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_graphics_InterpolatorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z38register_android_media_AudioAttributesP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39JHwBinder_native_configureRpcThreadpoolP7_JNIEnvP7_jclasslh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39android_os_Process_setApplicationObjectP7_JNIEnvP8_jobjectS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_graphics_BitmapFactoryP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_graphics_GraphicBufferP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z39register_android_hardware_SensorManagerP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z40register_android_hardware_HardwareBufferP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z40register_android_media_AudioVolumeGroupsP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41android_os_BinderProxy_getNativeFinalizerP7_JNIEnvP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41android_os_Process_removeAllProcessGroupsP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z41register_android_media_AudioDeviceAddressP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z42android_os_Process_setThreadGroupAndCpusetP7_JNIEnvP8_jobjectii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z43android_os_Process_setCallingThreadPriorityP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z43register_com_google_android_gles_jni_GLImplP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_android_hardware_camera2_DngCreatorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_android_media_AudioEffectDescriptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z44register_com_google_android_gles_jni_EGLImplP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_graphics_BitmapRegionDecoderP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_hardware_UsbDeviceConnectionP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z45register_android_media_AudioProductStrategiesP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z48register_android_hardware_camera2_CameraMetadataP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z49register_android_graphics_ByteBufferStreamAdaptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z52register_android_media_AudioVolumeGroupChangeHandlerP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z55register_android_graphics_CreateJavaOutputStreamAdaptorP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z56register_android_graphics_drawable_AnimatedImageDrawableP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z56register_android_hardware_camera2_legacy_PerfMeasurementP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z59register_android_hardware_camera2_legacy_LegacyCameraDeviceP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z62register_android_hardware_location_ActivityRecognitionHardwareP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z9doThrowREP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI12createRegionEP7_JNIEnvP8SkRegion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI12hasExceptionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13getBitmapInfoEP7_JNIEnvP8_jobjectPj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13getColorSpaceEP7_JNIEnvP12SkColorSpace11SkColorType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI13jrect_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14irect_to_jrectERK7SkIRectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14jrect_to_irectEP7_JNIEnvP8_jobjectP7SkIRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14jrectf_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI14rect_to_jrectfERK6SkRectP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeBitmapEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeCanvasEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI15getNativeRegionEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16convertColorLongEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16ipoint_to_jpointERK8SkIPointP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16isHardwareConfigEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16jpoint_to_ipointEP7_JNIEnvP8_jobjectP8SkIPoint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16jpointf_to_pointEP7_JNIEnvP8_jobjectP7SkPoint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI16point_to_jpointfERK7SkPointP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getConfigFromFormatEP7_JNIEnv19AndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getFormatFromConfigEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI19getNativeColorSpaceEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI24getNativeBitmapColorTypeEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI25createBitmapRegionDecoderEP7_JNIEnvP21SkBitmapRegionDecoder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI26hardwareLegacyBitmapConfigEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI29colorTypeToLegacyBitmapConfigE11SkColorType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI29legacyBitmapConfigToColorTypeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9SetPixelsEP7_JNIEnvP10_jintArrayiiiiiiP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9get_jrectEP7_JNIEnvP8_jobjectPiS4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN11GraphicsJNI9set_jrectEP7_JNIEnvP8_jobjectiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13HeapAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext10setGpsDataERK7GpsData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext12setThumbnailEPKhjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setCaptureTimeERKN7android7String8E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setDescriptionERKN7android7String8E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext14setOrientationEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContext9getWriterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextC2ERKN7android14CameraMetadataES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13NativeContextD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4readEPhmm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream4skipEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStream5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN14JniInputStreamD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStream5writeEPKhmm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15JniOutputStreamD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15NinePatchPeeker5scaleEffii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN15NinePatchPeeker9readChunkEPKcPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16AutoJavaIntArrayC2EP7_JNIEnvP10_jintArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16AutoJavaIntArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSource13writeToStreamERN7android9img_utils6OutputEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceC2EP7_JNIEnvRN7android9img_utils5InputEjjjjjmjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16InputStripSourceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext11copyAndPostEP7_JNIEnvRKN7android2spINS2_7IMemoryEEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext12postMetadataEP7_JNIEnviP21camera_frame_metadata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext15setCallbackModeEP7_JNIEnvbb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17addCallbackBufferEP7_JNIEnvP11_jbyteArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17getCallbackBufferEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext17postDataTimestampEliRKN7android2spINS0_7IMemoryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext33postRecordingFrameHandleTimestampElP13native_handle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext38postRecordingFrameHandleTimestampBatchERKNSt3__16vectorIlNS0_9allocatorIlEEEERKNS1_IP13native_handleNS2_IS8_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext6notifyEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext7releaseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContext8postDataEiRKN7android2spINS0_7IMemoryEEEP21camera_frame_metadata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContextC1EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16JNICameraContextC2EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder21setJpegCompressStructEP20jpeg_compress_structiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder6createEiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoder6encodeEP9SkWStreamPviiPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN16YuvToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17AutoJavaByteArrayC2EP7_JNIEnvP11_jbyteArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17AutoJavaByteArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSource13writeToStreamERN7android9img_utils6OutputEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceC2EP7_JNIEnvPKhjjjjjmjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17DirectStripSourceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaFloatArrayC2EP7_JNIEnvP12_jfloatArrayi9JNIAccess);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaFloatArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaShortArrayC2EP7_JNIEnvP12_jshortArrayi9JNIAccess);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18AutoJavaShortArrayD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList3addERKN7android2spI18JavaDeathRecipientEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList4findEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList4lockEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientList6removeERKN7android2spI18JavaDeathRecipientEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18DeathRecipientListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfo12CreateFromFdEiRKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfo13GetSocketNameEiPNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfoC2E4statRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiiiil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18FileDescriptorInfoC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer4openEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer4readEPhmm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBuffer5closeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN18JniInputByteBufferD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable14RestatInternalERNSt3__13setIiNS0_4lessIiEENS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS4_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable6CreateERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable6RestatERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTable7ParseFdEP6direnti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN19FileDescriptorTableC2ERKNSt3__113unordered_mapIiP18FileDescriptorInfoNS0_4hashIiEENS0_8equal_toIiEENS0_9allocatorINS0_4pairIKiS3_EEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20AshmemPixelAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20AshmemPixelAllocatorC2EP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback13onServiceDiedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback21onAudioPortListUpdateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback22onAudioPatchListUpdateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallback9sendEventEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackC2EP7_JNIEnvP8_jobjectS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20JNIAudioPortCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder12deinterleaveEPhS0_S0_S0_iii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN20Yuv422IToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder12deinterleaveEPhS0_S0_iii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN21Yuv420SpToJpegEncoderC2EPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN23FileDescriptorWhitelist3GetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN23FileDescriptorWhitelistC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocator13allocPixelRefEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocator15copyIfNecessaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorC2EPN7android6BitmapEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN31RecyclingClippingPixelAllocatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie10DecodeFileEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie10ensureInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie12DecodeMemoryEPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie12DecodeStreamEP18SkStreamRewindable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie5widthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie6bitmapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie6heightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie7setTimeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie8durationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5Movie8isOpaqueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN5MovieC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue11createQueueEP8_jobjectRKNS_2spINS_6LooperEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue11finishEventEPNS_10InputEventEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12attachLooperEPNS_6LooperEiPFiiiPvES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12detachLooperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue12enqueueEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue13handleMessageERKNS_7MessageE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue14createKeyEventEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue16preDispatchEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue17createMotionEventEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue17recycleInputEventEPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue18detachLooperLockedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue8getEventEPPNS_10InputEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueue9hasEventsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueC1EP8_jobjectRKNS_2spINS_6LooperEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueC2EP8_jobjectRKNS_2spINS_6LooperEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10InputQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo14ReadDmaBufInfoEPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEERKNS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo14ReadDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10dmabufinfo16AppendDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10getServiceINS_8hardware14ICameraServiceEEEiRKNS_8String16EPNS_2spIT_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10isSeekableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android10nativeOpenEP7_JNIEnvP7_jclassil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11BnInterfaceINS_20IRemoteDisplayClientEE10onAsBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11BnInterfaceINS_23IRegionSamplingListenerEE10onAsBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory12javaToNativeEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory16getNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory6toJavaEP7_JNIEnvRKNS_8hardware11hidl_memoryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemory8fromJavaEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11JHidlMemoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android11nativeCloseEP7_JNIEnvP7_jclassl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueue22raiseAndClearExceptionEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MessageQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android12MinikinUtils10forFontRunINS_9PaintGlue14GetTextFunctorEEEvRKN7minikin6LayoutEPNS_5PaintERT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle19MakeCppNativeHandleEP7_JNIEnvP8_jobjectPNS_16EphemeralStorageE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle23MakeJavaNativeHandleObjEP7_JNIEnvPK13native_handle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android13JNativeHandle29AllocJavaNativeHandleObjArrayEP7_JNIEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime10getRuntimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime11onVmCreatedEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime14parseExtraOptsEPcPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime15NewStringLatin1EP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime15javaThreadShellEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime16createJavaThreadEPKcPFvPvES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime16toSlashClassNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime18parseRuntimeOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime19javaCreateThreadEtcEPFiPvES1_PKcimPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime19parseCompilerOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime26parseCompilerRuntimeOptionEPKcPcS2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime4exitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime5startEPKcRKNS_6VectorINS_7String8EEEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnvbb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8callMainERKNS_7String8EP7_jclassRKNS_6VectorIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8setArgv0EPKcb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime8startRegEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9addOptionEPKcPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9getJNIEnvEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntime9getJavaVMEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeC2EPcm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14AndroidRuntimeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14get_env_or_dieEP7_JavaVM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android14init_FontUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9NewObjectEP7_JNIEnvRKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinder9setBinderERKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15JHwRemoteBinderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15MediaMetricsJNI20writeMetricsToBundleEP7_JNIEnvPNS_12mediametrics4ItemEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15MediaMetricsJNI29nativeToJavaPersistableBundleEP7_JNIEnvPNS_2os17PersistableBundleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android15getBPNativeDataEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16DeleteScreenshotEPvS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage16allocStringArrayEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage20allocTemporaryStringEP7_JNIEnvP8_jstring);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage21allocTemporaryStorageEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage24allocTemporaryInt8VectorEP7_JNIEnvP11_jbyteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryFloatVectorEP7_JNIEnvP12_jfloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt16VectorEP7_JNIEnvP12_jshortArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt32VectorEP7_JNIEnvP10_jintArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage25allocTemporaryInt64VectorEP7_JNIEnvP11_jlongArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage26allocTemporaryDoubleVectorEP7_JNIEnvP13_jdoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage26allocTemporaryNativeHandleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorage7releaseEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorageC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16EphemeralStorageD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android16nullObjectReturnEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17AutoBufferPointerC2EP7_JNIEnvP8_jobjecth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17AutoBufferPointerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17CopyAssetToStreamEPNS_5AssetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallback19onAudioDeviceUpdateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackC2EP7_JNIEnvP8_jobjectS4_P10_jmethodID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17JNIDeviceCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4moveEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4readEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor4seekEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptor6rewindEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18AssetStreamAdaptorC2EPNS_5AssetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannel18setDisposeCallbackEPFvP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPvESA_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannel30invokeAndRemoveDisposeCallbackEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannelC2ERKNS_2spINS_12InputChannelEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeInputChannelD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue14raiseExceptionEP7_JNIEnvPKcP11_jthrowable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue23setFileDescriptorEventsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue4wakeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueC1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18NativeMessageQueueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18forwardPdfiumErrorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android18nativeGetPageCountEP7_JNIEnvP7_jclassl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19parcelForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState11addMovementEPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState11getVelocityEiPfS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState12getEstimatorEiPNS_15VelocityTracker9EstimatorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState22computeCurrentVelocityEif);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerState5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20VelocityTrackerStateC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20ibinderForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20javaObjectForIBinderEP7_JNIEnvRKNS_2spINS_7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20poly_clip_to_frustumEPNS_4PolyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender12sendKeyEventEjPKNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender15sendMotionEventEjPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender22receiveFinishedSignalsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSender7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22NativeInputEventSenderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22createJavaParcelObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22nativeScaleForPrintingEP7_JNIEnvP7_jclassl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22poly_clip_to_halfspaceEPNS_4PolyES1_iff);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android22validateCanUseHwBinderERKNS_2spINS_8hardware7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper10makeUniqueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper12getJavaArrayEP7_JNIEnvPP13_jobjectArrayi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper12nativeToJavaEP7_JNIEnvPP8_jobjectRK18audio_attributes_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23JNIAudioAttributeHelper14nativeFromJavaEP7_JNIEnvP8_jobjectP18audio_attributes_t);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandle10updateInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandle31getInputWindowHandleObjLocalRefEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleC2EP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23NativeInputWindowHandleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23newParcelFileDescriptorEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23recycleJavaParcelObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23signalExceptionForErrorEP7_JNIEnvP8_jobjectibi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23signalExceptionForErrorEP7_JNIEnvib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3PKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android23throw_sqlite3_exceptionEP7_JNIEnviPKcS3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserver13getNextBufferEP7_JNIEnvP11_jlongArrayPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserver6notifyEPKl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverC2EP7_JavaVMP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24HardwareRendererObserverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext16onFrameAvailableERKNS_10BufferItemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext9detachJNIEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContext9getJNIEnvEPb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextC1EP7_JNIEnvP8_jobjectP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextC2EP7_JNIEnvP8_jobjectP7_jclass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24JNISurfaceTextureContextD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver11setFdEventsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver13consumeEventsEP7_JNIEnvblPb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver16finishInputEventEjb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiver7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android24NativeInputEventReceiverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25AssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_os_DebugEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_os_TraceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android25register_android_util_LogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList3addERKNS_2spINS_22HwBinderDeathRecipientEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList4findEP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList4lockEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientList6removeERKNS_2spINS_22HwBinderDeathRecipientEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26HwBinderDeathRecipientListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver13dispatchVsyncElmj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver15dispatchHotplugElmb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver21dispatchConfigChangedElmil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiver7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26NativeDisplayEventReceiverD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26SurfaceTexture_getProducerEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26audioEffectDescriptorClassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26register_android_os_HwBlobEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android26register_android_os_ParcelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallback13onServiceDiedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallback25onAudioVolumeGroupChangedENS_14volume_group_tEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackC2EP7_JNIEnvP8_jobjectS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27JNIAudioVolumeGroupCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android27register_android_os_SELinuxEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandle10updateInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandle36getInputApplicationHandleObjLocalRefEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleC2EP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NativeInputApplicationHandleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28NdkAssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28register_android_os_HwBinderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28register_android_os_HwParcelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android28set_dalvik_blockguard_policyEP7_JNIEnvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_NativeActivity_finishEP15ANativeActivity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_view_KeyEvent_recycleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29android_view_PointerIcon_loadEP7_JNIEnvP8_jobjectS3_PNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29register_android_app_ActivityEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android29register_android_view_SurfaceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android2spINS_10AudioTrackEEaSEPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android2spINS_11AudioRecordEEaSEPS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30AssetManagerForNdkAssetManagerEP13AAssetManager);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30android_view_KeyEvent_toNativeEP7_JNIEnvP8_jobjectPNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_graphics_PathEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_os_HidlMemoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_os_MemoryFileEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_util_EventLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_util_StatsLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android30register_android_view_KeyEventEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31android_view_InputDevice_createEP7_JNIEnvRKNS_15InputDeviceInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31android_view_Surface_getSurfaceEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31convertMicrophoneInfoFromNativeEP7_JNIEnvPP8_jobjectPKNS_5media14MicrophoneInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_graphics_PaintEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_opengl_classesEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_HidlSupportEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_SystemClockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31register_android_os_VintfObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android31throw_sqlite3_exception_errcodeEP7_JNIEnviPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32CameraMetadata_getNativeMetadataEP7_JNIEnvP8_jobjectPNS_14CameraMetadataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32SurfaceTexture_getSurfaceTextureEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32android_view_KeyEvent_fromNativeEP7_JNIEnvPKNS_8KeyEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32android_view_MotionEvent_recycleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_CanvasEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_MatrixEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_graphics_RegionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_FileObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_MessageQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_NativeHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_os_SharedMemoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_security_ScryptEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_text_HyphenatorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_util_PathParserEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_view_InputQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32register_android_view_RenderNodeEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33android_Configuration_getFromJavaEP7_JNIEnvP8_jobjectP14AConfiguration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33android_view_Surface_isInstanceOfEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_content_XmlBlockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_graphics_PictureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_net_NetworkUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_InputDeviceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_MotionEventEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_PointerIconEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android33register_android_view_TextureViewEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34createAudioDeviceAddressFromNativeEP7_JNIEnvPP8_jobjectPKNS_19AudioDeviceTypeAddrE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_os_HwRemoteBinderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_os_UEventObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_view_InputChannelEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34register_android_view_TextureLayerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_SurfaceTexture_isInstanceOfEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_graphics_Matrix_getSkMatrixEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35android_view_KeyCharacterMap_createEP7_JNIEnviRKNS_2spINS_15KeyCharacterMapEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_app_ActivityThreadEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_app_NativeActivityEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android35register_android_media_MediaMetricsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_NativeActivity_hideSoftInputEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_NativeActivity_showSoftInputEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getDeathObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getLocalObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_os_Debug_getProxyObjectCountEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_util_Log_isVerboseLogEnabledEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36android_view_Surface_getNativeWindowEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_content_StringBlockEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_ColorSpaceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_DrawFilterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_FontFamilyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_graphics_fonts_FontEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_media_RemoteDisplayEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_net_LocalSocketImplEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_os_SystemPropertiesEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_os_VintfRuntimeInfoEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_util_MemoryIntArrayEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_view_SurfaceControlEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36register_android_view_SurfaceSessionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_NativeActivity_setWindowFlagsEP15ANativeActivityii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_MotionEvent_getNativePtrEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_MotionEvent_obtainAsCopyEP7_JNIEnvPKNS_11MotionEventE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37android_view_SurfaceSession_getClientEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_content_AssetManagerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_database_SQLiteDebugEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_graphics_ColorFilterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_graphics_PathMeasureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_view_KeyCharacterMapEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android37register_android_view_VelocityTrackerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_NativeActivity_setWindowFormatEP15ANativeActivityi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_PointerIcon_getLoadedIconEP7_JNIEnvP8_jobjectPNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_PointerIcon_getSystemIconEP7_JNIEnvP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38android_view_Surface_createFromSurfaceEP7_JNIEnvRKNS_2spINS_7SurfaceEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38convertAudioEffectDescriptorFromNativeEP7_JNIEnvPP8_jobjectPK19effect_descriptor_s);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_app_admin_SecurityLogEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_app_backup_FullBackupEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_content_res_ApkAssetsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_database_CursorWindowEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_database_SQLiteGlobalEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_text_AndroidCharacterEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_util_StatsLogInternalEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_view_InputEventSenderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38register_android_view_ThreadedRendererEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39android_os_MessageQueue_getMessageQueueEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39android_view_PointerIcon_loadSystemIconEP7_JNIEnvP8_jobjectiPNS_11PointerIconE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_backup_BackupDataInputEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_content_res_ObbScannerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_graphics_pdf_PdfEditorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_os_GraphicsEnvironmentEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_util_jar_StrictJarFileEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_view_DisplayListCanvasEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_android_view_InputWindowHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android39register_com_android_internal_os_ZygoteEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40android_view_InputWindowHandle_getHandleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_backup_BackupDataOutputEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_ddm_DdmHandleNativeHeapEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_graphics_CanvasPropertyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_graphics_SurfaceTextureEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_view_InputEventReceiverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android40register_android_view_RenderNodeAnimatorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41android_view_InputChannel_getInputChannelEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41register_android_graphics_pdf_PdfDocumentEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41register_android_graphics_pdf_PdfRendererEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_content_res_ConfigurationEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_database_SQLiteConnectionEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_BLASTBufferQueueEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_fonts_FontFamilyEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_graphics_text_LineBreakerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_service_DataLoaderServiceEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android42register_android_view_DisplayEventReceiverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43register_android_graphics_text_MeasuredTextEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43register_com_android_internal_os_ZygoteInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44android_view_InputChannel_setDisposeCallbackEP7_JNIEnvP8_jobjectPFvS1_S3_RKNS_2spINS_12InputChannelEEEPvES9_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44convertAudioEffectDescriptorVectorFromNativeEP7_JNIEnvPP13_jobjectArrayRKNSt3__16vectorI19effect_descriptor_sNS5_9allocatorIS7_EEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_android_backup_FileBackupHelperBaseEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_android_view_InputApplicationHandleEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_com_android_internal_os_FuseAppLoopEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android44register_com_android_internal_os_RuntimeInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android45android_view_InputApplicationHandle_getHandleEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android46register_android_backup_BackupHelperDispatcherEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android47register_android_animation_PropertyValuesHolderEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49android_hardware_display_DisplayViewport_toNativeEP7_JNIEnvP8_jobjectPNS_15DisplayViewportE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_graphics_drawable_VectorDrawableEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_hardware_display_DisplayViewportEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android49register_android_view_CompositionSamplingListenerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android50register_android_graphics_HardwareRendererObserverEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android50register_android_os_incremental_IncrementalManagerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android51register_com_android_internal_os_ClassLoaderFactoryEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android52android_hardware_HardwareBuffer_convertToPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android52register_com_android_internal_util_VirtualRefBasePtrEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android53android_view_Surface_createFromIGraphicBufferProducerEP7_JNIEnvRKNS_2spINS_22IGraphicBufferProducerEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android53register_android_server_NetworkManagementSocketTaggerEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android54android_graphics_GraphicBuffer_getNativeGraphicsBufferEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android54android_hardware_HardwareBuffer_convertFromPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android55android_hardware_HardwareBuffer_getNativeHardwareBufferEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android56android_graphics_GraphicBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57android_hardware_HardwareBuffer_convertToGrallocUsageBitsEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57android_hardware_HardwareBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57register_android_graphics_drawable_AnimatedVectorDrawableEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android57register_com_android_internal_content_NativeLibraryHelperEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android5vintf9to_stringINS0_13KernelVersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android5vintf9to_stringINS0_7VersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android60register_com_android_internal_os_ZygoteInit_nativeZygoteInitEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap10toSkBitmapElP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap12createBitmapEP7_JNIEnvPNS_6BitmapEiP11_jbyteArrayP8_jobjecti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap12reinitBitmapEP7_JNIEnvP8_jobjectRK11SkImageInfob);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android6bitmap8toBitmapEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android76register_com_android_internal_view_animation_NativeInterpolatorFactoryHelperEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob16specializeBlobToENS0_8BlobTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob4dataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob5setToEPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob5writeEmPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob7putBlobEmRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9NewObjectEP7_JNIEnvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlob9NewObjectEP7_JNIEnvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobC2EP7_JNIEnvP8_jobjectm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7JHwBlobD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture12endRecordingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture14beginRecordingEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture16CreateFromStreamEP8SkStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7Picture4drawEPNS_6CanvasE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7PictureC2EO5sk_spI9SkPictureE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android7PictureC2EPKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android8getBlockEPvmPhm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android8hardware10fromBinderINS_4hidl4base4V1_05IBaseENS4_8BpHwBaseENS4_8BnHwBaseEEENS_2spIT_EERKNS8_INS0_7IBinderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder10onTransactEjRKNS_8hardware6ParcelEPS2_jNSt3__18functionIFvRS2_EEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder15GetNativeBinderEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spINS_15JHwBinderHolderEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinder9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderC1EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwBinderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel10getStorageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel16GetNativeContextEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel19setTransactCallbackENSt3__18functionIFvRNS_8hardware6ParcelEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel4sendEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9InitClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9NewObjectEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9getParcelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcel9setParcelEPNS_8hardware6ParcelEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelC2EP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9JHwParcelD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIdEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIhEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIiEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryIjEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils10TiffWriter8addEntryItEEitjPKT_j);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIdED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIdED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIhED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIhED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIiED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIiED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIjED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplIjED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplItED0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android9img_utils13TiffEntryImplItED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie11onGetBitmapEP8SkBitmap);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie9onGetInfoEPN5Movie4InfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovie9onSetTimeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieC2EP8SkStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN8GIFMovieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext10getGpsDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext10hasGpsDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext12getThumbnailEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext12hasThumbnailEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getCaptureTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14getOrientationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14hasCaptureTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext14hasDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext17getThumbnailWidthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext18getCharacteristicsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext18getThumbnailHeightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK13NativeContext9getResultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK15NinePatchPeeker10getPaddingEP7_JNIEnvP8_jobject);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK15NinePatchPeeker21createNinePatchInsetsEP7_JNIEnvf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK16InputStripSource6getIfdEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK16JNICameraContext33isRawImageCallbackBufferAvailableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK17DirectStripSource6getIfdEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo12DetachSocketERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK18FileDescriptorInfo16RefersToSameFileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK23FileDescriptorWhitelist9IsAllowedERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10AxisHelper13getStyleValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10AxisHelper6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10ListHelper3getEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android10ListHelper4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE10do_compareEPKvS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_12DisplayStateEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_compareEPKvS6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_compareEPKvS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP26audiotrack_callback_cookieE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_compareEPKvS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android12SortedVectorIP27audiorecord_callback_cookieE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android15JHwRemoteBinder21getDeathRecipientListEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android15JHwRemoteBinder9getBinderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11getPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11hasPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor11onDuplicateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor7isAtEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android18AssetStreamAdaptor9getLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorI12JavaVMOptionE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_11DisplayInfoEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_13PointerCoordsEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16EphemeralStorage4ItemEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_17PointerPropertiesEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_19AudioDeviceTypeAddrEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_22AudioMixMatchCriterionEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_6SensorEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7JHwBlob8BlobInfoEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_7String8EE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8AudioMixEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8KeyEventEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP11_jbyteArrayE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIP14ScopedUtfCharsE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_10InputEventEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_6LooperEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIPNS_9img_utils11StripSourceEE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIdE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIfE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIhE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIiE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIjE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorIlE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE10do_destroyEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE12do_constructEPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE15do_move_forwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE16do_move_backwardEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE7do_copyEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android6VectorItE8do_splatEPvPKvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob13writeToParcelEPNS_8hardware6ParcelE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob21writeEmbeddedToParcelEPNS_8hardware6ParcelEmm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob21writeSubBlobsToParcelEPNS_8hardware6ParcelEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4dataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4readEmPvm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob4typeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob9getHandleEPm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7JHwBlob9getStringEmPPKNS_8hardware11hidl_stringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture15makePartialCopyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture5widthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture6heightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android7Picture9serializeEP9SkWStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9JHwParcel7wasSentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIdEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIhEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIiEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryIjEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils10TiffWriter10buildEntryItEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIdE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIhE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIiE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplIjE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE12writeTagInfoEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE13getDataHelperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE13getEndiannessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE18getComparableValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE6getTagEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android9img_utils13TiffEntryImplItE9writeDataEjPNS0_12EndianOutputE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEPNS0_6__baseISR_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__112__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_22__unordered_map_hasherIS7_S8_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_S8_NS_8equal_toIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS8_PvEEEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE18destroy_deallocateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7destroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EEclEOSE_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS4_JS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE6rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE8__rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIN7minikin12MinikinPaintEjEENS_22__unordered_map_hasherIS3_S4_NS2_12LayoutPieces11PaintHasherELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_21piecewise_construct_tENS_5tupleIJRKiEEENSK_IJEEEEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiS3_EEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS4_PvEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE8__rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJNS_4pairIiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIjJRjSF_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE8__rehashEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__114__split_bufferINS_17basic_string_viewIcNS_11char_traitsIcEEEERNS_9allocatorIS4_EEE9push_backEOS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIN7android15ResTable_configENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10shared_ptrIN7minikin14FontCollectionEEEEENS_19__map_value_compareIS7_SC_NS_4lessIS7_EELb1EEENS5_ISC_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISN_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EElEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISJ_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIS7_JRKNS_4pairIKS7_S7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEENS_21__tree_const_iteratorIS8_SP_lEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEmEENS_19__map_value_compareIS5_S6_NS_4lessIS5_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE12__find_equalIfEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS3_PNS_11__tree_nodeIS3_SD_EElEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE7destroyEPNS_11__tree_nodeIS3_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIffEENS_19__map_value_compareIfS2_NS_4lessIfEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EElEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIiJRKNS_4pairIKiS7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEENS_21__tree_const_iteratorIS8_SP_lEERKT_DpOT0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiNS_6vectorIN7android15AudioAttributesENS_9allocatorIS4_EEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiPKcEENS_19__map_value_compareIiS4_NS_4lessIiEELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIifEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIiiEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeIilEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeImNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareImSA_NS_4lessImEELb1EEENS_9allocatorISA_EEE5eraseENS_21__tree_const_iteratorISA_PNS_11__tree_nodeISA_PvEElEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12__value_typeImNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareImSA_NS_4lessImEELb1EEENS_9allocatorISA_EEE7destroyEPNS_11__tree_nodeISA_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SD_EElEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISF_EERKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIiPNS_11__tree_nodeIiS8_EElEERPNS_15__tree_end_nodeISA_EESB_RKT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE7destroyEPNS_11__tree_nodeIiPvEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI18audio_attributes_tNS_9allocatorIS1_EEEC2ERKS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lm2EEEE24__emplace_back_slow_pathIJS2_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmlS8_RNS_12basic_stringIcNS_11char_traitsIcEENS4_IcEEEESE_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmmiRA10_KcSB_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJmRmS8_RPcPKcEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android15AudioAttributesENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android2spINS1_22HwBinderDeathRecipientEEENS_9allocatorIS4_EEE21__push_back_slow_pathIRKS4_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7android8graphics6BitmapENS_9allocatorIS3_EEE8__appendEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJjRfEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRS4_EEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE7reserveEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrI14ScopedUtfCharsNS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_14ReplacementRunENS4_ISB_EEEEEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_8StyleRunENS4_ISB_EEEEEEEvDpOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIRKS6_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIS6_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorINS_17basic_string_viewIcNS_11char_traitsIcEEEENS_9allocatorIS4_EEE6insertENS_11__wrap_iterIPKS4_EEOS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIP14ScopedUtfCharsNS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEE21__push_back_slow_pathIS4_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPKcNS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIPN7android10PageRecordENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIcNS_9allocatorIcEEE6assignIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIcNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIRKfEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIfEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE6assignIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKfEES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIRKiEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIiEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE6insertINS_11__wrap_iterIPiEEEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS9_E9referenceEEE5valueES7_E4typeENS5_IPKiEES9_S9_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIiNS_9allocatorIiEEE6insertIPiEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKiEES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIjEEvOT_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__16vectorImNS_9allocatorImEEE6assignIPmEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleImNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__17getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn16_N7android18NativeMessageQueue11handleEventEiiPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn16_N7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn16_N7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android10InputQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android10InputQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android12MessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android12MessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android18NativeMessageQueueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android18NativeMessageQueueD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android22NativeInputEventSenderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android22NativeInputEventSenderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android24JNISurfaceTextureContextD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android24JNISurfaceTextureContextD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android24NativeInputEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android24NativeInputEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android26NativeDisplayEventReceiverD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android26NativeDisplayEventReceiverD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android9JHwBinderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZTv0_n24_N7android9JHwBinderD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_fatal_no_abort);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_fatal_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_buffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_buffer_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_fd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_fd_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_log);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_format_log_va_list);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(async_safe_write_log);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(crypto_scrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(init_android_graphics);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(note_log_drop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(reallocarray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(registerFrameworkNatives);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(register_android_graphics_classes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statd_writer_trylock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(stats_log_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statsd_writer_init_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(statsd_writer_init_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(write_buffer_to_statsd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zygote_preload_graphics);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmapConfig_getConfigFromFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmapConfig_getFormatFromConfig);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_acquireBitmapFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_acquireRef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_compress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getInfoFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_getPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_notifyPixelsChanged);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ABitmap_releaseRef);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_clipOutRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_clipRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_createCanvas);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_destroyCanvas);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_drawBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_drawRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_getNativeHandleFromJava);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_isSupportedPixelFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ACanvas_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", AMatrix_getContents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_createPaint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_destroyPaint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", APaint_setBlendMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_acquireIterator);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_getRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_getTotalBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_isComplex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_isDone);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_next);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARegionIterator_releaseIterator);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", ARenderThread_dumpGraphicsMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifCloseFile);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifExtensionToGCB);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetCodeNext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetExtensionNext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetImageDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetLZCodes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetLine);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetPixel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetRecordType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifGetScreenDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpen);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpenFileHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifOpenFileName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifSavedExtensionToGCB);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", DGifSlurp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", FreeLastSavedImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifAddExtensionBlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifApplyTranslation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifBitSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeExtensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeMapObject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifFreeSavedImages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifMakeMapObject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifMakeSavedImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", GifUnionColorMap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowIAEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowIOEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowISEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10doThrowNPEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10error_exitP18jpeg_common_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z10getContextl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z11doThrowOOMEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z11getMimeType20SkEncodedImageFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z12checkGlErrorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z13create_jmovieP7_JNIEnvP5Movie);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z13doThrowAIOOBEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z17get_native_cameraP7_JNIEnvP8_jobjectPP16JNICameraContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z19CopyJavaInputStreamP7_JNIEnvP8_jobjectP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z19_set_seccomp_filter10FilterType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z21postProcessAndReleaseP7_JNIEnvP8_jobjectNSt3__110unique_ptrIN7android6CanvasENS3_14default_deleteIS6_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z22get_device_from_objectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z22set_app_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z23getMimeTypeAsJavaStringP7_JNIEnv20SkEncodedImageFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z23get_request_from_objectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25_install_setuidgid_filterjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25android_os_Process_setGidP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25android_os_Process_setUidP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z25set_system_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26android_os_Process_getPidsP7_JNIEnvP8_jobjectP8_jstringP10_jintArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26get_exclusive_cpuset_cores11SchedPolicyP9cpu_set_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z26register_android_os_BinderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27android_os_Process_setArgV0P7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27register_android_media_midiP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z27register_android_os_ProcessP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z28CreateByteArrayStreamAdaptorP7_JNIEnvP11_jbyteArraymm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z28CreateJavaInputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArrayb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29CreateByteBufferStreamAdaptorP7_JNIEnvP8_jobjectmm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29CreateJavaOutputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29android_os_Process_sendSignalP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z29set_app_zygote_seccomp_filterv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z31android_os_Process_readProcFileP7_JNIEnvP8_jobjectP8_jstringP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z31register_android_graphics_MovieP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_getGidForNameP7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_getUidForNameP7_JNIEnvP8_jobjectP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_parseProcLineP7_JNIEnvP8_jobjectP11_jbyteArrayiiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_readProcLinesP7_JNIEnvP8_jobjectP8_jstringP13_jobjectArrayP11_jlongArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32android_os_Process_setSwappinessP7_JNIEnvP8_jobjectih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32install_setuidgid_seccomp_filterjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_BitmapP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_CameraP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_graphics_ShaderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z32register_android_hardware_CameraP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33android_os_Process_setThreadGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_media_AudioTrackP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_opengl_jni_EGL14P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z33register_android_opengl_jni_EGL15P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34JHwBinder_native_joinRpcThreadpoolv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_getProcessGroupP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_sendSignalQuietP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34android_os_Process_setProcessGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_GraphicsP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_TypefaceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_graphics_YuvImageP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_media_AudioRecordP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_media_AudioSystemP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_EGLExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES10P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES11P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES20P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES30P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES31P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z34register_android_opengl_jni_GLES32P7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35android_os_Process_killProcessGroupP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35register_android_graphics_NinePatchP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z35register_android_hardware_UsbDeviceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Binder_getNativeFinalizerP7_JNIEnvP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_getExclusiveCoresP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_getThreadPriorityP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36android_os_Process_setThreadPriorityP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_graphics_MaskFilterP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_graphics_PathEffectP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_hardware_SerialPortP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_hardware_UsbRequestP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z36register_android_media_ToneGeneratorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_media_getIntConstantFromClassP7_JNIEnvP7_jclassPKcS4_Pi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_getPidsForCommandsP7_JNIEnvP8_jobjectP13_jobjectArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_getThreadSchedulerP7_JNIEnvP7_jclassi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_parseProcLineArrayP7_JNIEnvP8_jobjectPciiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37android_os_Process_setThreadSchedulerP7_JNIEnvP7_jclassiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_media_MicrophoneInfoP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES10ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES11ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z37register_android_opengl_jni_GLES31ExtP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38android_media_AudioTrack_getAudioTrackP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_graphics_ImageDecoderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_graphics_InterpolatorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z38register_android_media_AudioAttributesP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39JHwBinder_native_configureRpcThreadpoolP7_JNIEnvP7_jclasslh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39android_os_Process_setApplicationObjectP7_JNIEnvP8_jobjectS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_graphics_BitmapFactoryP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_graphics_GraphicBufferP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z39register_android_hardware_SensorManagerP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z40register_android_hardware_HardwareBufferP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z40register_android_media_AudioVolumeGroupsP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41android_os_BinderProxy_getNativeFinalizerP7_JNIEnvP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41android_os_Process_removeAllProcessGroupsP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z41register_android_media_AudioDeviceAddressP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z42android_os_Process_setThreadGroupAndCpusetP7_JNIEnvP8_jobjectii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z43android_os_Process_setCallingThreadPriorityP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z43register_com_google_android_gles_jni_GLImplP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_android_hardware_camera2_DngCreatorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_android_media_AudioEffectDescriptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z44register_com_google_android_gles_jni_EGLImplP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_graphics_BitmapRegionDecoderP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_hardware_UsbDeviceConnectionP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z45register_android_media_AudioProductStrategiesP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z48register_android_hardware_camera2_CameraMetadataP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z49register_android_graphics_ByteBufferStreamAdaptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z52register_android_media_AudioVolumeGroupChangeHandlerP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z55register_android_graphics_CreateJavaOutputStreamAdaptorP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z56register_android_graphics_drawable_AnimatedImageDrawableP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z56register_android_hardware_camera2_legacy_PerfMeasurementP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z59register_android_hardware_camera2_legacy_LegacyCameraDeviceP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z62register_android_hardware_location_ActivityRecognitionHardwareP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _Z9doThrowREP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI12createRegionEP7_JNIEnvP8SkRegion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI12hasExceptionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13getBitmapInfoEP7_JNIEnvP8_jobjectPj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13getColorSpaceEP7_JNIEnvP12SkColorSpace11SkColorType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI13jrect_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14irect_to_jrectERK7SkIRectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14jrect_to_irectEP7_JNIEnvP8_jobjectP7SkIRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14jrectf_to_rectEP7_JNIEnvP8_jobjectP6SkRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI14rect_to_jrectfERK6SkRectP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeBitmapEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeCanvasEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI15getNativeRegionEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16convertColorLongEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16ipoint_to_jpointERK8SkIPointP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16isHardwareConfigEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16jpoint_to_ipointEP7_JNIEnvP8_jobjectP8SkIPoint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16jpointf_to_pointEP7_JNIEnvP8_jobjectP7SkPoint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI16point_to_jpointfERK7SkPointP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getConfigFromFormatEP7_JNIEnv19AndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getFormatFromConfigEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI19getNativeColorSpaceEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI24getNativeBitmapColorTypeEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI25createBitmapRegionDecoderEP7_JNIEnvP21SkBitmapRegionDecoder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI26hardwareLegacyBitmapConfigEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI29colorTypeToLegacyBitmapConfigE11SkColorType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI29legacyBitmapConfigToColorTypeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9SetPixelsEP7_JNIEnvP10_jintArrayiiiiiiP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9get_jrectEP7_JNIEnvP8_jobjectPiS4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN11GraphicsJNI9set_jrectEP7_JNIEnvP8_jobjectiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13HeapAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext10setGpsDataERK7GpsData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext12setThumbnailEPKhjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setCaptureTimeERKN7android7String8E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setDescriptionERKN7android7String8E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext14setOrientationEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContext9getWriterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextC2ERKN7android14CameraMetadataES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN13NativeContextD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4readEPhmm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream4skipEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStream5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN14JniInputStreamD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStream5writeEPKhmm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15JniOutputStreamD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15NinePatchPeeker5scaleEffii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN15NinePatchPeeker9readChunkEPKcPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16AutoJavaIntArrayC2EP7_JNIEnvP10_jintArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16AutoJavaIntArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSource13writeToStreamERN7android9img_utils6OutputEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceC2EP7_JNIEnvRN7android9img_utils5InputEjjjjjmjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16InputStripSourceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext11copyAndPostEP7_JNIEnvRKN7android2spINS2_7IMemoryEEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext12postMetadataEP7_JNIEnviP21camera_frame_metadata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext15setCallbackModeEP7_JNIEnvbb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17addCallbackBufferEP7_JNIEnvP11_jbyteArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17getCallbackBufferEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext17postDataTimestampEliRKN7android2spINS0_7IMemoryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnvPN7android6VectorIP11_jbyteArrayEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext33postRecordingFrameHandleTimestampElP13native_handle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext38postRecordingFrameHandleTimestampBatchERKNSt3__16vectorIlNS0_9allocatorIlEEEERKNS1_IP13native_handleNS2_IS8_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext6notifyEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext7releaseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContext8postDataEiRKN7android2spINS0_7IMemoryEEEP21camera_frame_metadata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContextC1EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16JNICameraContextC2EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder21setJpegCompressStructEP20jpeg_compress_structiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder6createEiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoder6encodeEP9SkWStreamPviiPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN16YuvToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17AutoJavaByteArrayC2EP7_JNIEnvP11_jbyteArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17AutoJavaByteArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSource13writeToStreamERN7android9img_utils6OutputEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceC2EP7_JNIEnvPKhjjjjjmjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN17DirectStripSourceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaFloatArrayC2EP7_JNIEnvP12_jfloatArrayi9JNIAccess);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaFloatArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaShortArrayC2EP7_JNIEnvP12_jshortArrayi9JNIAccess);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18AutoJavaShortArrayD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList3addERKN7android2spI18JavaDeathRecipientEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList4findEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList4lockEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientList6removeERKN7android2spI18JavaDeathRecipientEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18DeathRecipientListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfo12CreateFromFdEiRKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfo13GetSocketNameEiPNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfoC2E4statRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiiiil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18FileDescriptorInfoC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer4openEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer4readEPhmm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBuffer5closeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN18JniInputByteBufferD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable14RestatInternalERNSt3__13setIiNS0_4lessIiEENS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS4_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable6CreateERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable6RestatERKNSt3__16vectorIiNS0_9allocatorIiEEEERKNS0_8functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS2_IcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTable7ParseFdEP6direnti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN19FileDescriptorTableC2ERKNSt3__113unordered_mapIiP18FileDescriptorInfoNS0_4hashIiEENS0_8equal_toIiEENS0_9allocatorINS0_4pairIKiS3_EEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20AshmemPixelAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20AshmemPixelAllocatorC2EP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback13onServiceDiedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback21onAudioPortListUpdateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback22onAudioPatchListUpdateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallback9sendEventEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackC2EP7_JNIEnvP8_jobjectS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20JNIAudioPortCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder12deinterleaveEPhS0_S0_S0_iii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN20Yuv422IToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder12deinterleaveEPhS0_S0_iii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoder8compressEP20jpeg_compress_structPhPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN21Yuv420SpToJpegEncoderC2EPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN23FileDescriptorWhitelist3GetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN23FileDescriptorWhitelistC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocator13allocPixelRefEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocator15copyIfNecessaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorC2EPN7android6BitmapEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN31RecyclingClippingPixelAllocatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie10DecodeFileEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie10ensureInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie12DecodeMemoryEPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie12DecodeStreamEP18SkStreamRewindable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie5widthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie6bitmapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie6heightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie7setTimeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie8durationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5Movie8isOpaqueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN5MovieC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue11createQueueEP8_jobjectRKNS_2spINS_6LooperEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue11finishEventEPNS_10InputEventEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12attachLooperEPNS_6LooperEiPFiiiPvES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12detachLooperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue12enqueueEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue13handleMessageERKNS_7MessageE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue14createKeyEventEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue16preDispatchEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue17createMotionEventEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue17recycleInputEventEPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue18detachLooperLockedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue8getEventEPPNS_10InputEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueue9hasEventsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueC1EP8_jobjectRKNS_2spINS_6LooperEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueC2EP8_jobjectRKNS_2spINS_6LooperEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10InputQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo14ReadDmaBufInfoEPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEERKNS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo14ReadDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10dmabufinfo16AppendDmaBufInfoEiPNSt3__16vectorINS0_9DmaBufferENS1_9allocatorIS3_EEEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10getServiceINS_8hardware14ICameraServiceEEEiRKNS_8String16EPNS_2spIT_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10isSeekableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android10nativeOpenEP7_JNIEnvP7_jclassil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11BnInterfaceINS_20IRemoteDisplayClientEE10onAsBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11BnInterfaceINS_23IRegionSamplingListenerEE10onAsBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory12javaToNativeEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory16getNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory6toJavaEP7_JNIEnvRKNS_8hardware11hidl_memoryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemory8fromJavaEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11JHidlMemoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android11nativeCloseEP7_JNIEnvP7_jclassl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueue22raiseAndClearExceptionEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MessageQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android12MinikinUtils10forFontRunINS_9PaintGlue14GetTextFunctorEEEvRKN7minikin6LayoutEPNS_5PaintERT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle19MakeCppNativeHandleEP7_JNIEnvP8_jobjectPNS_16EphemeralStorageE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle23MakeJavaNativeHandleObjEP7_JNIEnvPK13native_handle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android13JNativeHandle29AllocJavaNativeHandleObjArrayEP7_JNIEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime10getRuntimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime11onVmCreatedEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime14parseExtraOptsEPcPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime15NewStringLatin1EP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime15javaThreadShellEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime16createJavaThreadEPKcPFvPvES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime16toSlashClassNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime18parseRuntimeOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime19javaCreateThreadEtcEPFiPvES1_PKcimPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime19parseCompilerOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime26parseCompilerRuntimeOptionEPKcPcS2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime4exitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime5startEPKcRKNS_6VectorINS_7String8EEEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnvbb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8callMainERKNS_7String8EP7_jclassRKNS_6VectorIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8setArgv0EPKcb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime8startRegEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9addOptionEPKcPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9getJNIEnvEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntime9getJavaVMEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeC2EPcm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14AndroidRuntimeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14get_env_or_dieEP7_JavaVM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android14init_FontUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9NewObjectEP7_JNIEnvRKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinder9setBinderERKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15JHwRemoteBinderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15MediaMetricsJNI20writeMetricsToBundleEP7_JNIEnvPNS_12mediametrics4ItemEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15MediaMetricsJNI29nativeToJavaPersistableBundleEP7_JNIEnvPNS_2os17PersistableBundleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android15getBPNativeDataEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16DeleteScreenshotEPvS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage16allocStringArrayEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage20allocTemporaryStringEP7_JNIEnvP8_jstring);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage21allocTemporaryStorageEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage24allocTemporaryInt8VectorEP7_JNIEnvP11_jbyteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryFloatVectorEP7_JNIEnvP12_jfloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt16VectorEP7_JNIEnvP12_jshortArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt32VectorEP7_JNIEnvP10_jintArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage25allocTemporaryInt64VectorEP7_JNIEnvP11_jlongArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage26allocTemporaryDoubleVectorEP7_JNIEnvP13_jdoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage26allocTemporaryNativeHandleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorage7releaseEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorageC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16EphemeralStorageD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android16nullObjectReturnEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17AutoBufferPointerC2EP7_JNIEnvP8_jobjecth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17AutoBufferPointerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17CopyAssetToStreamEPNS_5AssetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallback19onAudioDeviceUpdateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackC2EP7_JNIEnvP8_jobjectS4_P10_jmethodID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android17JNIDeviceCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4moveEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4readEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor4seekEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptor6rewindEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18AssetStreamAdaptorC2EPNS_5AssetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannel18setDisposeCallbackEPFvP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPvESA_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannel30invokeAndRemoveDisposeCallbackEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannelC2ERKNS_2spINS_12InputChannelEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeInputChannelD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue14raiseExceptionEP7_JNIEnvPKcP11_jthrowable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue23setFileDescriptorEventsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue4wakeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueC1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18NativeMessageQueueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18forwardPdfiumErrorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android18nativeGetPageCountEP7_JNIEnvP7_jclassl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android19parcelForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState11addMovementEPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState11getVelocityEiPfS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState12getEstimatorEiPNS_15VelocityTracker9EstimatorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState22computeCurrentVelocityEif);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerState5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20VelocityTrackerStateC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20ibinderForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20javaObjectForIBinderEP7_JNIEnvRKNS_2spINS_7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android20poly_clip_to_frustumEPNS_4PolyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender12sendKeyEventEjPKNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender15sendMotionEventEjPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender22receiveFinishedSignalsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSender7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22NativeInputEventSenderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22createJavaParcelObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22nativeScaleForPrintingEP7_JNIEnvP7_jclassl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22poly_clip_to_halfspaceEPNS_4PolyES1_iff);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android22validateCanUseHwBinderERKNS_2spINS_8hardware7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper10makeUniqueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper12getJavaArrayEP7_JNIEnvPP13_jobjectArrayi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper12nativeToJavaEP7_JNIEnvPP8_jobjectRK18audio_attributes_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23JNIAudioAttributeHelper14nativeFromJavaEP7_JNIEnvP8_jobjectP18audio_attributes_t);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandle10updateInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandle31getInputWindowHandleObjLocalRefEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleC2EP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23NativeInputWindowHandleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23newParcelFileDescriptorEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23recycleJavaParcelObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23signalExceptionForErrorEP7_JNIEnvP8_jobjectibi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23signalExceptionForErrorEP7_JNIEnvib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3PKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android23throw_sqlite3_exceptionEP7_JNIEnviPKcS3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserver13getNextBufferEP7_JNIEnvP11_jlongArrayPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserver6notifyEPKl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverC2EP7_JavaVMP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24HardwareRendererObserverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext16onFrameAvailableERKNS_10BufferItemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext9detachJNIEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContext9getJNIEnvEPb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextC1EP7_JNIEnvP8_jobjectP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextC2EP7_JNIEnvP8_jobjectP7_jclass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24JNISurfaceTextureContextD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver11setFdEventsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver13consumeEventsEP7_JNIEnvblPb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver16finishInputEventEjb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiver7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEERKNS5_INS_12MessageQueueEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android24NativeInputEventReceiverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25AssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_os_DebugEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_os_TraceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android25register_android_util_LogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList3addERKNS_2spINS_22HwBinderDeathRecipientEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList4findEP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList4lockEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientList6removeERKNS_2spINS_22HwBinderDeathRecipientEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26HwBinderDeathRecipientListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver13dispatchVsyncElmj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver15dispatchHotplugElmb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver21dispatchConfigChangedElmil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiver7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverC1EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverC2EP7_JNIEnvP8_jobjectRKNS_2spINS_12MessageQueueEEEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26NativeDisplayEventReceiverD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26SurfaceTexture_getProducerEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26audioEffectDescriptorClassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26register_android_os_HwBlobEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android26register_android_os_ParcelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallback13onServiceDiedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallback25onAudioVolumeGroupChangedENS_14volume_group_tEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackC2EP7_JNIEnvP8_jobjectS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27JNIAudioVolumeGroupCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android27register_android_os_SELinuxEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandle10updateInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandle36getInputApplicationHandleObjLocalRefEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleC2EP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NativeInputApplicationHandleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28NdkAssetManagerForJavaObjectEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28register_android_os_HwBinderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28register_android_os_HwParcelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android28set_dalvik_blockguard_policyEP7_JNIEnvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_NativeActivity_finishEP15ANativeActivity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_view_KeyEvent_recycleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29android_view_PointerIcon_loadEP7_JNIEnvP8_jobjectS3_PNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29register_android_app_ActivityEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android29register_android_view_SurfaceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android2spINS_10AudioTrackEEaSEPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android2spINS_11AudioRecordEEaSEPS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30AssetManagerForNdkAssetManagerEP13AAssetManager);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30android_view_KeyEvent_toNativeEP7_JNIEnvP8_jobjectPNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_graphics_PathEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_os_HidlMemoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_os_MemoryFileEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_util_EventLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_util_StatsLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android30register_android_view_KeyEventEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31android_view_InputDevice_createEP7_JNIEnvRKNS_15InputDeviceInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31android_view_Surface_getSurfaceEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31convertMicrophoneInfoFromNativeEP7_JNIEnvPP8_jobjectPKNS_5media14MicrophoneInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_graphics_PaintEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_opengl_classesEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_HidlSupportEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_SystemClockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31register_android_os_VintfObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android31throw_sqlite3_exception_errcodeEP7_JNIEnviPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32CameraMetadata_getNativeMetadataEP7_JNIEnvP8_jobjectPNS_14CameraMetadataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32SurfaceTexture_getSurfaceTextureEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32android_view_KeyEvent_fromNativeEP7_JNIEnvPKNS_8KeyEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32android_view_MotionEvent_recycleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_CanvasEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_MatrixEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_graphics_RegionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_FileObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_MessageQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_NativeHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_os_SharedMemoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_security_ScryptEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_text_HyphenatorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_util_PathParserEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_view_InputQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android32register_android_view_RenderNodeEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33android_Configuration_getFromJavaEP7_JNIEnvP8_jobjectP14AConfiguration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33android_view_Surface_isInstanceOfEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_content_XmlBlockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_graphics_PictureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_net_NetworkUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_InputDeviceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_MotionEventEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_PointerIconEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android33register_android_view_TextureViewEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34createAudioDeviceAddressFromNativeEP7_JNIEnvPP8_jobjectPKNS_19AudioDeviceTypeAddrE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_os_HwRemoteBinderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_os_UEventObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_view_InputChannelEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android34register_android_view_TextureLayerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_SurfaceTexture_isInstanceOfEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_graphics_Matrix_getSkMatrixEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35android_view_KeyCharacterMap_createEP7_JNIEnviRKNS_2spINS_15KeyCharacterMapEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_app_ActivityThreadEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_app_NativeActivityEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android35register_android_media_MediaMetricsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_NativeActivity_hideSoftInputEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_NativeActivity_showSoftInputEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getDeathObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getLocalObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_os_Debug_getProxyObjectCountEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_util_Log_isVerboseLogEnabledEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36android_view_Surface_getNativeWindowEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_content_StringBlockEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_ColorSpaceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_DrawFilterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_FontFamilyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_graphics_fonts_FontEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_media_RemoteDisplayEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_net_LocalSocketImplEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_os_SystemPropertiesEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_os_VintfRuntimeInfoEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_util_MemoryIntArrayEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_view_SurfaceControlEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android36register_android_view_SurfaceSessionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_NativeActivity_setWindowFlagsEP15ANativeActivityii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_MotionEvent_getNativePtrEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_MotionEvent_obtainAsCopyEP7_JNIEnvPKNS_11MotionEventE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37android_view_SurfaceSession_getClientEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_content_AssetManagerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_database_SQLiteDebugEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_graphics_ColorFilterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_graphics_PathMeasureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_view_KeyCharacterMapEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android37register_android_view_VelocityTrackerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_NativeActivity_setWindowFormatEP15ANativeActivityi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_PointerIcon_getLoadedIconEP7_JNIEnvP8_jobjectPNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_PointerIcon_getSystemIconEP7_JNIEnvP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38android_view_Surface_createFromSurfaceEP7_JNIEnvRKNS_2spINS_7SurfaceEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38convertAudioEffectDescriptorFromNativeEP7_JNIEnvPP8_jobjectPK19effect_descriptor_s);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_app_admin_SecurityLogEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_app_backup_FullBackupEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_content_res_ApkAssetsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_database_CursorWindowEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_database_SQLiteGlobalEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_text_AndroidCharacterEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_util_StatsLogInternalEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_view_InputEventSenderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android38register_android_view_ThreadedRendererEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39android_os_MessageQueue_getMessageQueueEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39android_view_PointerIcon_loadSystemIconEP7_JNIEnvP8_jobjectiPNS_11PointerIconE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_backup_BackupDataInputEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_content_res_ObbScannerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_graphics_pdf_PdfEditorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_os_GraphicsEnvironmentEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_util_jar_StrictJarFileEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_view_DisplayListCanvasEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_android_view_InputWindowHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android39register_com_android_internal_os_ZygoteEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40android_view_InputWindowHandle_getHandleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_backup_BackupDataOutputEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_ddm_DdmHandleNativeHeapEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_graphics_CanvasPropertyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_graphics_SurfaceTextureEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_view_InputEventReceiverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android40register_android_view_RenderNodeAnimatorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41android_view_InputChannel_getInputChannelEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41register_android_graphics_pdf_PdfDocumentEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android41register_android_graphics_pdf_PdfRendererEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_content_res_ConfigurationEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_database_SQLiteConnectionEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_BLASTBufferQueueEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_fonts_FontFamilyEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_graphics_text_LineBreakerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_service_DataLoaderServiceEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android42register_android_view_DisplayEventReceiverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android43register_android_graphics_text_MeasuredTextEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android43register_com_android_internal_os_ZygoteInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44android_view_InputChannel_setDisposeCallbackEP7_JNIEnvP8_jobjectPFvS1_S3_RKNS_2spINS_12InputChannelEEEPvES9_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44convertAudioEffectDescriptorVectorFromNativeEP7_JNIEnvPP13_jobjectArrayRKNSt3__16vectorI19effect_descriptor_sNS5_9allocatorIS7_EEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_android_backup_FileBackupHelperBaseEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_android_view_InputApplicationHandleEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_com_android_internal_os_FuseAppLoopEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android44register_com_android_internal_os_RuntimeInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android45android_view_InputApplicationHandle_getHandleEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android46register_android_backup_BackupHelperDispatcherEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android47register_android_animation_PropertyValuesHolderEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49android_hardware_display_DisplayViewport_toNativeEP7_JNIEnvP8_jobjectPNS_15DisplayViewportE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_graphics_drawable_VectorDrawableEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_hardware_display_DisplayViewportEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android49register_android_view_CompositionSamplingListenerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android50register_android_graphics_HardwareRendererObserverEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android50register_android_os_incremental_IncrementalManagerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android51register_com_android_internal_os_ClassLoaderFactoryEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android52android_hardware_HardwareBuffer_convertToPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android52register_com_android_internal_util_VirtualRefBasePtrEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android53android_view_Surface_createFromIGraphicBufferProducerEP7_JNIEnvRKNS_2spINS_22IGraphicBufferProducerEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android53register_android_server_NetworkManagementSocketTaggerEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android54android_graphics_GraphicBuffer_getNativeGraphicsBufferEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android54android_hardware_HardwareBuffer_convertFromPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android55android_hardware_HardwareBuffer_getNativeHardwareBufferEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android56android_graphics_GraphicBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57android_hardware_HardwareBuffer_convertToGrallocUsageBitsEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57android_hardware_HardwareBuffer_createFromAHardwareBufferEP7_JNIEnvP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57register_android_graphics_drawable_AnimatedVectorDrawableEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android57register_com_android_internal_content_NativeLibraryHelperEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android5vintf9to_stringINS0_13KernelVersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android5vintf9to_stringINS0_7VersionEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android60register_com_android_internal_os_ZygoteInit_nativeZygoteInitEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap10toSkBitmapElP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap12createBitmapEP7_JNIEnvPNS_6BitmapEiP11_jbyteArrayP8_jobjecti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap12reinitBitmapEP7_JNIEnvP8_jobjectRK11SkImageInfob);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android6bitmap8toBitmapEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android76register_com_android_internal_view_animation_NativeInterpolatorFactoryHelperEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob16specializeBlobToENS0_8BlobTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob4dataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob5setToEPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob5writeEmPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob7putBlobEmRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9NewObjectEP7_JNIEnvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlob9NewObjectEP7_JNIEnvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobC2EP7_JNIEnvP8_jobjectm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7JHwBlobD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture12endRecordingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture14beginRecordingEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture16CreateFromStreamEP8SkStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7Picture4drawEPNS_6CanvasE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7PictureC2EO5sk_spI9SkPictureE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android7PictureC2EPKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android8getBlockEPvmPhm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android8hardware10fromBinderINS_4hidl4base4V1_05IBaseENS4_8BpHwBaseENS4_8BnHwBaseEEENS_2spIT_EERKNS8_INS0_7IBinderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder10onTransactEjRKNS_8hardware6ParcelEPS2_jNSt3__18functionIFvRS2_EEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder15GetNativeBinderEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spINS_15JHwBinderHolderEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinder9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderC1EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwBinderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel10getStorageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel16GetNativeContextEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel16SetNativeContextEP7_JNIEnvP8_jobjectRKNS_2spIS0_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel19setTransactCallbackENSt3__18functionIFvRNS_8hardware6ParcelEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel4sendEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9InitClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9NewObjectEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9getParcelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcel9setParcelEPNS_8hardware6ParcelEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelC2EP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9JHwParcelD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIdEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIhEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIiEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryIjEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils10TiffWriter8addEntryItEEitjPKT_j);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIdED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIdED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIhED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIhED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIiED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIiED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIjED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplIjED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplItED0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN7android9img_utils13TiffEntryImplItED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie11onGetBitmapEP8SkBitmap);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie9onGetInfoEPN5Movie4InfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovie9onSetTimeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieC2EP8SkStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZN8GIFMovieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext10getGpsDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext10hasGpsDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext12getThumbnailEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext12hasThumbnailEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getCaptureTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14getOrientationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14hasCaptureTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext14hasDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext17getThumbnailWidthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext18getCharacteristicsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext18getThumbnailHeightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK13NativeContext9getResultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK15NinePatchPeeker10getPaddingEP7_JNIEnvP8_jobject);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK15NinePatchPeeker21createNinePatchInsetsEP7_JNIEnvf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK16InputStripSource6getIfdEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK16JNICameraContext33isRawImageCallbackBufferAvailableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK17DirectStripSource6getIfdEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo12DetachSocketERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo14ReopenOrDetachERKNSt3__18functionIFvNS0_12basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK18FileDescriptorInfo16RefersToSameFileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK23FileDescriptorWhitelist9IsAllowedERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10AxisHelper13getStyleValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10AxisHelper6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10ListHelper3getEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android10ListHelper4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE10do_compareEPKvS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_12DisplayStateEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_compareEPKvS6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorINS_16key_value_pair_tINS_7String8ES2_EEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_compareEPKvS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP26audiotrack_callback_cookieE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_compareEPKvS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android12SortedVectorIP27audiorecord_callback_cookieE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android15JHwRemoteBinder21getDeathRecipientListEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android15JHwRemoteBinder9getBinderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11getPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11hasPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor11onDuplicateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor7isAtEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android18AssetStreamAdaptor9getLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorI12JavaVMOptionE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_11DisplayInfoEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_13PointerCoordsEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16EphemeralStorage4ItemEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_16key_value_pair_tIPNS_10InputEventEbEEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_17PointerPropertiesEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_19AudioDeviceTypeAddrEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_22AudioMixMatchCriterionEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_24NativeInputEventReceiver6FinishEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_6SensorEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7JHwBlob8BlobInfoEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_7String8EE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8AudioMixEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8KeyEventEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorINS_8hardware8graphics6common4V1_29ColorModeEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP11_jbyteArrayE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIP14ScopedUtfCharsE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_10InputEventEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_6LooperEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIPNS_9img_utils11StripSourceEE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIdE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIfE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIhE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIiE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIjE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorIlE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE10do_destroyEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE12do_constructEPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE15do_move_forwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE16do_move_backwardEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE7do_copyEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android6VectorItE8do_splatEPvPKvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob13writeToParcelEPNS_8hardware6ParcelE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob21writeEmbeddedToParcelEPNS_8hardware6ParcelEmm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob21writeSubBlobsToParcelEPNS_8hardware6ParcelEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4dataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4readEmPvm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob4typeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob9getHandleEPm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7JHwBlob9getStringEmPPKNS_8hardware11hidl_stringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture15makePartialCopyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture5widthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture6heightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android7Picture9serializeEP9SkWStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9JHwParcel7wasSentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIdEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIhEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIiEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryIjEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils10TiffWriter10buildEntryItEEitjPKT_PNS_2spINS0_9TiffEntryEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIdE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIhE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIiE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplIjE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE12writeTagInfoEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE13getDataHelperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE13getEndiannessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE18getComparableValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE6getTagEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNK7android9img_utils13TiffEntryImplItE9writeDataEjPNS0_12EndianOutputE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEPNS0_6__baseIST_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEPNS0_6__baseISR_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7__cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__112__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_22__unordered_map_hasherIS7_S8_NS_4hashIS7_EELb1EEENS_21__unordered_map_equalIS7_S8_NS_8equal_toIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__hash_const_iteratorIPNS_11__hash_nodeIS8_PvEEEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNKSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE4findIS7_EENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RA5_S5_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_RS6_RS8_RKNS_12placeholders4__phILi1EEEEEENSC_ISR_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE18destroy_deallocateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EE7destroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__110__function6__funcINS_6__bindIRFvP7_JNIEnvPKcP8_jstringRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEJRS4_S6_DnRKNS_12placeholders4__phILi1EEEEEENSC_ISP_EEFvSE_EEclEOSE_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE25__emplace_unique_key_argsIS4_JS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE6rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableIN7android2spINS1_7IBinderEEENS1_16ISurfaceComposer6SpHashIS3_EENS_8equal_toIS4_EENS_9allocatorIS4_EEE8__rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIN7minikin12MinikinPaintEjEENS_22__unordered_map_hasherIS3_S4_NS2_12LayoutPieces11PaintHasherELb1EEENS_21__unordered_map_equalIS3_S4_NS_8equal_toIS3_EELb1EEENS_9allocatorIS4_EEED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_21piecewise_construct_tENS_5tupleIJRKiEEENSK_IJEEEEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiS3_EEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeIS4_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS4_PvEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiP18FileDescriptorInfoEENS_22__unordered_map_hasherIiS4_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS4_NS_8equal_toIiEELb1EEENS_9allocatorIS4_EEE8__rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJNS_4pairIiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRKNS_4pairIKiiEEEEENSF_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIjJRjSF_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__112__hash_tableINS_17__hash_value_typeIjjEENS_22__unordered_map_hasherIjS2_NS_4hashIjEELb1EEENS_21__unordered_map_equalIjS2_NS_8equal_toIjEELb1EEENS_9allocatorIS2_EEE8__rehashEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__113__tree_removeIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__114__split_bufferINS_17basic_string_viewIcNS_11char_traitsIcEEEERNS_9allocatorIS4_EEE9push_backEOS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE3strERKNS_12basic_stringIcS2_S4_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekoffExNS_8ios_base7seekdirEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE8overflowEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9pbackfailEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE9underflowEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android14CameraMetadataENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android15MinikinFontSkiaENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7android16JGlobalRefHolderENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE16__on_zero_sharedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__120__shared_ptr_emplaceIN7minikin10FontFamilyENS_9allocatorIS2_EEE21__on_zero_shared_weakEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__124__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__127__tree_balance_after_insertIPNS_16__tree_node_baseIPvEEEEvT_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIN7android15ResTable_configENS_4lessIS2_EENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10shared_ptrIN7minikin14FontCollectionEEEEENS_19__map_value_compareIS7_SC_NS_4lessIS7_EELb1EEENS5_ISC_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISN_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EElEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE12__find_equalIS7_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISJ_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIS7_JRKNS_4pairIKS7_S7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEENS_21__tree_const_iteratorIS8_SP_lEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_S8_NS_4lessIS7_EELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEmEENS_19__map_value_compareIS5_S6_NS_4lessIS5_EELb1EEENS_9allocatorIS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE12__find_equalIfEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS3_PNS_11__tree_nodeIS3_SD_EElEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIf7SkPointEENS_19__map_value_compareIfS3_NS_4lessIfEELb1EEENS_9allocatorIS3_EEE7destroyEPNS_11__tree_nodeIS3_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIffEENS_19__map_value_compareIfS2_NS_4lessIfEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_SH_EElEERPNS_15__tree_end_nodeISJ_EESK_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE30__emplace_hint_unique_key_argsIiJRKNS_4pairIKiS7_EEEEENS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEENS_21__tree_const_iteratorIS8_SP_lEERKT_DpOT0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiNS_6vectorIN7android15AudioAttributesENS_9allocatorIS4_EEEEEENS_19__map_value_compareIiS8_NS_4lessIiEELb1EEENS5_IS8_EEE7destroyEPNS_11__tree_nodeIS8_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiPKcEENS_19__map_value_compareIiS4_NS_4lessIiEELb1EEENS_9allocatorIS4_EEE7destroyEPNS_11__tree_nodeIS4_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIifEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIiiEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeIilEENS_19__map_value_compareIiS2_NS_4lessIiEELb1EEENS_9allocatorIS2_EEE7destroyEPNS_11__tree_nodeIS2_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeImNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareImSA_NS_4lessImEELb1EEENS_9allocatorISA_EEE5eraseENS_21__tree_const_iteratorISA_PNS_11__tree_nodeISA_PvEElEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12__value_typeImNS_10unique_ptrI14ScopedLocalRefIP11_jbyteArrayENS_14default_deleteIS6_EEEEEENS_19__map_value_compareImSA_NS_4lessImEELb1EEENS_9allocatorISA_EEE7destroyEPNS_11__tree_nodeISA_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIS6_PNS_11__tree_nodeIS6_SD_EElEERPNS_15__tree_end_nodeISF_EESG_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE12__find_equalIS6_EERPNS_16__tree_node_baseIPvEERPNS_15__tree_end_nodeISF_EERKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE7destroyEPNS_11__tree_nodeIS6_PvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE12__find_equalIiEERPNS_16__tree_node_baseIPvEENS_21__tree_const_iteratorIiPNS_11__tree_nodeIiS8_EElEERPNS_15__tree_end_nodeISA_EESB_RKT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16__treeIiNS_4lessIiEENS_9allocatorIiEEE7destroyEPNS_11__tree_nodeIiPvEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI11sock_filterNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI18audio_attributes_tNS_9allocatorIS1_EEEC2ERKS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorI7SkPointNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN15SkFontArguments4AxisEN7android10uirenderer18InlineStdAllocatorIS2_Lm2EEEE24__emplace_back_slow_pathIJS2_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmlS8_RNS_12basic_stringIcNS_11char_traitsIcEENS4_IcEEEESE_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJRmmiRA10_KcSB_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android10dmabufinfo9DmaBufferENS_9allocatorIS3_EEE24__emplace_back_slow_pathIJmRmS8_RPcPKcEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android15AudioAttributesENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android2spINS1_22HwBinderDeathRecipientEEENS_9allocatorIS4_EEE21__push_back_slow_pathIRKS4_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7android8graphics6BitmapENS_9allocatorIS3_EEE8__appendEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin13FontVariationENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJjRfEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIN7minikin4FontENS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRS4_EEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10shared_ptrIN7minikin10FontFamilyEEENS_9allocatorIS4_EEE7reserveEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrI14ScopedUtfCharsNS_14default_deleteIS2_EEEENS_9allocatorIS5_EEE21__push_back_slow_pathIS5_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_14ReplacementRunENS4_ISB_EEEEEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_10unique_ptrIN7minikin3RunENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS1_INS2_8StyleRunENS4_ISB_EEEEEEEvDpOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIRKS6_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE21__push_back_slow_pathIS6_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorINS_17basic_string_viewIcNS_11char_traitsIcEEEENS_9allocatorIS4_EEE6insertENS_11__wrap_iterIPKS4_EEOS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIP14ScopedUtfCharsNS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPKN7android9ApkAssetsENS_9allocatorIS4_EEE21__push_back_slow_pathIS4_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPKcNS_9allocatorIS2_EEE21__push_back_slow_pathIS2_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIPN7android10PageRecordENS_9allocatorIS3_EEE21__push_back_slow_pathIRKS3_EEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIcNS_9allocatorIcEEE6assignIPcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIcNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIRKfEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE21__push_back_slow_pathIfEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE6assignIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPfEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKfEES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIRKiEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE21__push_back_slow_pathIiEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE6insertINS_11__wrap_iterIPiEEEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS9_E9referenceEEE5valueES7_E4typeENS5_IPKiEES9_S9_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIiNS_9allocatorIiEEE6insertIPiEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleIiNS_15iterator_traitsIS7_E9referenceEEE5valueENS_11__wrap_iterIS5_EEE4typeENSB_IPKiEES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorIjNS_9allocatorIjEEE21__push_back_slow_pathIjEEvOT_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__16vectorImNS_9allocatorImEEE6assignIPmEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr16is_constructibleImNS_15iterator_traitsIS7_E9referenceEEE5valueEvE4typeES7_S7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__17getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZNSt3__1lsIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_ostreamIT_T0_EES9_RKNS_12basic_stringIS6_S7_T1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn16_N7android18NativeMessageQueue11handleEventEiiPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn16_N7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZThn16_N7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android10InputQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android10InputQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android12MessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android12MessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android18NativeMessageQueueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android18NativeMessageQueueD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android22NativeInputEventSenderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android22NativeInputEventSenderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android24JNISurfaceTextureContextD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android24JNISurfaceTextureContextD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android24NativeInputEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android24NativeInputEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android26NativeDisplayEventReceiverD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android26NativeDisplayEventReceiverD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android9JHwBinderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", _ZTv0_n24_N7android9JHwBinderD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_fatal_no_abort);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_fatal_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_buffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_buffer_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_fd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_fd_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_log);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_format_log_va_list);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", async_safe_write_log);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", crypto_scrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", init_android_graphics);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", note_log_drop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", reallocarray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", registerFrameworkNatives);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", register_android_graphics_classes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statd_writer_trylock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", stats_log_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statsd_writer_init_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", statsd_writer_init_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", write_buffer_to_statsd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libandroid_runtime.so", zygote_preload_graphics);
-}
-// clang-format on
diff --git a/libbinder_ndk/Android.bp b/libbinder_ndk/Android.bp
deleted file mode 100644
index b999a30..0000000
--- a/libbinder_ndk/Android.bp
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libbinder_ndk",
-    overrides: ["libbinder_ndk"],
-    stem: "libbinder_ndk",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "liblog",
-        "libutils",
-        "libnative_bridge_guest_libandroid_runtime",
-        "libnative_bridge_guest_libmediandk",
-        "libutils",
-    ],
-}
diff --git a/libbinder_ndk/stubs_arm.cc b/libbinder_ndk/stubs_arm.cc
deleted file mode 100644
index ce84d4c..0000000
--- a/libbinder_ndk/stubs_arm.cc
+++ /dev/null
@@ -1,229 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_joinThreadPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_setThreadPoolMaxThreadCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_startThreadPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Class_define);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Class_setOnDump);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_DeathRecipient_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_DeathRecipient_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_promote);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_associateClass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_debugGetRefCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_decStrong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_dump);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_fromJavaBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getCallingPid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getCallingUid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getClass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getUserData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_incStrong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_isAlive);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_isRemote);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_linkToDeath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markSystemStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markVendorStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markVintfStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_ping);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_prepareTransaction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_setExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_toJavaBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_transact);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_unlinkToDeath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_fromJavaParcel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_getDataPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readBool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readBoolArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readByte);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readChar);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readCharArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readDoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readFloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readParcelFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readParcelableArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStatusHeader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStrongBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_setDataPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeBool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeBoolArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeByte);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeChar);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeCharArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeFloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeParcelFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeParcelableArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStatusHeader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStrongBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_addService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_checkService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_getService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_deleteDescription);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromExceptionCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromExceptionCodeWithMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromServiceSpecificError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromServiceSpecificErrorWithMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getDescription);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getExceptionCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getServiceSpecificError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_isOk);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_newOk);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_joinThreadPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_setThreadPoolMaxThreadCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_startThreadPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Class_define);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Class_setOnDump);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_DeathRecipient_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_DeathRecipient_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_promote);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_associateClass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_debugGetRefCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_decStrong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_dump);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_fromJavaBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getCallingPid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getCallingUid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getClass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getUserData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_incStrong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_isAlive);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_isRemote);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_linkToDeath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markSystemStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markVendorStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markVintfStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_ping);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_prepareTransaction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_setExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_toJavaBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_transact);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_unlinkToDeath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_fromJavaParcel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_getDataPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readBool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readBoolArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readByte);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readChar);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readCharArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readDoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readFloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readParcelFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readParcelableArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStatusHeader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStrongBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_setDataPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeBool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeBoolArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeByte);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeChar);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeCharArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeFloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeParcelFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeParcelableArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStatusHeader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStrongBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_addService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_checkService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_getService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_deleteDescription);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromExceptionCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromExceptionCodeWithMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromServiceSpecificError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromServiceSpecificErrorWithMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getDescription);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getExceptionCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getServiceSpecificError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_isOk);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_newOk);
-}
-// clang-format on
diff --git a/libbinder_ndk/stubs_arm64.cc b/libbinder_ndk/stubs_arm64.cc
deleted file mode 100644
index ce84d4c..0000000
--- a/libbinder_ndk/stubs_arm64.cc
+++ /dev/null
@@ -1,229 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_joinThreadPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_setThreadPoolMaxThreadCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ABinderProcess_startThreadPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Class_define);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Class_setOnDump);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_DeathRecipient_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_DeathRecipient_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_Weak_promote);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_associateClass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_debugGetRefCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_decStrong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_dump);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_fromJavaBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getCallingPid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getCallingUid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getClass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_getUserData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_incStrong);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_isAlive);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_isRemote);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_linkToDeath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markSystemStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markVendorStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_markVintfStability);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_ping);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_prepareTransaction);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_setExtension);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_toJavaBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_transact);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AIBinder_unlinkToDeath);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_fromJavaParcel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_getDataPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readBool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readBoolArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readByte);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readChar);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readCharArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readDoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readFloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readParcelFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readParcelableArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStatusHeader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readStrongBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readUint64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_setDataPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeBool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeBoolArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeByte);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeChar);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeCharArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDoubleArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeFloatArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeInt64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeParcelFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeParcelableArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStatusHeader);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeStrongBinder);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint32Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeUint64Array);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_addService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_checkService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AServiceManager_getService);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_deleteDescription);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromExceptionCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromExceptionCodeWithMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromServiceSpecificError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromServiceSpecificErrorWithMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_fromStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getDescription);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getExceptionCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getMessage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getServiceSpecificError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_isOk);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_newOk);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_joinThreadPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_setThreadPoolMaxThreadCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", ABinderProcess_startThreadPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Class_define);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Class_setOnDump);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_DeathRecipient_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_DeathRecipient_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_Weak_promote);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_associateClass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_debugGetRefCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_decStrong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_dump);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_fromJavaBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getCallingPid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getCallingUid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getClass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_getUserData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_incStrong);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_isAlive);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_isRemote);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_linkToDeath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markSystemStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markVendorStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_markVintfStability);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_ping);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_prepareTransaction);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_setExtension);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_toJavaBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_transact);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AIBinder_unlinkToDeath);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_fromJavaParcel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_getDataPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readBool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readBoolArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readByte);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readChar);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readCharArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readDoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readFloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readParcelFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readParcelableArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStatusHeader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readStrongBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readUint64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_setDataPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeBool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeBoolArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeByte);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeChar);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeCharArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDoubleArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeFloatArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeInt64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeParcelFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeParcelableArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStatusHeader);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeStrongBinder);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint32Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeUint64Array);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_addService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_checkService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AServiceManager_getService);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_deleteDescription);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromExceptionCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromExceptionCodeWithMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromServiceSpecificError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromServiceSpecificErrorWithMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_fromStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getDescription);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getExceptionCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getMessage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getServiceSpecificError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_isOk);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_newOk);
-}
-// clang-format on
diff --git a/libcamera2ndk/Android.bp b/libcamera2ndk/Android.bp
deleted file mode 100644
index ac515fe..0000000
--- a/libcamera2ndk/Android.bp
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libcamera2ndk",
-    overrides: ["libcamera2ndk"],
-    stem: "libcamera2ndk",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libnative_bridge_guest_libandroid_runtime",
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        // libgui.so — greylisted, not included.
-        "liblog",
-        "libnative_bridge_guest_libmediandk",
-        "libnative_bridge_guest_libnativewindow",
-        "libutils",
-    ],
-}
diff --git a/libcamera2ndk/stubs_arm.cc b/libcamera2ndk/stubs_arm.cc
deleted file mode 100644
index 27326e1..0000000
--- a/libcamera2ndk/stubs_arm.cc
+++ /dev/null
@@ -1,151 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_abortCaptures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_capture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_getDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_logicalCamera_capture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_logicalCamera_setRepeatingRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_setRepeatingRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_stopRepeating);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_updateSharedOutput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureRequest_withPhysicalIds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureSessionWithSessionParameters);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_getId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_isSessionConfigurationSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_deleteCameraIdList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_getCameraCharacteristics);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_getCameraIdList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_openCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_registerAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_registerExtendedAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_unregisterAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_unregisterExtendedAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_getAllTags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_getConstEntry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_isLogicalMultiCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraOutputTarget_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraOutputTarget_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_addTarget);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getAllTags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getConstEntry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getConstEntry_physicalCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getUserContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_removeTarget);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_double);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_float);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_i32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_i64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_double);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_float);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_i32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_i64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_rational);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_u8);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_rational);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_u8);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setUserContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_remove);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutput_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionPhysicalOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_remove);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_abortCaptures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_capture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_getDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_logicalCamera_capture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_logicalCamera_setRepeatingRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_setRepeatingRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_stopRepeating);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_updateSharedOutput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureRequest_withPhysicalIds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureSessionWithSessionParameters);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_getId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_isSessionConfigurationSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_deleteCameraIdList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_getCameraCharacteristics);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_getCameraIdList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_openCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_registerAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_registerExtendedAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_unregisterAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_unregisterExtendedAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_getAllTags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_getConstEntry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_isLogicalMultiCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraOutputTarget_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraOutputTarget_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_addTarget);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getAllTags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getConstEntry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getConstEntry_physicalCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getUserContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_removeTarget);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_double);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_float);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_i32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_i64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_double);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_float);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_i32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_i64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_rational);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_u8);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_rational);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_u8);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setUserContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_remove);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutput_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionPhysicalOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_remove);
-}
-// clang-format on
diff --git a/libcamera2ndk/stubs_arm64.cc b/libcamera2ndk/stubs_arm64.cc
deleted file mode 100644
index 27326e1..0000000
--- a/libcamera2ndk/stubs_arm64.cc
+++ /dev/null
@@ -1,151 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_abortCaptures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_capture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_getDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_logicalCamera_capture);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_logicalCamera_setRepeatingRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_setRepeatingRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_stopRepeating);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraCaptureSession_updateSharedOutput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureRequest_withPhysicalIds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_createCaptureSessionWithSessionParameters);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_getId);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraDevice_isSessionConfigurationSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_deleteCameraIdList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_getCameraCharacteristics);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_getCameraIdList);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_openCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_registerAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_registerExtendedAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_unregisterAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraManager_unregisterExtendedAvailabilityCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_getAllTags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_getConstEntry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraMetadata_isLogicalMultiCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraOutputTarget_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACameraOutputTarget_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_addTarget);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getAllTags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getConstEntry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getConstEntry_physicalCamera);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_getUserContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_removeTarget);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_double);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_float);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_i32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_i64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_double);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_float);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_i32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_i64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_rational);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_physicalCamera_u8);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_rational);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setEntry_u8);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureRequest_setUserContext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutputContainer_remove);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionOutput_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionPhysicalOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ACaptureSessionSharedOutput_remove);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_abortCaptures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_capture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_getDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_logicalCamera_capture);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_logicalCamera_setRepeatingRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_setRepeatingRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_stopRepeating);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraCaptureSession_updateSharedOutput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureRequest_withPhysicalIds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_createCaptureSessionWithSessionParameters);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_getId);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraDevice_isSessionConfigurationSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_deleteCameraIdList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_getCameraCharacteristics);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_getCameraIdList);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_openCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_registerAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_registerExtendedAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_unregisterAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraManager_unregisterExtendedAvailabilityCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_getAllTags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_getConstEntry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraMetadata_isLogicalMultiCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraOutputTarget_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACameraOutputTarget_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_addTarget);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getAllTags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getConstEntry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getConstEntry_physicalCamera);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_getUserContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_removeTarget);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_double);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_float);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_i32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_i64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_double);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_float);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_i32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_i64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_rational);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_physicalCamera_u8);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_rational);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setEntry_u8);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureRequest_setUserContext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutputContainer_remove);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionOutput_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionPhysicalOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libcamera2ndk.so", ACaptureSessionSharedOutput_remove);
-}
-// clang-format on
diff --git a/libjnigraphics/Android.bp b/libjnigraphics/Android.bp
deleted file mode 100644
index a8a9f43..0000000
--- a/libjnigraphics/Android.bp
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libjnigraphics",
-    overrides: ["libjnigraphics"],
-    stem: "libjnigraphics",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: ["libnative_bridge_guest_libandroid_runtime"],
-}
diff --git a/libjnigraphics/stubs_arm.cc b/libjnigraphics/stubs_arm.cc
deleted file mode 100644
index ada6f80..0000000
--- a/libjnigraphics/stubs_arm.cc
+++ /dev/null
@@ -1,67 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getAlphaFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getAndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getMimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_isAnimated);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromAAsset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_decodeImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_getHeaderInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_getMinimumStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setAndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setCrop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setTargetSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setUnpremultipliedRequired);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_compress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_getDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_getInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_lockPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_unlockPixels);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getAlphaFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getAndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getMimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_isAnimated);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromAAsset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_decodeImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_getHeaderInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_getMinimumStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setAndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setCrop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setTargetSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setUnpremultipliedRequired);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_compress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_getDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_getInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_lockPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_unlockPixels);
-}
-// clang-format on
diff --git a/libjnigraphics/stubs_arm64.cc b/libjnigraphics/stubs_arm64.cc
deleted file mode 100644
index ada6f80..0000000
--- a/libjnigraphics/stubs_arm64.cc
+++ /dev/null
@@ -1,67 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getAlphaFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getAndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getMimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoderHeaderInfo_isAnimated);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromAAsset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_createFromFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_decodeImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_getHeaderInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_getMinimumStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setAndroidBitmapFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setCrop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setTargetSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageDecoder_setUnpremultipliedRequired);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_compress);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_getDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_getInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_lockPixels);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AndroidBitmap_unlockPixels);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getAlphaFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getAndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getMimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoderHeaderInfo_isAnimated);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromAAsset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_createFromFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_decodeImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_getHeaderInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_getMinimumStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setAndroidBitmapFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setCrop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setTargetSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AImageDecoder_setUnpremultipliedRequired);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_compress);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_getDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_getInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_lockPixels);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libjnigraphics.so", AndroidBitmap_unlockPixels);
-}
-// clang-format on
diff --git a/libmediandk/Android.bp b/libmediandk/Android.bp
deleted file mode 100644
index 2066db8..0000000
--- a/libmediandk/Android.bp
+++ /dev/null
@@ -1,41 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libmediandk",
-    overrides: ["libmediandk"],
-    stem: "libmediandk",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        // libgui.so — greylisted, not included.
-        "liblog",
-        // libmedia.so — greylisted, not included.
-        "libnative_bridge_guest_libnativewindow",
-        // libstagefright.so — greylisted, not included.
-        // libui.so — greylisted, not included.
-        "libutils",
-    ],
-}
diff --git a/libmediandk/stubs_arm.cc b/libmediandk/stubs_arm.cc
deleted file mode 100644
index 2a18caf..0000000
--- a/libmediandk/stubs_arm.cc
+++ /dev/null
@@ -1,579 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireLatestImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireLatestImageAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireNextImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireNextImageAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getMaxImages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWindowNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_newWithUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_setBufferRemovedListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_setImageListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_deleteAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getCropRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getNumberOfPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlaneData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlanePixelStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlaneRowStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecActionCode_isRecoverable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecActionCode_isTransient);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getClearBytes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getEncryptedBytes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getIV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getKey);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getNumSubSamples);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_setPattern);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_configure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createCodecByName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createDecoderByType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createEncoderByType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createPersistentInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_dequeueInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_dequeueOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_flush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getBufferFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getInputFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getOutputFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_queueInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_queueSecureInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseCrypto);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseOutputBufferAtTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setAsyncNotifyCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setOutputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setParameters);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_signalEndOfInputStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_start);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_stop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_isCryptoSchemeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_requiresSecureDecoderComponent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_newUri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setClose);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setGetAvailableSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setGetSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setReadAt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setUserdata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_closeSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_createByUUID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_decrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_encrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getKeyRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getPropertyByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getPropertyString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getProvisionRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getSecureStops);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_isCryptoSchemeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_openSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_provideKeyResponse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_provideProvisionResponse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_queryKeyStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_releaseSecureStops);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_removeKeys);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_restoreKeys);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnEventListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnExpirationUpdateListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnKeysChangeListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setPropertyByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setPropertyString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_sign);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_verify);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_advance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getCachedDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getFileFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getPsshInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleCryptoInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleTrackIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getTrackCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getTrackFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_readSampleData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_seekTo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_selectTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSourceCustom);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSourceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_unselectTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_clear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_toString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_addTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_setLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_setOrientationHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_start);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_stop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_writeSampleData);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_ATTENUATION_FACTOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_BOOST_FACTOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_HEAVY_COMPRESSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_TARGET_REFERENCE_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_ENCODED_TARGET_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_SBR_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUM);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUMART);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUMARTIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ARTIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUDIO_PRESENTATION_INFO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUDIO_SESSION_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUTHOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BITRATE_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BITS_PER_SAMPLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BIT_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CAPTURE_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CDTRACKNUMBER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CHANNEL_MASK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_FORMAT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_RANGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_STANDARD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_TRANSFER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPILATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPLEXITY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPOSER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CREATE_INPUT_SURFACE_SUSPENDED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_DEFAULT_IV_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_BYTE_BLOCK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_SIZES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_IV);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_KEY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_PLAIN_SIZES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_SKIP_BYTE_BLOCK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_0);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_1);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_2);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_AVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_HEVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_D263);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISCNUMBER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_CROP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DURATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ENCODER_DELAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ENCODER_PADDING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ESDS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_EXIF_OFFSET);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_EXIF_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FLAC_COMPRESSION_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FRAME_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FRAME_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GENRE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GRID_COLUMNS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GRID_ROWS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HAPTIC_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HDR_STATIC_INFO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ICC_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_INTRA_REFRESH_PERIOD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_ADTS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_AUTOSELECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_DEFAULT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_FORCED_SUBTITLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_SYNC_FRAME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_I_FRAME_INTERVAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LANGUAGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LATENCY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOCATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOOP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOW_LATENCY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LYRICIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MANUFACTURER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_BIT_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_FPS_TO_ENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_INPUT_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_PTS_GAP_TO_ENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MPEG2_STREAM_HEADER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MPEG_USER_DATA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_OPERATING_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PCM_BIG_ENDIAN);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PCM_ENCODING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PRIORITY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PSSH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PUSH_BLANK_BUFFERS_ON_STOP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_REPEAT_PREVIOUS_FRAME_AFTER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ROTATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAMPLE_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAR_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAR_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SEI);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SLICE_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_STRIDE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TARGET_TIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYERING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYER_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYER_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEXT_FORMAT_DATA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_CSD_HEVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_TIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TILE_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TILE_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TIME_US);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TITLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TRACK_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TRACK_INDEX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_VALID_SAMPLES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_YEAR);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireLatestImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireLatestImageAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireNextImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireNextImageAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getMaxImages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWindowNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_newWithUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_setBufferRemovedListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_setImageListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_deleteAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getCropRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getNumberOfPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlaneData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlanePixelStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlaneRowStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecActionCode_isRecoverable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecActionCode_isTransient);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getClearBytes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getEncryptedBytes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getIV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getKey);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getNumSubSamples);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_setPattern);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_configure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createCodecByName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createDecoderByType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createEncoderByType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createPersistentInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_dequeueInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_dequeueOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_flush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getBufferFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getInputFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getOutputFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_queueInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_queueSecureInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseCrypto);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseOutputBufferAtTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setAsyncNotifyCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setOutputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setParameters);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_signalEndOfInputStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_start);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_stop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_isCryptoSchemeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_requiresSecureDecoderComponent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_newUri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setClose);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setGetAvailableSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setGetSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setReadAt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setUserdata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_closeSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_createByUUID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_decrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_encrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getKeyRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getPropertyByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getPropertyString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getProvisionRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getSecureStops);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_isCryptoSchemeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_openSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_provideKeyResponse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_provideProvisionResponse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_queryKeyStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_releaseSecureStops);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_removeKeys);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_restoreKeys);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnEventListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnExpirationUpdateListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnKeysChangeListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setPropertyByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setPropertyString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_sign);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_verify);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_advance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getCachedDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getFileFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getPsshInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleCryptoInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleTrackIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getTrackCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getTrackFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_readSampleData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_seekTo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_selectTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSourceCustom);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSourceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_unselectTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_clear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_toString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_addTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_setLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_setOrientationHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_start);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_stop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_writeSampleData);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_ATTENUATION_FACTOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_BOOST_FACTOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_HEAVY_COMPRESSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_TARGET_REFERENCE_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_ENCODED_TARGET_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_SBR_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUM);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUMART);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUMARTIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ARTIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUDIO_PRESENTATION_INFO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUDIO_SESSION_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUTHOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BITRATE_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BITS_PER_SAMPLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BIT_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CAPTURE_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CDTRACKNUMBER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CHANNEL_MASK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_FORMAT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_RANGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_STANDARD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_TRANSFER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPILATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPLEXITY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPOSER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CREATE_INPUT_SURFACE_SUSPENDED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_DEFAULT_IV_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_BYTE_BLOCK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_SIZES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_IV);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_KEY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_PLAIN_SIZES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_SKIP_BYTE_BLOCK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_0);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_1);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_2);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_AVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_HEVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_D263);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISCNUMBER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_CROP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DURATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ENCODER_DELAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ENCODER_PADDING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ESDS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_EXIF_OFFSET);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_EXIF_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FLAC_COMPRESSION_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FRAME_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FRAME_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GENRE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GRID_COLUMNS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GRID_ROWS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HAPTIC_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HDR_STATIC_INFO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ICC_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_INTRA_REFRESH_PERIOD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_ADTS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_AUTOSELECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_DEFAULT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_FORCED_SUBTITLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_SYNC_FRAME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_I_FRAME_INTERVAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LANGUAGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LATENCY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOCATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOOP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOW_LATENCY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LYRICIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MANUFACTURER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_BIT_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_FPS_TO_ENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_INPUT_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_PTS_GAP_TO_ENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MPEG2_STREAM_HEADER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MPEG_USER_DATA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_OPERATING_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PCM_BIG_ENDIAN);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PCM_ENCODING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PRIORITY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PSSH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PUSH_BLANK_BUFFERS_ON_STOP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_REPEAT_PREVIOUS_FRAME_AFTER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ROTATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAMPLE_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAR_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAR_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SEI);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SLICE_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_STRIDE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TARGET_TIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYERING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYER_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYER_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEXT_FORMAT_DATA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_CSD_HEVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_TIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TILE_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TILE_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TIME_US);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TITLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TRACK_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TRACK_INDEX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_VALID_SAMPLES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_YEAR);
-}
-// clang-format on
diff --git a/libmediandk/stubs_arm64.cc b/libmediandk/stubs_arm64.cc
deleted file mode 100644
index 2a18caf..0000000
--- a/libmediandk/stubs_arm64.cc
+++ /dev/null
@@ -1,579 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireLatestImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireLatestImageAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireNextImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_acquireNextImageAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getMaxImages);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWindow);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_getWindowNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_newWithUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_setBufferRemovedListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImageReader_setImageListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_deleteAsync);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getCropRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getNumberOfPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlaneData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlanePixelStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getPlaneRowStride);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AImage_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecActionCode_isRecoverable);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecActionCode_isTransient);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getClearBytes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getEncryptedBytes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getIV);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getKey);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_getNumSubSamples);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodecCryptoInfo_setPattern);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_configure);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createCodecByName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createDecoderByType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createEncoderByType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_createPersistentInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_dequeueInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_dequeueOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_flush);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getBufferFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getInputFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_getOutputFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_queueInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_queueSecureInputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseCrypto);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseOutputBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_releaseOutputBufferAtTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setAsyncNotifyCallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setInputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setOutputSurface);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_setParameters);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_signalEndOfInputStream);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_start);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCodec_stop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_isCryptoSchemeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaCrypto_requiresSecureDecoderComponent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_close);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_newUri);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setClose);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setGetAvailableSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setGetSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setReadAt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDataSource_setUserdata);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_closeSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_createByUUID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_decrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_encrypt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getKeyRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getPropertyByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getPropertyString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getProvisionRequest);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_getSecureStops);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_isCryptoSchemeSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_openSession);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_provideKeyResponse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_provideProvisionResponse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_queryKeyStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_releaseSecureStops);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_removeKeys);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_restoreKeys);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnEventListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnExpirationUpdateListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setOnKeysChangeListener);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setPropertyByteArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_setPropertyString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_sign);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaDrm_verify);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_advance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getCachedDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getFileFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getPsshInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleCryptoInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleFlags);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getSampleTrackIndex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getTrackCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_getTrackFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_readSampleData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_seekTo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_selectTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSource);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSourceCustom);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_setDataSourceFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaExtractor_unselectTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_clear);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_getString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setDouble);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setFloat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setInt32);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setInt64);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setRect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setSize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_setString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaFormat_toString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_addTrack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_new);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_setLocation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_setOrientationHint);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_start);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_stop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AMediaMuxer_writeSampleData);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_ATTENUATION_FACTOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_BOOST_FACTOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_HEAVY_COMPRESSION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_DRC_TARGET_REFERENCE_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_ENCODED_TARGET_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AAC_SBR_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUM);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUMART);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ALBUMARTIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ARTIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUDIO_PRESENTATION_INFO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUDIO_SESSION_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_AUTHOR);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BITRATE_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BITS_PER_SAMPLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_BIT_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CAPTURE_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CDTRACKNUMBER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CHANNEL_MASK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_FORMAT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_RANGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_STANDARD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COLOR_TRANSFER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPILATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPLEXITY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_COMPOSER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CREATE_INPUT_SURFACE_SUSPENDED);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_DEFAULT_IV_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_BYTE_BLOCK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_SIZES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_IV);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_KEY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_MODE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_PLAIN_SIZES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CRYPTO_SKIP_BYTE_BLOCK);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_0);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_1);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_2);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_AVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_CSD_HEVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_D263);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISCNUMBER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_CROP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DISPLAY_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_DURATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ENCODER_DELAY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ENCODER_PADDING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ESDS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_EXIF_OFFSET);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_EXIF_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FLAC_COMPRESSION_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FRAME_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_FRAME_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GENRE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GRID_COLUMNS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_GRID_ROWS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HAPTIC_CHANNEL_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HDR_STATIC_INFO);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ICC_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_INTRA_REFRESH_PERIOD);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_ADTS);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_AUTOSELECT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_DEFAULT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_FORCED_SUBTITLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_IS_SYNC_FRAME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_I_FRAME_INTERVAL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LANGUAGE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LATENCY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LEVEL);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOCATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOOP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LOW_LATENCY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_LYRICIST);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MANUFACTURER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_BIT_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_FPS_TO_ENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_INPUT_SIZE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_PTS_GAP_TO_ENCODER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MAX_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MPEG2_STREAM_HEADER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_MPEG_USER_DATA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_OPERATING_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PCM_BIG_ENDIAN);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PCM_ENCODING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PRIORITY);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PROFILE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PSSH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_PUSH_BLANK_BUFFERS_ON_STOP);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_REPEAT_PREVIOUS_FRAME_AFTER);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_ROTATION);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAMPLE_RATE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAR_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SAR_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SEI);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_SLICE_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_STRIDE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TARGET_TIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYERING);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYER_COUNT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEMPORAL_LAYER_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TEXT_FORMAT_DATA);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_CSD_HEVC);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_TIME);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_THUMBNAIL_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TILE_HEIGHT);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TILE_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TIME_US);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TITLE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TRACK_ID);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_TRACK_INDEX);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_VALID_SAMPLES);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_WIDTH);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(AMEDIAFORMAT_KEY_YEAR);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireLatestImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireLatestImageAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireNextImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_acquireNextImageAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getMaxImages);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWindow);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_getWindowNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_newWithUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_setBufferRemovedListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImageReader_setImageListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_deleteAsync);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getCropRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getNumberOfPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlaneData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlanePixelStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getPlaneRowStride);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AImage_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecActionCode_isRecoverable);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecActionCode_isTransient);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getClearBytes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getEncryptedBytes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getIV);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getKey);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_getNumSubSamples);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodecCryptoInfo_setPattern);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_configure);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createCodecByName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createDecoderByType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createEncoderByType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_createPersistentInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_dequeueInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_dequeueOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_flush);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getBufferFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getInputFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_getOutputFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_queueInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_queueSecureInputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseCrypto);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseOutputBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_releaseOutputBufferAtTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setAsyncNotifyCallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setInputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setOutputSurface);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_setParameters);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_signalEndOfInputStream);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_start);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCodec_stop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_isCryptoSchemeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaCrypto_requiresSecureDecoderComponent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_close);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_newUri);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setClose);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setGetAvailableSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setGetSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setReadAt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDataSource_setUserdata);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_closeSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_createByUUID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_decrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_encrypt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getKeyRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getPropertyByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getPropertyString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getProvisionRequest);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_getSecureStops);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_isCryptoSchemeSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_openSession);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_provideKeyResponse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_provideProvisionResponse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_queryKeyStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_releaseSecureStops);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_removeKeys);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_restoreKeys);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnEventListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnExpirationUpdateListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setOnKeysChangeListener);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setPropertyByteArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_setPropertyString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_sign);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaDrm_verify);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_advance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getCachedDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getFileFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getPsshInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleCryptoInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleFlags);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getSampleTrackIndex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getTrackCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_getTrackFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_readSampleData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_seekTo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_selectTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSource);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSourceCustom);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_setDataSourceFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaExtractor_unselectTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_clear);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_getString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setDouble);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setFloat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setInt32);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setInt64);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setRect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setSize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_setString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaFormat_toString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_addTrack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_new);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_setLocation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_setOrientationHint);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_start);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_stop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libmediandk.so", AMediaMuxer_writeSampleData);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_ATTENUATION_FACTOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_BOOST_FACTOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_HEAVY_COMPRESSION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_DRC_TARGET_REFERENCE_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_ENCODED_TARGET_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AAC_SBR_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUM);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUMART);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ALBUMARTIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ARTIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUDIO_PRESENTATION_INFO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUDIO_SESSION_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_AUTHOR);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BITRATE_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BITS_PER_SAMPLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_BIT_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CAPTURE_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CDTRACKNUMBER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CHANNEL_MASK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_FORMAT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_RANGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_STANDARD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COLOR_TRANSFER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPILATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPLEXITY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_COMPOSER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CREATE_INPUT_SURFACE_SUSPENDED);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_DEFAULT_IV_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_BYTE_BLOCK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_ENCRYPTED_SIZES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_IV);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_KEY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_MODE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_PLAIN_SIZES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CRYPTO_SKIP_BYTE_BLOCK);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_0);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_1);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_2);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_AVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_CSD_HEVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_D263);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISCNUMBER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_CROP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DISPLAY_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_DURATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ENCODER_DELAY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ENCODER_PADDING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ESDS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_EXIF_OFFSET);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_EXIF_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FLAC_COMPRESSION_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FRAME_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_FRAME_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GENRE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GRID_COLUMNS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_GRID_ROWS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HAPTIC_CHANNEL_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HDR_STATIC_INFO);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ICC_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_INTRA_REFRESH_PERIOD);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_ADTS);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_AUTOSELECT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_DEFAULT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_FORCED_SUBTITLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_IS_SYNC_FRAME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_I_FRAME_INTERVAL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LANGUAGE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LATENCY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LEVEL);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOCATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOOP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LOW_LATENCY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_LYRICIST);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MANUFACTURER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_BIT_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_FPS_TO_ENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_INPUT_SIZE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_PTS_GAP_TO_ENCODER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MAX_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MPEG2_STREAM_HEADER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_MPEG_USER_DATA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_OPERATING_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PCM_BIG_ENDIAN);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PCM_ENCODING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PRIORITY);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PROFILE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PSSH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_PUSH_BLANK_BUFFERS_ON_STOP);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_REPEAT_PREVIOUS_FRAME_AFTER);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_ROTATION);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAMPLE_RATE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAR_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SAR_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SEI);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_SLICE_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_STRIDE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TARGET_TIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYERING);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYER_COUNT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEMPORAL_LAYER_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TEXT_FORMAT_DATA);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_CSD_HEVC);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_TIME);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_THUMBNAIL_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TILE_HEIGHT);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TILE_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TIME_US);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TITLE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TRACK_ID);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_TRACK_INDEX);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_VALID_SAMPLES);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_WIDTH);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libmediandk.so", AMEDIAFORMAT_KEY_YEAR);
-}
-// clang-format on
diff --git a/libnativehelper/Android.bp b/libnativehelper/Android.bp
deleted file mode 100644
index aaf7a4a..0000000
--- a/libnativehelper/Android.bp
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libnativehelper",
-    overrides: ["libnativehelper"],
-    stem: "libnativehelper",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: ["liblog"]
-}
diff --git a/libnativehelper/stubs_arm.cc b/libnativehelper/stubs_arm.cc
deleted file mode 100644
index 9507c7a..0000000
--- a/libnativehelper/stubs_arm.cc
+++ /dev/null
@@ -1,137 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_CreateJavaVM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_GetCreatedJavaVMs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_GetDefaultJavaVMInitArgs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationCreate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationDestroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationGetLibrary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationInit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants12UninitializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants14GetStringClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetNioAccessClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetNioBufferClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetReferenceClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants21GetReferenceGetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants22GetFileDescriptorClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants22GetNioBufferLimitFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants23GetNioBufferArrayMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants24GetNioBufferAddressFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants25GetNioBufferPositionFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants27GetFileDescriptorInitMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants29GetFileDescriptorOwnerIdFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants29GetNioBufferArrayOffsetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants30GetNioAccessGetBaseArrayMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants32EnsureClassReferencesInitializedEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants32GetFileDescriptorDescriptorFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants33GetNioBufferElementSizeShiftFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants36GetNioAccessGetBaseArrayOffsetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13JniInvocation10GetLibraryEPKcPcPFbvEPFiS2_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl10FindSymbolEPPvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl10GetLibraryEPKcPcPFbvEPFiS2_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl16GetJniInvocationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl16JNI_CreateJavaVMEPP7_JavaVMPP7_JNIEnvPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl21JNI_GetCreatedJavaVMsEPP7_JavaVMiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl28JNI_GetDefaultJavaVMInitArgsEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl4InitEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImplC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniCreateFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniCreateString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetFDFromFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferBaseArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferBaseArrayOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetOwnerIdFromFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetReferent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniLogException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniRegisterNativeMethods);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniSetFileDescriptorOfFD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniStrError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowExceptionFmt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowIOException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowNullPointerException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowRuntimeException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniUninitializeConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(newStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(toStringArray);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_CreateJavaVM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_GetCreatedJavaVMs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_GetDefaultJavaVMInitArgs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationCreate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationDestroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationGetLibrary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationInit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants12UninitializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants14GetStringClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetNioAccessClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetNioBufferClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetReferenceClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants21GetReferenceGetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants22GetFileDescriptorClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants22GetNioBufferLimitFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants23GetNioBufferArrayMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants24GetNioBufferAddressFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants25GetNioBufferPositionFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants27GetFileDescriptorInitMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants29GetFileDescriptorOwnerIdFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants29GetNioBufferArrayOffsetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants30GetNioAccessGetBaseArrayMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants32EnsureClassReferencesInitializedEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants32GetFileDescriptorDescriptorFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants33GetNioBufferElementSizeShiftFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants36GetNioAccessGetBaseArrayOffsetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN13JniInvocation10GetLibraryEPKcPcPFbvEPFiS2_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl10FindSymbolEPPvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl10GetLibraryEPKcPcPFbvEPFiS2_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl16GetJniInvocationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl16JNI_CreateJavaVMEPP7_JavaVMPP7_JNIEnvPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl21JNI_GetCreatedJavaVMsEPP7_JavaVMiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl28JNI_GetDefaultJavaVMInitArgsEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl4InitEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImplC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniCreateFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniCreateString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetFDFromFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferBaseArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferBaseArrayOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetOwnerIdFromFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetReferent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniLogException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniRegisterNativeMethods);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniSetFileDescriptorOfFD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniStrError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowExceptionFmt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowIOException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowNullPointerException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowRuntimeException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniUninitializeConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", newStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", toStringArray);
-}
-// clang-format on
diff --git a/libnativehelper/stubs_arm64.cc b/libnativehelper/stubs_arm64.cc
deleted file mode 100644
index 9507c7a..0000000
--- a/libnativehelper/stubs_arm64.cc
+++ /dev/null
@@ -1,137 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_CreateJavaVM);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_GetCreatedJavaVMs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_GetDefaultJavaVMInitArgs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationCreate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationDestroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationGetLibrary);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JniInvocationInit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants12UninitializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants14GetStringClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetNioAccessClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetNioBufferClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants17GetReferenceClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants21GetReferenceGetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants22GetFileDescriptorClassEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants22GetNioBufferLimitFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants23GetNioBufferArrayMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants24GetNioBufferAddressFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants25GetNioBufferPositionFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants27GetFileDescriptorInitMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants29GetFileDescriptorOwnerIdFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants29GetNioBufferArrayOffsetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants30GetNioAccessGetBaseArrayMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants32EnsureClassReferencesInitializedEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants32GetFileDescriptorDescriptorFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants33GetNioBufferElementSizeShiftFieldEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN12JniConstants36GetNioAccessGetBaseArrayOffsetMethodEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN13JniInvocation10GetLibraryEPKcPcPFbvEPFiS2_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl10FindSymbolEPPvPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl10GetLibraryEPKcPcPFbvEPFiS2_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl16GetJniInvocationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl16JNI_CreateJavaVMEPP7_JavaVMPP7_JNIEnvPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl21JNI_GetCreatedJavaVMsEPP7_JavaVMiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl28JNI_GetDefaultJavaVMInitArgsEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImpl4InitEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImplC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN17JniInvocationImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniCreateFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniCreateString);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetFDFromFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferBaseArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferBaseArrayOffset);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetNioBufferPointer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetOwnerIdFromFileDescriptor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniGetReferent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniLogException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniRegisterNativeMethods);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniSetFileDescriptorOfFD);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniStrError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowExceptionFmt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowIOException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowNullPointerException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniThrowRuntimeException);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(jniUninitializeConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(newStringArray);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(toStringArray);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_CreateJavaVM);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_GetCreatedJavaVMs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JNI_GetDefaultJavaVMInitArgs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationCreate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationDestroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationGetLibrary);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", JniInvocationInit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants12UninitializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants14GetStringClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetNioAccessClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetNioBufferClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants17GetReferenceClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants21GetReferenceGetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants22GetFileDescriptorClassEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants22GetNioBufferLimitFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants23GetNioBufferArrayMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants24GetNioBufferAddressFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants25GetNioBufferPositionFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants27GetFileDescriptorInitMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants29GetFileDescriptorOwnerIdFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants29GetNioBufferArrayOffsetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants30GetNioAccessGetBaseArrayMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants32EnsureClassReferencesInitializedEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants32GetFileDescriptorDescriptorFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants33GetNioBufferElementSizeShiftFieldEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN12JniConstants36GetNioAccessGetBaseArrayOffsetMethodEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN13JniInvocation10GetLibraryEPKcPcPFbvEPFiS2_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl10FindSymbolEPPvPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl10GetLibraryEPKcPcPFbvEPFiS2_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl16GetJniInvocationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl16JNI_CreateJavaVMEPP7_JavaVMPP7_JNIEnvPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl21JNI_GetCreatedJavaVMsEPP7_JavaVMiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl28JNI_GetDefaultJavaVMInitArgsEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImpl4InitEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImplC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", _ZN17JniInvocationImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniCreateFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniCreateString);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetFDFromFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferBaseArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferBaseArrayOffset);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetNioBufferPointer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetOwnerIdFromFileDescriptor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniGetReferent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniLogException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniRegisterNativeMethods);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniSetFileDescriptorOfFD);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniStrError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowExceptionFmt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowIOException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowNullPointerException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniThrowRuntimeException);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", jniUninitializeConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", newStringArray);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativehelper.so", toStringArray);
-}
-// clang-format on
diff --git a/libnativewindow/Android.bp b/libnativewindow/Android.bp
deleted file mode 100644
index 913a332..0000000
--- a/libnativewindow/Android.bp
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libnativewindow",
-    overrides: ["libnativewindow"],
-    stem: "libnativewindow",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        "libcutils",
-        "liblog",
-        // libui.so — greylisted, not included.
-        "libutils",
-    ],
-}
diff --git a/libnativewindow/stubs_arm.cc b/libnativewindow/stubs_arm.cc
deleted file mode 100644
index a636a9f..0000000
--- a/libnativewindow/stubs_arm.cc
+++ /dev/null
@@ -1,133 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_allocate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_createFromHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_describe);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_getNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_isSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockAndGetInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_recvHandleFromUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_sendHandleToUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindowBuffer_getHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_OemStorageGet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_OemStorageSet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_cancelBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_dequeueBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getBuffersDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastDequeueDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastDequeueStartTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastQueueDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_query);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_queryf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_queueBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setAutoPrerotation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setAutoRefresh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBufferCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersTransform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setDequeueTimeout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setSharedBufferMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setSwapInterval);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_unlockAndPost);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32AHardwareBuffer_to_GraphicBufferEP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32AHardwareBuffer_to_GraphicBufferEPK15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34AHardwareBuffer_from_GraphicBufferEPNS_13GraphicBufferE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34AHardwareBuffer_isValidPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36AHardwareBuffer_convertToPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_convertFromPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_to_ANativeWindowBufferEP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_to_ANativeWindowBufferEPK15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41AHardwareBuffer_convertToGrallocUsageBitsEy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43AHardwareBuffer_convertFromGrallocUsageBitsEy);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_allocate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_createFromHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_describe);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_getNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_isSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lockAndGetInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lockPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_recvHandleFromUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_sendHandleToUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindowBuffer_getHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_OemStorageGet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_OemStorageSet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_cancelBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_dequeueBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getBuffersDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastDequeueDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastDequeueStartTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastQueueDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_query);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_queryf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_queueBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setAutoPrerotation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setAutoRefresh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBufferCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersTransform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setDequeueTimeout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setSharedBufferMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setSwapInterval);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_unlockAndPost);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android32AHardwareBuffer_to_GraphicBufferEP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android32AHardwareBuffer_to_GraphicBufferEPK15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android34AHardwareBuffer_from_GraphicBufferEPNS_13GraphicBufferE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android34AHardwareBuffer_isValidPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android36AHardwareBuffer_convertToPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_convertFromPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_to_ANativeWindowBufferEP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_to_ANativeWindowBufferEPK15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android41AHardwareBuffer_convertToGrallocUsageBitsEy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android43AHardwareBuffer_convertFromGrallocUsageBitsEy);
-}
-// clang-format on
diff --git a/libnativewindow/stubs_arm64.cc b/libnativewindow/stubs_arm64.cc
deleted file mode 100644
index f4570a1..0000000
--- a/libnativewindow/stubs_arm64.cc
+++ /dev/null
@@ -1,133 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_allocate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_createFromHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_describe);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_getNativeHandle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_isSupported);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockAndGetInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_lockPlanes);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_recvHandleFromUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_sendHandleToUnixSocket);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(AHardwareBuffer_unlock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindowBuffer_getHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_OemStorageGet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_OemStorageSet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_acquire);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_cancelBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_dequeueBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getBuffersDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getHeight);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastDequeueDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastDequeueStartTime);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getLastQueueDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_getWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_lock);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_query);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_queryf);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_queueBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_release);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setAutoPrerotation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setAutoRefresh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBufferCount);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersDataSpace);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersFormat);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersGeometry);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setBuffersTransform);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setDequeueTimeout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setSharedBufferMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setSwapInterval);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_setUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANativeWindow_unlockAndPost);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32AHardwareBuffer_to_GraphicBufferEP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android32AHardwareBuffer_to_GraphicBufferEPK15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34AHardwareBuffer_from_GraphicBufferEPNS_13GraphicBufferE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android34AHardwareBuffer_isValidPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android36AHardwareBuffer_convertToPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_convertFromPixelFormatEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_to_ANativeWindowBufferEP15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android38AHardwareBuffer_to_ANativeWindowBufferEPK15AHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android41AHardwareBuffer_convertToGrallocUsageBitsEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android43AHardwareBuffer_convertFromGrallocUsageBitsEm);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_allocate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_createFromHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_describe);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_getNativeHandle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_isSupported);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lockAndGetInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_lockPlanes);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_recvHandleFromUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_sendHandleToUnixSocket);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", AHardwareBuffer_unlock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindowBuffer_getHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_OemStorageGet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_OemStorageSet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_acquire);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_cancelBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_dequeueBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getBuffersDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getHeight);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastDequeueDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastDequeueStartTime);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getLastQueueDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_getWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_lock);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_query);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_queryf);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_queueBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_release);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setAutoPrerotation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setAutoRefresh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBufferCount);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersDataSpace);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersFormat);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersGeometry);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setBuffersTransform);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setDequeueTimeout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setSharedBufferMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setSwapInterval);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_setUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", ANativeWindow_unlockAndPost);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android32AHardwareBuffer_to_GraphicBufferEP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android32AHardwareBuffer_to_GraphicBufferEPK15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android34AHardwareBuffer_from_GraphicBufferEPNS_13GraphicBufferE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android34AHardwareBuffer_isValidPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android36AHardwareBuffer_convertToPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_convertFromPixelFormatEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_to_ANativeWindowBufferEP15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android38AHardwareBuffer_to_ANativeWindowBufferEPK15AHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android41AHardwareBuffer_convertToGrallocUsageBitsEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libnativewindow.so", _ZN7android43AHardwareBuffer_convertFromGrallocUsageBitsEm);
-}
-// clang-format on
diff --git a/libneuralnetworks/Android.bp b/libneuralnetworks/Android.bp
deleted file mode 100644
index 345f92b..0000000
--- a/libneuralnetworks/Android.bp
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libneuralnetworks",
-    overrides: ["libneuralnetworks"],
-    stem: "libneuralnetworks",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libnativewindow",
-        // libui.so — greylisted, not included.
-        "libutils",
-    ],
-}
diff --git a/libneuralnetworks/stubs_arm.cc b/libneuralnetworks/stubs_arm.cc
deleted file mode 100644
index 59560dd..0000000
--- a/libneuralnetworks/stubs_arm.cc
+++ /dev/null
@@ -1,133 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksBurst_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksBurst_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_createForDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_setCaching);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_setPreference);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getExtensionSupport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getFeatureLevel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksEvent_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksEvent_wait);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_burstCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_compute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getOutputOperandDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getOutputOperandRank);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setInputFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setMeasureTiming);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setOutput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setOutputFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_startCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_addInputRole);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_addOutputRole);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_setDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromAHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_addOperand);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_addOperation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getExtensionOperandType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getExtensionOperationType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getSupportedOperationsForDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_identifyInputsAndOutputs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_relaxComputationFloat32toFloat16);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandExtensionData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandSymmPerChannelQuantParams);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandValueFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworks_getDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworks_getDeviceCount);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksBurst_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksBurst_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_createForDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_setCaching);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_setPreference);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getExtensionSupport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getFeatureLevel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksEvent_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksEvent_wait);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_burstCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_compute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getOutputOperandDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getOutputOperandRank);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setInputFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setMeasureTiming);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setOutput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setOutputFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_startCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_addInputRole);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_addOutputRole);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_setDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromAHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_addOperand);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_addOperation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getExtensionOperandType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getExtensionOperationType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getSupportedOperationsForDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_identifyInputsAndOutputs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_relaxComputationFloat32toFloat16);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandExtensionData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandSymmPerChannelQuantParams);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandValueFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworks_getDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworks_getDeviceCount);
-}
-// clang-format on
diff --git a/libneuralnetworks/stubs_arm64.cc b/libneuralnetworks/stubs_arm64.cc
deleted file mode 100644
index 59560dd..0000000
--- a/libneuralnetworks/stubs_arm64.cc
+++ /dev/null
@@ -1,133 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksBurst_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksBurst_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_createForDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_setCaching);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksCompilation_setPreference);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getExtensionSupport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getFeatureLevel);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getName);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksDevice_getVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksEvent_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksEvent_wait);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_burstCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_compute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getDuration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getOutputOperandDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_getOutputOperandRank);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setInput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setInputFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setMeasureTiming);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setOutput);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_setOutputFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_startCompute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_addInputRole);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_addOutputRole);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemoryDesc_setDimensions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_copy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromAHardwareBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromDesc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_createFromFd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksMemory_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_addOperand);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_addOperation);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_finish);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_free);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getExtensionOperandType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getExtensionOperationType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_getSupportedOperationsForDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_identifyInputsAndOutputs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_relaxComputationFloat32toFloat16);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandExtensionData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandSymmPerChannelQuantParams);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksModel_setOperandValueFromMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworks_getDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworks_getDeviceCount);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksBurst_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksBurst_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_createForDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_setCaching);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksCompilation_setPreference);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getExtensionSupport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getFeatureLevel);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getName);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksDevice_getVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksEvent_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksEvent_wait);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_burstCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_compute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getDuration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getOutputOperandDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_getOutputOperandRank);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setInput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setInputFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setMeasureTiming);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setOutput);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_setOutputFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_startCompute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_addInputRole);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_addOutputRole);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemoryDesc_setDimensions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_copy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromAHardwareBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromDesc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_createFromFd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksMemory_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_addOperand);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_addOperation);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_finish);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_free);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getExtensionOperandType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getExtensionOperationType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_getSupportedOperationsForDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_identifyInputsAndOutputs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_relaxComputationFloat32toFloat16);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandExtensionData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandSymmPerChannelQuantParams);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksModel_setOperandValueFromMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworks_getDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworks_getDeviceCount);
-}
-// clang-format on
diff --git a/libvulkan/Android.bp b/libvulkan/Android.bp
deleted file mode 100644
index b1aa29e..0000000
--- a/libvulkan/Android.bp
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libvulkan",
-    overrides: ["libvulkan"],
-    stem: "libvulkan",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: [
-        // libbinder.so — greylisted, not included.
-        "libcutils",
-        "liblog",
-        "libnative_bridge_guest_libnativewindow",
-        // libui.so — greylisted, not included.
-        "libutils",
-    ],
-}
diff --git a/libvulkan/stubs_arm.cc b/libvulkan/stubs_arm.cc
deleted file mode 100644
index ffbd0cf..0000000
--- a/libvulkan/stubs_arm.cc
+++ /dev/null
@@ -1,391 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_convertGralloc0To1Usage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_convertGralloc1To0Usage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAcquireNextImage2KHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAcquireNextImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateCommandBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBeginCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindBufferMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindBufferMemory2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindImageMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindImageMemory2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBeginRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindIndexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindVertexBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBlitImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearAttachments);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearColorImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearDepthStencilImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyBufferToImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyImageToBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyQueryPoolResults);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatch);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatchBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatchIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDraw);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndexed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndexedIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdEndRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdExecuteCommands);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdFillBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdNextSubpass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdPipelineBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdPushConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResetQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResolveImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetBlendConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDepthBias);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDepthBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDeviceMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilCompareMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilReference);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilWriteMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdUpdateBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdWaitEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdWriteTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateAndroidSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateBufferView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateComputePipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorSetLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorUpdateTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateFence);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateGraphicsPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateImageView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreatePipelineCache);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreatePipelineLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSamplerYcbcrConversion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSemaphore);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateShaderModule);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSwapchainKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyBufferView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorSetLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorUpdateTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyFence);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyImageView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipelineCache);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipelineLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySamplerYcbcrConversion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySemaphore);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyShaderModule);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySwapchainKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDeviceWaitIdle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEndCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateDeviceExtensionProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateDeviceLayerProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceExtensionProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceLayerProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumeratePhysicalDeviceGroups);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumeratePhysicalDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFlushMappedMemoryRanges);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeCommandBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetAndroidHardwareBufferPropertiesANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetBufferMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetBufferMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDescriptorSetLayoutSupport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupPeerMemoryFeatures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupPresentCapabilitiesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupSurfacePresentModesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceMemoryCommitment);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceProcAddr);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceQueue2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetEventStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetFenceStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSparseMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSparseMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSubresourceLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetInstanceProcAddr);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetMemoryAndroidHardwareBufferANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalBufferProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalFenceProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalSemaphoreProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFeatures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFeatures2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceImageFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceImageFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceMemoryProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceMemoryProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDevicePresentRectanglesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceQueueFamilyProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceQueueFamilyProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSparseImageFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSparseImageFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceCapabilitiesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceFormatsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfacePresentModesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceSupportKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPipelineCacheData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetQueryPoolResults);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetRenderAreaGranularity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetSwapchainImagesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkInvalidateMappedMemoryRanges);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkMapMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkMergePipelineCaches);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueBindSparse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueuePresentKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueSubmit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueWaitIdle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetFences);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkSetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkTrimCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUnmapMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUpdateDescriptorSetWithTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUpdateDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkWaitForFences);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", android_convertGralloc0To1Usage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", android_convertGralloc1To0Usage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAcquireNextImage2KHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAcquireNextImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateCommandBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBeginCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindBufferMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindBufferMemory2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindImageMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindImageMemory2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBeginRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindIndexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindVertexBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBlitImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearAttachments);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearColorImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearDepthStencilImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyBufferToImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyImageToBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyQueryPoolResults);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatch);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatchBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatchIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDraw);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndexed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndexedIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdEndRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdExecuteCommands);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdFillBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdNextSubpass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdPipelineBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdPushConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResetQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResolveImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetBlendConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDepthBias);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDepthBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDeviceMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilCompareMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilReference);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilWriteMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdUpdateBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdWaitEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdWriteTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateAndroidSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateBufferView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateComputePipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorSetLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorUpdateTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateFence);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateGraphicsPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateImageView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreatePipelineCache);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreatePipelineLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSamplerYcbcrConversion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSemaphore);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateShaderModule);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSwapchainKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyBufferView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorSetLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorUpdateTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyFence);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyImageView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipelineCache);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipelineLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySamplerYcbcrConversion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySemaphore);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyShaderModule);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySwapchainKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDeviceWaitIdle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEndCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateDeviceExtensionProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateDeviceLayerProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceExtensionProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceLayerProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumeratePhysicalDeviceGroups);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumeratePhysicalDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFlushMappedMemoryRanges);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeCommandBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetAndroidHardwareBufferPropertiesANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetBufferMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetBufferMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDescriptorSetLayoutSupport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupPeerMemoryFeatures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupPresentCapabilitiesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupSurfacePresentModesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceMemoryCommitment);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceProcAddr);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceQueue2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetEventStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetFenceStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSparseMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSparseMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSubresourceLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetInstanceProcAddr);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetMemoryAndroidHardwareBufferANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalBufferProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalFenceProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalSemaphoreProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFeatures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFeatures2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceImageFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceImageFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceMemoryProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceMemoryProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDevicePresentRectanglesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceQueueFamilyProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceQueueFamilyProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSparseImageFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSparseImageFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceCapabilitiesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceFormatsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfacePresentModesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceSupportKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPipelineCacheData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetQueryPoolResults);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetRenderAreaGranularity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetSwapchainImagesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkInvalidateMappedMemoryRanges);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkMapMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkMergePipelineCaches);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueBindSparse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueuePresentKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueSubmit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueWaitIdle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetFences);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkSetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkTrimCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUnmapMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUpdateDescriptorSetWithTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUpdateDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkWaitForFences);
-}
-// clang-format on
diff --git a/libvulkan/stubs_arm64.cc b/libvulkan/stubs_arm64.cc
deleted file mode 100644
index ffbd0cf..0000000
--- a/libvulkan/stubs_arm64.cc
+++ /dev/null
@@ -1,391 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_convertGralloc0To1Usage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_convertGralloc1To0Usage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAcquireNextImage2KHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAcquireNextImageKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateCommandBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkAllocateMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBeginCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindBufferMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindBufferMemory2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindImageMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkBindImageMemory2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBeginQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBeginRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindIndexBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBindVertexBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdBlitImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearAttachments);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearColorImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdClearDepthStencilImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyBufferToImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyImageToBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdCopyQueryPoolResults);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatch);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatchBase);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDispatchIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDraw);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndexed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndexedIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdDrawIndirect);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdEndQuery);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdEndRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdExecuteCommands);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdFillBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdNextSubpass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdPipelineBarrier);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdPushConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResetQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdResolveImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetBlendConstants);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDepthBias);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDepthBounds);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetDeviceMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetLineWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetScissor);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilCompareMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilReference);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetStencilWriteMask);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdSetViewport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdUpdateBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdWaitEvents);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCmdWriteTimestamp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateAndroidSurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateBufferView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateComputePipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorSetLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDescriptorUpdateTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateFence);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateGraphicsPipelines);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateImageView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreatePipelineCache);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreatePipelineLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSamplerYcbcrConversion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSemaphore);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateShaderModule);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkCreateSwapchainKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyBufferView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorSetLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDescriptorUpdateTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyDevice);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyFence);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyFramebuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyImage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyImageView);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyInstance);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipeline);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipelineCache);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyPipelineLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyQueryPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyRenderPass);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySampler);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySamplerYcbcrConversion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySemaphore);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroyShaderModule);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySurfaceKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDestroySwapchainKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkDeviceWaitIdle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEndCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateDeviceExtensionProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateDeviceLayerProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceExtensionProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceLayerProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumerateInstanceVersion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumeratePhysicalDeviceGroups);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkEnumeratePhysicalDevices);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFlushMappedMemoryRanges);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeCommandBuffers);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkFreeMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetAndroidHardwareBufferPropertiesANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetBufferMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetBufferMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDescriptorSetLayoutSupport);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupPeerMemoryFeatures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupPresentCapabilitiesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceGroupSurfacePresentModesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceMemoryCommitment);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceProcAddr);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceQueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetDeviceQueue2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetEventStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetFenceStatus);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSparseMemoryRequirements);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSparseMemoryRequirements2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetImageSubresourceLayout);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetInstanceProcAddr);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetMemoryAndroidHardwareBufferANDROID);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalBufferProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalFenceProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceExternalSemaphoreProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFeatures);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFeatures2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceImageFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceImageFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceMemoryProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceMemoryProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDevicePresentRectanglesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceQueueFamilyProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceQueueFamilyProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSparseImageFormatProperties);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSparseImageFormatProperties2);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceCapabilitiesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceFormatsKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfacePresentModesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPhysicalDeviceSurfaceSupportKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetPipelineCacheData);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetQueryPoolResults);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetRenderAreaGranularity);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkGetSwapchainImagesKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkInvalidateMappedMemoryRanges);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkMapMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkMergePipelineCaches);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueBindSparse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueuePresentKHR);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueSubmit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkQueueWaitIdle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetCommandBuffer);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetDescriptorPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkResetFences);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkSetEvent);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkTrimCommandPool);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUnmapMemory);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUpdateDescriptorSetWithTemplate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkUpdateDescriptorSets);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vkWaitForFences);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", android_convertGralloc0To1Usage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", android_convertGralloc1To0Usage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAcquireNextImage2KHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAcquireNextImageKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateCommandBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkAllocateMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBeginCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindBufferMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindBufferMemory2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindImageMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkBindImageMemory2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBeginQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBeginRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindIndexBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBindVertexBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdBlitImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearAttachments);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearColorImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdClearDepthStencilImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyBufferToImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyImageToBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdCopyQueryPoolResults);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatch);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatchBase);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDispatchIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDraw);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndexed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndexedIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdDrawIndirect);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdEndQuery);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdEndRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdExecuteCommands);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdFillBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdNextSubpass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdPipelineBarrier);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdPushConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResetQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdResolveImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetBlendConstants);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDepthBias);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDepthBounds);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetDeviceMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetLineWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetScissor);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilCompareMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilReference);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetStencilWriteMask);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdSetViewport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdUpdateBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdWaitEvents);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCmdWriteTimestamp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateAndroidSurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateBufferView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateComputePipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorSetLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDescriptorUpdateTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateFence);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateGraphicsPipelines);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateImageView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreatePipelineCache);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreatePipelineLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSamplerYcbcrConversion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSemaphore);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateShaderModule);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkCreateSwapchainKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyBufferView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorSetLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDescriptorUpdateTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyDevice);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyFence);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyFramebuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyImage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyImageView);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyInstance);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipeline);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipelineCache);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyPipelineLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyQueryPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyRenderPass);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySampler);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySamplerYcbcrConversion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySemaphore);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroyShaderModule);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySurfaceKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDestroySwapchainKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkDeviceWaitIdle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEndCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateDeviceExtensionProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateDeviceLayerProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceExtensionProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceLayerProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumerateInstanceVersion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumeratePhysicalDeviceGroups);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkEnumeratePhysicalDevices);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFlushMappedMemoryRanges);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeCommandBuffers);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkFreeMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetAndroidHardwareBufferPropertiesANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetBufferMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetBufferMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDescriptorSetLayoutSupport);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupPeerMemoryFeatures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupPresentCapabilitiesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceGroupSurfacePresentModesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceMemoryCommitment);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceProcAddr);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceQueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetDeviceQueue2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetEventStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetFenceStatus);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSparseMemoryRequirements);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSparseMemoryRequirements2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetImageSubresourceLayout);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetInstanceProcAddr);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetMemoryAndroidHardwareBufferANDROID);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalBufferProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalFenceProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceExternalSemaphoreProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFeatures);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFeatures2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceImageFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceImageFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceMemoryProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceMemoryProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDevicePresentRectanglesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceQueueFamilyProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceQueueFamilyProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSparseImageFormatProperties);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSparseImageFormatProperties2);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceCapabilitiesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceFormatsKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfacePresentModesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPhysicalDeviceSurfaceSupportKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetPipelineCacheData);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetQueryPoolResults);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetRenderAreaGranularity);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkGetSwapchainImagesKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkInvalidateMappedMemoryRanges);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkMapMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkMergePipelineCaches);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueBindSparse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueuePresentKHR);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueSubmit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkQueueWaitIdle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetCommandBuffer);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetDescriptorPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkResetFences);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkSetEvent);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkTrimCommandPool);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUnmapMemory);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUpdateDescriptorSetWithTemplate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkUpdateDescriptorSets);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libvulkan.so", vkWaitForFences);
-}
-// clang-format on
diff --git a/libwebviewchromium_plat_support/Android.bp b/libwebviewchromium_plat_support/Android.bp
deleted file mode 100644
index 2321036..0000000
--- a/libwebviewchromium_plat_support/Android.bp
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libwebviewchromium_plat_support",
-    overrides: ["libwebviewchromium_plat_support"],
-    stem: "libwebviewchromium_plat_support",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    // We don't track dependencies of libandroid_runtime because we are only
-    // providing a fake implementation without full compatibility.
-}
diff --git a/libwebviewchromium_plat_support/stubs_arm.cc b/libwebviewchromium_plat_support/stubs_arm.cc
deleted file mode 100644
index 0e90963..0000000
--- a/libwebviewchromium_plat_support/stubs_arm.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_OnLoad);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl11UnmapStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl15GetStrideStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl21GetNativeBufferStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl3MapE9AwMapModePPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl5UnmapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl6CreateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl7ReleaseEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl9MapStaticEl9AwMapModePPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImplC2Ejj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19RegisterDrawFunctorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20RaiseFileNumberLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android21RegisterDrawGLFunctorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android21RegisterGraphicsUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl15GetNativeBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl9GetStrideEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl9InitCheckEv);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", JNI_OnLoad);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl11UnmapStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl15GetStrideStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl21GetNativeBufferStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl3MapE9AwMapModePPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl5UnmapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl6CreateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl7ReleaseEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl9MapStaticEl9AwMapModePPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImplC2Ejj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android19RegisterDrawFunctorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android20RaiseFileNumberLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android21RegisterDrawGLFunctorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android21RegisterGraphicsUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl15GetNativeBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl9GetStrideEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl9InitCheckEv);
-}
-// clang-format on
diff --git a/libwebviewchromium_plat_support/stubs_arm64.cc b/libwebviewchromium_plat_support/stubs_arm64.cc
deleted file mode 100644
index 0e90963..0000000
--- a/libwebviewchromium_plat_support/stubs_arm64.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(JNI_OnLoad);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl11UnmapStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl15GetStrideStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl21GetNativeBufferStaticEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl3MapE9AwMapModePPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl5UnmapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl6CreateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl7ReleaseEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImpl9MapStaticEl9AwMapModePPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImplC2Ejj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android17GraphicBufferImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android19RegisterDrawFunctorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android20RaiseFileNumberLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android21RegisterDrawGLFunctorEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN7android21RegisterGraphicsUtilsEP7_JNIEnv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl15GetNativeBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl9GetStrideEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK7android17GraphicBufferImpl9InitCheckEv);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", JNI_OnLoad);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl11UnmapStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl15GetStrideStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl21GetNativeBufferStaticEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl3MapE9AwMapModePPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl5UnmapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl6CreateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl7ReleaseEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImpl9MapStaticEl9AwMapModePPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImplC2Ejj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android17GraphicBufferImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android19RegisterDrawFunctorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android20RaiseFileNumberLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android21RegisterDrawGLFunctorEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZN7android21RegisterGraphicsUtilsEP7_JNIEnv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl15GetNativeBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl9GetStrideEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libwebviewchromium_plat_support.so", _ZNK7android17GraphicBufferImpl9InitCheckEv);
-}
-// clang-format on
diff --git a/linker/Android.bp b/linker/Android.bp
deleted file mode 100644
index aed9edf..0000000
--- a/linker/Android.bp
+++ /dev/null
@@ -1,72 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library_headers {
-    name: "native_bridge_guest_linker_headers",
-    export_include_dirs: ["include"],
-    host_supported: true,
-    native_bridge_supported: true,
-}
-
-cc_binary {
-    name: "native_bridge_guest_linker",
-    overrides: ["linker"],
-    stem: "linker",
-    defaults: ["linker_bin_template"],
-    srcs: [
-        "__libc_init_main_thread.cpp",
-        "linker_tls.cpp",
-        "linker_translate_path.cpp",
-    ],
-
-    include_dirs: [
-        "bionic/linker",
-    ],
-
-    enabled: false,
-    arch: {
-        arm: {
-            srcs: ["init_static_tls_arm.S"],
-            version_script: "linker.arm.map",
-            enabled: true,
-        },
-        arm64: {
-            srcs: ["init_static_tls_arm64.S"],
-            version_script: "linker.generic.map",
-            enabled: true,
-        },
-    },
-
-    cflags: [
-        // TODO(b/133135269): workaround to skip hardcoded 'bootstrap' directory from guest library search.
-        // See https://android-review.googlesource.com/c/platform/bionic/+/954353/7/linker/linker.cpp#1165
-        "-D__ANDROID_APEX__=native_bridge_apex",
-    ],
-
-    header_libs: ["native_bridge_guest_linker_headers"],
-
-    native_bridge_supported: true,
-
-    multilib: {
-        lib64: {
-            suffix: "64",
-        },
-    },
-
-    compile_multilib: "both",
-
-    static_libs: ["liblinker_debuggerd_stub"],
-}
diff --git a/linker/__libc_init_main_thread.cpp b/linker/__libc_init_main_thread.cpp
deleted file mode 100644
index fea38b2..0000000
--- a/linker/__libc_init_main_thread.cpp
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <async_safe/log.h>
-
-#include "bionic/pthread_internal.h"
-#include "native_bridge_support/linker/static_tls_config.h"
-#include "private/KernelArgumentBlock.h"
-#include "private/bionic_arc4random.h"
-#include "private/bionic_elf_tls.h"
-#include "private/bionic_globals.h"
-#include "private/bionic_ssp.h"
-#include "private/bionic_tls.h"
-
-// Once the loader has calculated the size of static TLS, report the information
-// to the host so it can allocate the static TLS of future threads.
-extern "C" void __native_bridge_config_static_tls(const NativeBridgeStaticTlsConfig* config);
-
-// Get the current thread's host pthread_internal_t.
-extern "C" pthread_t __native_bridge_get_host_pthread();
-
-// The host has already initialized the thread and created its
-// pthread_internal_t object. The guest needs to initialize its globals and the
-// main thread's guest static TLS memory.
-extern "C" void __libc_init_main_thread_early(const KernelArgumentBlock& args,
-                                              bionic_tcb* temp_tcb) {
-  __libc_shared_globals()->auxv = args.auxv;
-#if defined(__i386__)
-  __libc_init_sysinfo();
-#endif
-  // TCB layout is different between host and guest, so initialize the guest
-  // TCB. Reuse the host's pthread_internal_t and bionic_tls objects.
-  auto host_thread = reinterpret_cast<pthread_internal_t*>(__native_bridge_get_host_pthread());
-  __init_tcb(temp_tcb, host_thread);
-  __set_tls(&temp_tcb->tls_slot(0));
-}
-
-extern "C" void __libc_init_main_thread_late() {
-  // Reuse the host's bionic_tls structure.
-  __get_tls()[TLS_SLOT_BIONIC_TLS] = __get_thread()->bionic_tls;
-
-  // There's currently no way for the guest to query the host's stack guard
-  // cookie, so just generate a new one.
-  __libc_safe_arc4random_buf(&__stack_chk_guard, sizeof(__stack_chk_guard));
-  __init_tcb_stack_guard(__get_bionic_tcb());
-}
-
-extern "C" void __libc_init_main_thread_final() {
-  const StaticTlsLayout& layout = __libc_shared_globals()->static_tls_layout;
-
-  // Prepare the initialization image for the host.
-  char* init_img = new char[layout.size()]{};
-  __init_static_tls(init_img);
-  bionic_tcb img_tcb = {};
-  __init_tcb_dtv(&img_tcb);
-  __init_tcb_stack_guard(&img_tcb);
-  memcpy(init_img + layout.offset_bionic_tcb(), &img_tcb, sizeof(img_tcb));
-
-  // Configure the host to create guest static TLS memory for new threads. The
-  // host will replace the guest main thread's static TLS with memory it
-  // allocates.
-  NativeBridgeStaticTlsConfig config{};
-  config.size = layout.size();
-  config.tpoff = layout.offset_thread_pointer();
-  config.tls_slot_thread_id = TLS_SLOT_THREAD_ID;
-  config.tls_slot_bionic_tls = TLS_SLOT_BIONIC_TLS;
-  config.init_img = init_img;
-  __native_bridge_config_static_tls(&config);
-}
diff --git a/linker/include/native_bridge_support/linker/static_tls_config.h b/linker/include/native_bridge_support/linker/static_tls_config.h
deleted file mode 100644
index d28198c..0000000
--- a/linker/include/native_bridge_support/linker/static_tls_config.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef NATIVE_BRIDGE_SUPPORT_LINKER_STATIC_TLS_CONFIG_H_
-#define NATIVE_BRIDGE_SUPPORT_LINKER_STATIC_TLS_CONFIG_H_
-
-#include <stdlib.h>
-
-struct NativeBridgeStaticTlsConfig {
-  // The size will be a multiple of the static TLS memory's alignment, which is
-  // at most one page.
-  size_t size;
-
-  // The offset from the start of static TLS to the thread pointer.
-  size_t tpoff;
-
-  // Image to initialize the static TLS with. This image covers the entire area.
-  const void* init_img;
-
-  // The guest's value for TLS_SLOT_THREAD_ID.
-  int tls_slot_thread_id;
-
-  // The guest's value for TLS_SLOT_BIONIC_TLS.
-  int tls_slot_bionic_tls;
-};
-
-#endif  // NATIVE_BRIDGE_SUPPORT_LINKER_STATIC_TLS_CONFIG_H_
diff --git a/linker/init_static_tls_arm.S b/linker/init_static_tls_arm.S
deleted file mode 100644
index 4e51326..0000000
--- a/linker/init_static_tls_arm.S
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-.text
-.globl __native_bridge_config_static_tls
-.type __native_bridge_config_static_tls, #function
-__native_bridge_config_static_tls:
-  ldr r3, =0
-  bx r3
-
-.text
-.globl __native_bridge_get_host_pthread
-.type __native_bridge_get_host_pthread, #function
-__native_bridge_get_host_pthread:
-  ldr r3, =0
-  bx r3
diff --git a/linker/init_static_tls_arm64.S b/linker/init_static_tls_arm64.S
deleted file mode 100644
index 553e7a2..0000000
--- a/linker/init_static_tls_arm64.S
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-.text
-.globl __native_bridge_config_static_tls
-.type __native_bridge_config_static_tls, #function
-__native_bridge_config_static_tls:
-  ldr x3, =0
-  blr x3
-
-.text
-.globl __native_bridge_get_host_pthread
-.type __native_bridge_get_host_pthread, #function
-__native_bridge_get_host_pthread:
-  ldr x3, =0
-  blr x3
diff --git a/linker/linker.arm.map b/linker/linker.arm.map
deleted file mode 100644
index 6e2c89b..0000000
--- a/linker/linker.arm.map
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-{
-  global:
-    __loader_dlopen;
-    __loader_dlclose;
-    __loader_dlsym;
-    __loader_dlerror;
-    __loader_dladdr;
-    __loader_android_update_LD_LIBRARY_PATH;
-    __loader_android_get_LD_LIBRARY_PATH;
-    __loader_dl_iterate_phdr;
-    __loader_android_dlopen_ext;
-    __loader_android_set_application_target_sdk_version;
-    __loader_android_get_application_target_sdk_version;
-    __loader_android_init_anonymous_namespace;
-    __loader_android_create_namespace;
-    __loader_dlvsym;
-    __loader_android_dlwarning;
-    __loader_cfi_fail;
-    __loader_android_link_namespaces;
-    __loader_android_link_namespaces_all_libs;
-    __loader_android_get_exported_namespace;
-    __loader_dl_unwind_find_exidx;
-    __loader_add_thread_local_dtor;
-    __loader_remove_thread_local_dtor;
-    __loader_shared_globals;
-    rtld_db_dlactivity;
-    __native_bridge_config_static_tls;
-    __native_bridge_get_host_pthread;
-  local:
-    *;
-};
diff --git a/linker/linker.generic.map b/linker/linker.generic.map
deleted file mode 100644
index 02bc918..0000000
--- a/linker/linker.generic.map
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-{
-  global:
-    __loader_dlopen;
-    __loader_dlclose;
-    __loader_dlsym;
-    __loader_dlerror;
-    __loader_dladdr;
-    __loader_android_update_LD_LIBRARY_PATH;
-    __loader_android_get_LD_LIBRARY_PATH;
-    __loader_dl_iterate_phdr;
-    __loader_android_dlopen_ext;
-    __loader_android_set_application_target_sdk_version;
-    __loader_android_get_application_target_sdk_version;
-    __loader_android_init_anonymous_namespace;
-    __loader_android_create_namespace;
-    __loader_dlvsym;
-    __loader_android_dlwarning;
-    __loader_cfi_fail;
-    __loader_android_link_namespaces;
-    __loader_android_link_namespaces_all_libs;
-    __loader_android_get_exported_namespace;
-    __loader_add_thread_local_dtor;
-    __loader_remove_thread_local_dtor;
-    __loader_shared_globals;
-    rtld_db_dlactivity;
-    __native_bridge_config_static_tls;
-    __native_bridge_get_host_pthread;
-  local:
-    *;
-};
diff --git a/linker/linker_tls.cpp b/linker/linker_tls.cpp
deleted file mode 100644
index 9326e02..0000000
--- a/linker/linker_tls.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "private/linker_native_bridge.h"
-
-// Avoid allocating a bionic_tls in the guest's static TLS, because the guest
-// uses the host's object.
-extern "C" void __linker_reserve_bionic_tls_in_static_tls() {}
diff --git a/linker/linker_translate_path.cpp b/linker/linker_translate_path.cpp
deleted file mode 100644
index 02a501c..0000000
--- a/linker/linker_translate_path.cpp
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "linker_translate_path.h"
-#include "linker.h"
-
-#include <android/api-level.h>
-
-#include <string>
-
-#if defined(__arm__)
-#define SYSTEM_LIB(name) \
-  { "/system/lib/" name, "/system/lib/arm/" name }
-#elif defined(__aarch64__)
-#define SYSTEM_LIB(name) \
-  { "/system/lib64/" name, "/system/lib64/arm64/" name }
-#else
-#error "Unknown guest arch"
-#endif
-
-// Workaround for dlopen(/system/lib(64)/<soname>) when .so is in /apex. http://b/121248172
-/**
- * Translate /system path to /apex path if needed
- * The workaround should work only when targetSdkVersion < Q.
- *
- * param out_name_to_apex pointing to /apex path
- * return true if translation is needed
- */
-bool translateSystemPathToApexPath(const char* name, std::string* out_name_to_apex) {
-  static constexpr const char* kPathTranslation[][2] = {
-      SYSTEM_LIB("libEGL.so"),
-      SYSTEM_LIB("libGLESv1_CM.so"),
-      SYSTEM_LIB("libGLESv2.so"),
-      SYSTEM_LIB("libGLESv3.so"),
-      SYSTEM_LIB("libOpenMAXAL.so"),
-      SYSTEM_LIB("libOpenSLES.so"),
-      SYSTEM_LIB("libRS.so"),
-      SYSTEM_LIB("libaaudio.so"),
-      SYSTEM_LIB("libamidi.so"),
-      SYSTEM_LIB("libandroid.so"),
-      SYSTEM_LIB("libbinder_ndk.so"),
-      SYSTEM_LIB("libc.so"),
-      SYSTEM_LIB("libcamera2ndk.so"),
-      SYSTEM_LIB("libdl.so"),
-      SYSTEM_LIB("libjnigraphics.so"),
-      SYSTEM_LIB("liblog.so"),
-      SYSTEM_LIB("libm.so"),
-      SYSTEM_LIB("libmediandk.so"),
-      SYSTEM_LIB("libnativewindow.so"),
-      SYSTEM_LIB("libstdc++.so"),
-      SYSTEM_LIB("libsync.so"),
-      SYSTEM_LIB("libvulkan.so"),
-      SYSTEM_LIB("libwebviewchromium_plat_support.so"),
-      SYSTEM_LIB("libz.so")};
-
-  static constexpr const char* kPathTranslationQ[][2] = {
-      SYSTEM_LIB("libicui18n.so"), SYSTEM_LIB("libicuuc.so"), SYSTEM_LIB("libneuralnetworks.so")};
-
-  // Libraries from greylist.  Only convert these for apps targeting N or below.
-  static constexpr const char* kPathTranslationN[][2] = {SYSTEM_LIB("libandroid_runtime.so"),
-                                                         SYSTEM_LIB("libbinder.so"),
-                                                         SYSTEM_LIB("libcrypto.so"),
-                                                         SYSTEM_LIB("libcutils.so"),
-                                                         SYSTEM_LIB("libexpat.so"),
-                                                         SYSTEM_LIB("libgui.so"),
-                                                         SYSTEM_LIB("libmedia.so"),
-                                                         SYSTEM_LIB("libnativehelper.so"),
-                                                         SYSTEM_LIB("libssl.so"),
-                                                         SYSTEM_LIB("libstagefright.so"),
-                                                         SYSTEM_LIB("libsqlite.so"),
-                                                         SYSTEM_LIB("libui.so"),
-                                                         SYSTEM_LIB("libutils.so"),
-                                                         SYSTEM_LIB("libvorbisidec.so")};
-
-  if (name == nullptr) {
-    return false;
-  }
-
-  auto comparator = [name](auto p) { return strcmp(name, p[0]) == 0; };
-
-  if (auto it = std::find_if(std::begin(kPathTranslation), std::end(kPathTranslation), comparator);
-      it != std::end(kPathTranslation)) {
-    *out_name_to_apex = (*it)[1];
-    return true;
-  }
-
-  if (get_application_target_sdk_version() < __ANDROID_API_Q__) {
-    if (auto it =
-            std::find_if(std::begin(kPathTranslationQ), std::end(kPathTranslationQ), comparator);
-        it != std::end(kPathTranslationQ)) {
-      *out_name_to_apex = (*it)[1];
-      return true;
-    }
-  }
-
-  if (get_application_target_sdk_version() < __ANDROID_API_N__) {
-    if (auto it =
-            std::find_if(std::begin(kPathTranslationN), std::end(kPathTranslationN), comparator);
-        it != std::end(kPathTranslationN)) {
-      *out_name_to_apex = (*it)[1];
-      return true;
-    }
-  }
-
-  return false;
-}
-// End Workaround for dlopen(/system/lib/<soname>) when .so is in /apex.
diff --git a/native_bridge_support.mk b/native_bridge_support.mk
deleted file mode 100644
index 66133a3..0000000
--- a/native_bridge_support.mk
+++ /dev/null
@@ -1,117 +0,0 @@
-#
-# Copyright 2020 The Android Open-Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#
-# This makefile exports
-#
-# NATIVE_BRIDGE_PRODUCT_PACKAGES: Add this to PRODUCT_PACKAGES for your project to facilitate
-# native bridge support.
-#
-# NATIVE_BRIDGE_MODIFIED_GUEST_LIBS: List of modified guest libraries that require host counterpart.
-#
-
-NATIVE_BRIDGE_PRODUCT_PACKAGES := \
-    libnative_bridge_vdso.native_bridge \
-    native_bridge_guest_app_process.native_bridge \
-    native_bridge_guest_linker.native_bridge
-
-# Original guest libraries.
-NATIVE_BRIDGE_ORIG_GUEST_LIBS := \
-    libcompiler_rt \
-    libcrypto \
-    libcutils \
-    libdl.bootstrap \
-    libdl_android.bootstrap \
-    liblog \
-    libm.bootstrap \
-    libsqlite \
-    libssl \
-    libstdc++ \
-    libsync \
-    libutils \
-    libz
-
-# TODO(b/141167717): hack to make libandroidicu compatible with APEX.
-#
-# If library is APEX-enabled:
-#
-#   Then "libraryname" is not installed in the  /system/lib since it's
-#   supposed to be installed into APEX.
-#
-#   However, "libraryname.bootstrap" goes into /system/lib/bootstrap.
-#
-#   Native bridge isn't compatible with APEX yet thus "libraryname.native_bridge"
-#   is not installed anywhere at all.
-#
-#   However, "libraryname.bootstrap.native_bridge" gets installed into
-#   /system/lib/$GUEST_ARCH/ - as we need for native bridge.
-#
-# Note: this doesn't affect native libraries at all.
-NATIVE_BRIDGE_ORIG_GUEST_LIBS += \
-    libandroidicu.bootstrap
-
-# TODO(b/137072946): enable to build renderscript!
-#
-#NATIVE_BRIDGE_PRODUCT_PACKAGES += \
-#    libclcore.bc \
-#    libclcore_neon.bc
-#
-#NATIVE_BRIDGE_ORIG_GUEST_LIBS += \
-#    libRS \
-#    libRSDriver \
-#    libRSSupport \
-
-# These native libraries are needed to pass CtsJniTestCases, we do not use them in any way and
-# once/if build system allows us to build dummy arm libraries they can be replaced with empty ones.
-#NATIVE_BRIDGE_ORIG_GUEST_LIBS += \
-#    libart \
-#    libvorbisidec
-
-
-NATIVE_BRIDGE_MODIFIED_GUEST_LIBS := \
-    libaaudio \
-    libamidi \
-    libandroid \
-    libandroid_runtime \
-    libbinder_ndk \
-    libc \
-    libcamera2ndk \
-    libEGL \
-    libGLESv1_CM \
-    libGLESv2 \
-    libGLESv3 \
-    libicui18n \
-    libicuuc \
-    libjnigraphics \
-    libmediandk \
-    libnativehelper \
-    libnativewindow \
-    libneuralnetworks \
-    libOpenMAXAL \
-    libOpenSLES \
-    libvulkan \
-    libwebviewchromium_plat_support
-
-# Original guest libraries are built for native_bridge
-NATIVE_BRIDGE_PRODUCT_PACKAGES += \
-    $(addsuffix .native_bridge,$(NATIVE_BRIDGE_ORIG_GUEST_LIBS))
-
-# Modified guest libraries are built for native_bridge and
-# have special build target prefix
-NATIVE_BRIDGE_PRODUCT_PACKAGES += \
-    $(addprefix libnative_bridge_guest_,$(addsuffix .native_bridge,$(NATIVE_BRIDGE_MODIFIED_GUEST_LIBS)))
-
-NATIVE_BRIDGE_ORIG_GUEST_LIBS :=
diff --git a/overriding/Android.bp b/overriding/Android.bp
deleted file mode 100644
index 73e4457..0000000
--- a/overriding/Android.bp
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// We introduce this namespace so that native bridge guest libraries are built
-// only for targets that explicitly use this namespace via PRODUCT_SOONG_NAMESPACES
-// and checkbuild.
-soong_namespace {
-}
diff --git a/overriding/libc/Android.bp b/overriding/libc/Android.bp
deleted file mode 100644
index 1038d8b..0000000
--- a/overriding/libc/Android.bp
+++ /dev/null
@@ -1,130 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: [
-        "native_bridge_stub_library_defaults",
-        // Definitions come from bionic/libc/Android.bp that force
-        // the usage of the correct native allocator.
-        "libc_native_allocator_defaults",
-    ],
-    name: "libnative_bridge_guest_libc",
-    overrides: ["libc"],
-    stem: "libc",
-
-    srcs: [
-        ":libc_sources_shared",
-        "__cxa_thread_atexit_impl.cpp",
-        "__libc_add_main_thread.cpp",
-        "exit.c",
-        "fork.cpp",
-        "malloc_init.cpp",
-    ],
-
-    include_dirs: [
-        "bionic/libc",
-        "bionic/libc/arch-common/bionic",
-        "bionic/libc/async_safe/include",
-        "bionic/libc/bionic",
-        "bionic/libc/stdio",
-        "bionic/libstdc++/include",
-    ],
-
-    cflags: [
-        "-D_LIBC=1",
-        "-fno-emulated-tls", // Required for GWP-Asan.
-    ],
-
-    product_variables: {
-        platform_sdk_version: {
-            asflags: ["-DPLATFORM_SDK_VERSION=%d"],
-            cflags: ["-DPLATFORM_SDK_VERSION=%d"],
-        },
-    },
-
-    arch: {
-        arm: {
-            srcs: [
-                ":libc_sources_shared_arm",
-                "stubs_arm.cpp",
-            ],
-
-            cflags: [
-                "-DCRT_LEGACY_WORKAROUND",
-            ],
-
-            version_script: ":libc.arm.map",
-
-            // Arm 32 bit does not produce complete exidx unwind information
-            // so keep the .debug_frame which is relatively small and does
-            // include needed unwind information.
-            // See b/132992102 for details.
-            strip: {
-                keep_symbols_and_debug_frame: true,
-            },
-
-            whole_static_libs: [ "libunwind_llvm" ],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cpp"],
-
-            version_script: ":libc.arm64.map",
-
-            // Leave the symbols in the shared library so that stack unwinders can produce
-            // meaningful name resolution.
-            strip: {
-                keep_symbols: true,
-            },
-
-            whole_static_libs: [ "libgcc_stripped" ],
-        }
-    },
-
-    nocrt: true,
-
-    required: ["tzdata"],
-
-    whole_static_libs: [
-        "gwp_asan",
-        "libc_init_dynamic",
-        "libc_common_shared",
-    ],
-
-    shared_libs: [
-        "ld-android",
-        "libdl",
-    ],
-
-    static_libs: [
-        "libdl_android",
-    ],
-
-    system_shared_libs: [],
-    stl: "none",
-
-    strip: {
-        keep_symbols: true,
-    },
-
-    sanitize: {
-        never: true,
-    },
-
-    // lld complains about duplicate symbols in libcrt and libgcc. Suppress the
-    // warning since this is intended right now.
-    // Bug: 117558759
-    ldflags: ["-Wl,-z,muldefs"],
-}
diff --git a/overriding/libc/__cxa_thread_atexit_impl.cpp b/overriding/libc/__cxa_thread_atexit_impl.cpp
deleted file mode 100644
index 0e4a099..0000000
--- a/overriding/libc/__cxa_thread_atexit_impl.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2018 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <unistd.h>
-
-#include "native_bridge_support/vdso/vdso.h"
-
-extern "C" void __loader_add_thread_local_dtor(void* dso_handle) __attribute__((weak));
-extern "C" void __loader_remove_thread_local_dtor(void* dso_handle) __attribute__((weak));
-
-struct WrappedArg {
-  typedef void (*thread_atexit_fn_t)(void*);
-  thread_atexit_fn_t fn;
-  void* arg;
-  void* dso_handle;
-};
-
-static void WrappedFn(void* arg) {
-  WrappedArg* wrapped_arg = static_cast<WrappedArg*>(arg);
-  WrappedArg::thread_atexit_fn_t origin_fn = wrapped_arg->fn;
-  void* origin_arg = wrapped_arg->arg;
-  void* dso_handle = wrapped_arg->dso_handle;
-
-  delete wrapped_arg;
-
-  origin_fn(origin_arg);
-
-  if (__loader_remove_thread_local_dtor != nullptr) {
-    __loader_remove_thread_local_dtor(dso_handle);
-  }
-}
-
-extern "C" int __cxa_thread_atexit_impl(void (*func)(void*), void* arg, void* dso_handle) {
-  WrappedArg* wrapped_arg = new WrappedArg();
-  wrapped_arg->fn = func;
-  wrapped_arg->arg = arg;
-  wrapped_arg->dso_handle = dso_handle;
-
-  if (__loader_add_thread_local_dtor != nullptr) {
-    __loader_add_thread_local_dtor(dso_handle);
-  }
-
-  typedef decltype(__cxa_thread_atexit_impl)* fn_t;
-  static fn_t __host_cxa_thread_atexit_impl = reinterpret_cast<fn_t>(
-      native_bridge_find_proxy_library_symbol("libc.so", "__cxa_thread_atexit_impl"));
-
-  return __host_cxa_thread_atexit_impl(WrappedFn, wrapped_arg, dso_handle);
-}
diff --git a/overriding/libc/__libc_add_main_thread.cpp b/overriding/libc/__libc_add_main_thread.cpp
deleted file mode 100644
index 5dc934d..0000000
--- a/overriding/libc/__libc_add_main_thread.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (C) 2018 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-// Guest libc should not insert main thread into thread list, as it was already done by host libc.
-void __libc_add_main_thread() {}
diff --git a/overriding/libc/exit.c b/overriding/libc/exit.c
deleted file mode 100644
index ce6b438..0000000
--- a/overriding/libc/exit.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <unistd.h>
-
-#include "native_bridge_support/vdso/vdso.h"
-
-extern void __cxa_finalize(void* dso_handle);
-
-void exit(int status) {
-  // We don't need to call __cxa_thread_finalize because host "exit" would do that for us.
-  // __cxa_thread_finalize();
-  // That's slight deviation from standard behavior: there we first call __cxa_thread_finalize()
-  // for all objects and __cxa_finalize() for all objects and here we would first do
-  // __cxa_finalize() for guest objects, then __cxa_thread_finalize() (and after that we would do
-  // __cxa_finalize() for host objects, of course).
-  // TODO(b/65052237): Fix that with bionic refactoring?
-  __cxa_finalize(NULL);
-  ((void (*)(int))(native_bridge_find_proxy_library_symbol("libc.so", "exit")))(status);
-  __builtin_unreachable();
-}
diff --git a/overriding/libc/fork.cpp b/overriding/libc/fork.cpp
deleted file mode 100644
index aedf248..0000000
--- a/overriding/libc/fork.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "native_bridge_support/vdso/vdso.h"
-
-int __clone_for_fork() {
-  // Guest fork does pre- and post-clone routines for guest.
-  // Call host fork here to do the same for host.
-  return ((int (*)())(native_bridge_find_proxy_library_symbol("libc.so", "fork")))();
-}
diff --git a/overriding/libc/malloc_init.cpp b/overriding/libc/malloc_init.cpp
deleted file mode 100644
index 76fa5d4..0000000
--- a/overriding/libc/malloc_init.cpp
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (C) 2018 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <private/bionic_config.h>
-#include <private/bionic_globals.h>
-
-#include <stdio.h>
-
-#include <async_safe/log.h>
-
-#include "native_bridge_support/vdso/vdso.h"
-
-#if !defined(LIBC_STATIC)
-static int malloc_info_impl(int options, FILE* fp) {
-  // FILE objects cannot cross architecture boundary!
-  // HACK: extract underlying file descriptor and use it instead.
-  // TODO(b/146494184): at the moment malloc_info succeeds but writes nothing to memory streams!
-  fflush(fp);
-  int fd = fileno(fp);
-  if (fd == -1) {
-    return 0;
-  }
-
-  typedef int (*fn_t)(int options, int fd);
-  static fn_t fn = reinterpret_cast<fn_t>(
-      native_bridge_find_proxy_library_symbol("libc.so", "native_bridge_malloc_info"));
-  return fn(options, fd);
-}
-
-static void malloc_init_impl(libc_globals* globals) {
-  static const MallocDispatch malloc_default_dispatch __attribute__((unused)) = {
-    reinterpret_cast<MallocCalloc>(native_bridge_find_proxy_library_symbol("libc.so", "calloc")),
-    reinterpret_cast<MallocFree>(native_bridge_find_proxy_library_symbol("libc.so", "free")),
-    reinterpret_cast<MallocMallinfo>(
-        native_bridge_find_proxy_library_symbol("libc.so", "mallinfo")),
-    reinterpret_cast<MallocMalloc>(native_bridge_find_proxy_library_symbol("libc.so", "malloc")),
-    reinterpret_cast<MallocMallocUsableSize>(
-        native_bridge_find_proxy_library_symbol("libc.so", "malloc_usable_size")),
-    reinterpret_cast<MallocMemalign>(
-        native_bridge_find_proxy_library_symbol("libc.so", "memalign")),
-    reinterpret_cast<MallocPosixMemalign>(
-        native_bridge_find_proxy_library_symbol("libc.so", "posix_memalign")),
-#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
-    reinterpret_cast<MallocPvalloc>(native_bridge_find_proxy_library_symbol("libc.so", "pvalloc")),
-#endif
-    reinterpret_cast<MallocRealloc>(native_bridge_find_proxy_library_symbol("libc.so", "realloc")),
-#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
-    reinterpret_cast<MallocValloc>(native_bridge_find_proxy_library_symbol("libc.so", "valloc")),
-#endif
-    reinterpret_cast<MallocIterate>(
-        native_bridge_find_proxy_library_symbol("libc.so", "malloc_iterate")),
-    reinterpret_cast<MallocMallocDisable>(
-        native_bridge_find_proxy_library_symbol("libc.so", "malloc_disable")),
-    reinterpret_cast<MallocMallocEnable>(
-        native_bridge_find_proxy_library_symbol("libc.so", "malloc_enable")),
-    reinterpret_cast<MallocMallopt>(native_bridge_find_proxy_library_symbol("libc.so", "mallopt")),
-    reinterpret_cast<MallocAlignedAlloc>(
-        native_bridge_find_proxy_library_symbol("libc.so", "aligned_alloc")),
-    malloc_info_impl,
-  };
-  globals->malloc_dispatch_table = malloc_default_dispatch;
-  globals->current_dispatch_table = &globals->malloc_dispatch_table;
-}
-
-// Initializes memory allocation framework.
-// This routine is called from __libc_init routines in libc_init_dynamic.cpp.
-__LIBC_HIDDEN__ void __libc_init_malloc(libc_globals* globals) {
-  malloc_init_impl(globals);
-}
-#endif  // !LIBC_STATIC
diff --git a/overriding/libc/stubs_arm.cpp b/overriding/libc/stubs_arm.cpp
deleted file mode 100644
index 82b02e8..0000000
--- a/overriding/libc/stubs_arm.cpp
+++ /dev/null
@@ -1,161 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__pthread_cleanup_pop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__pthread_cleanup_push);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_properties_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_area_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_area_serial);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_find);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_find_nth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_foreach);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_get);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_read_callback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_serial);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_set);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_set_filename);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_update);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_wait);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_wait_any);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_longjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_setjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetcontext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_mallopt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_set_abort_message);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(clone);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(freeaddrinfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(gai_strerror);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(getaddrinfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(longjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_destroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getdetachstate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getguardsize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getinheritsched);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getschedpolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getscope);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getstack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getstacksize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setdetachstate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setguardsize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setinheritsched);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setschedpolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setscope);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setstack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setstacksize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_detach);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_exit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getattr_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getcpuclockid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getname_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getspecific);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_gettid_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_join);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_key_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_key_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_kill);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setname_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setschedprio);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setspecific);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_sigqueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(setjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(siglongjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(sigsetjmp);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(environ);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __pthread_cleanup_pop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __pthread_cleanup_push);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_properties_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_area_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_area_serial);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_find);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_find_nth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_foreach);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_get);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_read_callback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_serial);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_set);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_set_filename);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_update);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_wait);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_wait_any);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", _longjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", _setjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornetcontext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_mallopt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_set_abort_message);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", clone);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", freeaddrinfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", gai_strerror);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", getaddrinfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", longjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_destroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getdetachstate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getguardsize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getinheritsched);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getschedpolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getscope);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getstack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getstacksize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setdetachstate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setguardsize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setinheritsched);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setschedpolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setscope);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setstack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setstacksize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_detach);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_exit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getattr_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getcpuclockid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getname_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getspecific);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_gettid_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_join);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_key_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_key_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_kill);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setname_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setschedprio);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setspecific);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_sigqueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", setjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", siglongjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", sigsetjmp);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libc.so", environ);
-}
-// clang-format on
diff --git a/overriding/libc/stubs_arm64.cpp b/overriding/libc/stubs_arm64.cpp
deleted file mode 100644
index 82b02e8..0000000
--- a/overriding/libc/stubs_arm64.cpp
+++ /dev/null
@@ -1,161 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__pthread_cleanup_pop);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__pthread_cleanup_push);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_properties_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_add);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_area_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_area_serial);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_find);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_find_nth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_foreach);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_get);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_read);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_read_callback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_serial);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_set);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_set_filename);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_update);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_wait);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(__system_property_wait_any);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_longjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_setjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornet);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetcontext);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_mallopt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_set_abort_message);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(clone);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(freeaddrinfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(gai_strerror);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(getaddrinfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(longjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_destroy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getdetachstate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getguardsize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getinheritsched);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getschedpolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getscope);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getstack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_getstacksize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_init);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setdetachstate);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setguardsize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setinheritsched);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setschedpolicy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setscope);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setstack);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_attr_setstacksize);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_detach);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_exit);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getattr_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getcpuclockid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getname_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_getspecific);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_gettid_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_join);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_key_create);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_key_delete);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_kill);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setname_np);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setschedparam);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setschedprio);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_setspecific);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(pthread_sigqueue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(setjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(siglongjmp);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(sigsetjmp);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(environ);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __pthread_cleanup_pop);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __pthread_cleanup_push);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_properties_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_add);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_area_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_area_serial);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_find);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_find_nth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_foreach);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_get);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_read);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_read_callback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_serial);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_set);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_set_filename);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_update);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_wait);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", __system_property_wait_any);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", _longjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", _setjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornet);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornetcontext);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_mallopt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_set_abort_message);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", clone);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", freeaddrinfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", gai_strerror);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", getaddrinfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", longjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_destroy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getdetachstate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getguardsize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getinheritsched);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getschedpolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getscope);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getstack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_getstacksize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_init);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setdetachstate);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setguardsize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setinheritsched);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setschedpolicy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setscope);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setstack);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_attr_setstacksize);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_detach);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_exit);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getattr_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getcpuclockid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getname_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_getspecific);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_gettid_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_join);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_key_create);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_key_delete);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_kill);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setname_np);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setschedparam);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setschedprio);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_setspecific);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", pthread_sigqueue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", setjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", siglongjmp);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", sigsetjmp);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libc.so", environ);
-}
-// clang-format on
diff --git a/overriding/libicui18n/Android.bp b/overriding/libicui18n/Android.bp
deleted file mode 100644
index 1de3561..0000000
--- a/overriding/libicui18n/Android.bp
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libicui18n",
-    overrides: ["libicui18n"],
-    stem: "libicui18n",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-    shared_libs: ["libnative_bridge_guest_libicuuc"]
-}
diff --git a/overriding/libicui18n/stubs_arm.cc b/overriding/libicui18n/stubs_arm.cc
deleted file mode 100644
index 18a3b30..0000000
--- a/overriding/libicui18n/stubs_arm.cc
+++ /dev/null
@@ -1,9005 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34uspoof_getSkeletonUnicodeString_66PK13USpoofCheckerjRKN6icu_6613UnicodeStringERS3_P10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendar6ceToJDEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendar6jdToCEEiiRiS1_S1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat11setCalendarERKNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat13adoptCalendarEPNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat14createInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat14getBestPatternERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat15setNumberFormatERKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18createDateInstanceENS0_6EStyleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18createTimeInstanceENS0_6EStyleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18setCalendarLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat19setBooleanAttributeE27UDateFormatBooleanAttributeaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonEPNS_8CalendarERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo11getInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo12loadInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo18getNeutralInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo21getMaleTaintsInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo23getMixedNeutralInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable10adoptArrayEPS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable11adoptObjectEPNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable11adoptStringEPNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16getDecimalNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16setDecimalNumberENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable20adoptDecimalQuantityEPNS_6number4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable21internalGetCharStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7setDateEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7setLongEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable8setArrayEPKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable8setInt64Ex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9setDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9setStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EdNS0_6ISDATEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createAcreER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createByteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createGramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createKnotER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createMoleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createPintER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createVoltER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createWattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createWeekER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCelsiusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getFurlongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getGigabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getHectareEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getKilobitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getMegabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getPercentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getTerabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getThermUsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10initNoUnitEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createCaratER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createDunamER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createHertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createJouleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createKaratER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createLiterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createMonthER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createOunceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPixelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPoundER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createQuartER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createStoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getAcreFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getGigabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getGigawattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilobyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilogramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilowattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMegabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMegawattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMillibarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getPermilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getPetabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getTeaspoonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getTerabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createAmpereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createBarrelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createBushelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDaltonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDecadeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDegreeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createFathomER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createGForceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createGallonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createInchHgER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createKelvinER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createMinuteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createNewtonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createParsecER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createPascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createRadianER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getArcMinuteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getArcSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getAvailableEPKcPS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getAvailableEPS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCupMetricEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDayPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDeciliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDecimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getEarthMassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getGigahertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilohertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilojouleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getLightYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegahertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegaliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegapixelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMetricTonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMicrogramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMilligramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMilliwattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getNanometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getOunceTroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPermyriadEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPicometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPoundFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getSolarMassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12initCurrencyEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCelsiusER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCenturyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createFurlongER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createGigabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createHectareER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createKilobitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createMegabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createPercentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createTerabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createThermUsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getAtmosphereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCentiliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCubicMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getDotPerInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getFahrenheitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getFluidOunceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getHectoliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getHorsepowerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getIndexCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getKilopascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMegapascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMicrometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMilliliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMillimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getNanosecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getPintMetricEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getPoundForceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getTablespoonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getWeekPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getYearPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createAcreFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createGigabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createGigawattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilobyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilogramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilowattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMegabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMegawattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMillibarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createPermilleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createPetabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createTeaspoonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createTerabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getFoodcalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getHectopascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getKilocalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMicrosecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMilePerHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMilliampereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMillisecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMonthPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getNewtonMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getSolarRadiusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getSquareMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createArcMinuteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createArcSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCupMetricER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDayPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDeciliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDecimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createEarthMassER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createGigahertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilohertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilojouleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createLightYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegahertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegaliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegapixelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMetricTonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMicrogramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMilligramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMilliwattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createNanometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createOunceTroyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPermyriadER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPicometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPoundFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createSolarMassER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getElectronvoltEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getKilowattHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getNauticalMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getPixelPerInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createAtmosphereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCentiliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCubicMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createDotPerInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createFahrenheitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createFluidOunceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createHectoliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createHorsepowerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createKilopascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMegapascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMicrometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMilliliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMillimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createNanosecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createPintMetricER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createPoundForceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createTablespoonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createWeekPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createYearPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16getMilePerGallonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createFoodcalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createHectopascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createKilocalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMicrosecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMilePerHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMilliampereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMillisecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMonthPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createNewtonMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createSolarRadiusER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createSquareMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getAvailableTypesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getCubicKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getGallonImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getMeterPerSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getPartPerMillionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createElectronvoltER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createKilowattHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createNauticalMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createPixelPerInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getCubicCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getRevolutionAngleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getSolarLuminosityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getSquareKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18resolveUnitPerUnitERKS0_S2_Pb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19createMilePerGallonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getAstronomicalUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getDotPerCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getKilometerPerHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getMileScandinavianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getSquareCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createCubicKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createGallonImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createMeterPerSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createPartPerMillionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20getLiterPerKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20getMillimolePerLiterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createCubicCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createRevolutionAngleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createSolarLuminosityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createSquareKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getBritishThermalUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getFluidOunceImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getGenericTemperatureEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getPixelPerCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getPoundPerSquareInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createAstronomicalUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createDotPerCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createKilometerPerHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createMileScandinavianER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createSquareCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22getMillimeterOfMercuryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit23createLiterPerKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit23createMillimolePerLiterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createBritishThermalUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createFluidOunceImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createGenericTemperatureER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createPixelPerCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createPoundPerSquareInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getLiterPer100KilometersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMeterPerSecondSquaredEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMilePerGallonImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMilligramPerDeciliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit25createMillimeterOfMercuryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createLiterPer100KilometersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMeterPerSecondSquaredER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMilePerGallonImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMilligramPerDeciliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit33internalGetIndexForTypeAndSubtypeEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit5getEmEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit5setToEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6createEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getBarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getBitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getCupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getLuxEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getOhmEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getTonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getAcreEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getByteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getGramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getKnotEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getMoleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getPintEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getVoltEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getWattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8createEmER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getCaratEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getDunamEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getHertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getJouleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getKaratEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getLiterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getOunceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPixelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPoundEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getQuartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getStoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8initTimeEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createBarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createBitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createCupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createDayER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createLuxER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createOhmER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createTonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getAmpereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getBarrelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getBushelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDaltonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDecadeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDegreeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getFathomEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getGForceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getGallonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getInchHgEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getKelvinEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getMinuteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getNewtonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getParsecEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getPascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getRadianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules10getSamplesERKNS_13UnicodeStringEPdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules11createRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules17internalForLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules18createDefaultRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getAllKeywordValuesERKNS_13UnicodeStringEPdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getAvailableLocalesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getRuleFromResourceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules20createSharedInstanceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules21getUniqueKeywordValueERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap12addChildNodeEPNS_13CharacterNodeEDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap3putEPKDsPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap3putERKNS_13UnicodeStringEPvRNS_12ZNStringPoolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap7putImplERKNS_13UnicodeStringEPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap9buildTrieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap9growNodesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapC2EaPFvPvE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat13parseArgumentERKNS_14MessagePatternEiRKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat14findSubMessageERKNS_14MessagePatternEid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat25matchStringUntilLimitPartERKNS_14MessagePatternEiiRKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat4dtosEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2EPKdPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2EPKdPKaPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey10reallocateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey9setLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2EPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ENS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ERKNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiaiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal19getFractionalDigitsEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal26adjustForMinFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal4initEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal4initEdix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal8decimalsEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal9quickInitEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Edi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Edix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat11setCurrencyEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15registerFactoryEPNS_19NumberFormatFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15setGroupingUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15setRoundingModeENS0_13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat16isStyleSupportedE18UNumberFormatStyle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19setParseIntegerOnlyEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat20createSharedInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat21createPercentInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat21createPercentInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22createCurrencyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22createCurrencyInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22internalCreateInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat23setMaximumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat23setMinimumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24createScientificInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24createScientificInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24setMaximumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24setMinimumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat11copyObjectsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14PluralSelectorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14PluralSelectorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14findSubMessageERKNS_14MessagePatternEiRKNS0_14PluralSelectorEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat15setNumberFormatEPKNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapter5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat4initEPKNS_11PluralRulesE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10compileSetEPNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10nextCharLLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10peekCharLLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11blockTopLocEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11fixLiteralsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11literalCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile12allocateDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile13scanNamedCharEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile13scanPosixPropEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14doParseActionsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14matchStartTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14maxMatchLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14minMatchLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile15compileIntervalEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile16handleCloseParenEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile17allocateStackDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile20createSetForPropertyERKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile21compileInlineIntervalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile27findCaseInsensitiveStartersEiPNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile5errorE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7buildOpEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7compileEP5UTextR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7setEvalEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8appendOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8appendOpEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8insertOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8nextCharERNS0_16RegexPatternCharE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8scanPropEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile9setPushOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile9stripNOPsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileC2EPNS_12RegexPatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10appendTailEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10appendTailERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10replaceAllEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10replaceAllERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10resetStackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12MatchChunkAtEiaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12replaceFirstEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12replaceFirstERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12setTimeLimitEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher13IncrementTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher13setStackLimitEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher14findUsingChunkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher14isWordBoundaryEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher15isUWordBoundaryEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16getMatchCallbackERPFaPKviERS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16refreshInputTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16setMatchCallbackEPFaPKviES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher17appendReplacementEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher17appendReplacementERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher18useAnchoringBoundsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher19isChunkWordBoundaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher19resetPreserveRegionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher20useTransparentBoundsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher23getFindProgressCallbackERPFaPKvxERS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher23setFindProgressCallbackEPFaPKvxES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5init2EP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetEP5UText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5splitEP5UTextPS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher6regionExxR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher6regionExxxR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7MatchAtExaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7matchesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7matchesExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher8setTraceEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher9lookingAtER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher9lookingAtExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EP5UTextS2_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EP5UTextjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EPKNS_12RegexPatternE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringES3_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern19initNamedCaptureMapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern3zapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextjR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7matchesEP5UTextS2_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7matchesERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat14findSubMessageERKNS_14MessagePatternEiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10handleNextEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10handlePrevEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10setPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch11setCollatorEPNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch9setOffsetEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorEPNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorERKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_PNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_RKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleC2ERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool3getEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool3getERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool5adoptEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPoolC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPoolD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallback11needToWriteENS_9Collation5LevelE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys26writeSortKeyUpToQuaternaryERNS_17CollationIteratorEPKaRKNS_17CollationSettingsERNS_15SortKeyByteSinkENS_9Collation5LevelERNS0_13LevelCallbackEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot11getSettingsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot17getRootCacheEntryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot4loadER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot7getDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot7getRootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DangiCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat11setCurrencyEPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat11setCurrencyEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12setAttributeE22UNumberFormatAttributeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12touchNoErrorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat13setMultiplierEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat14setFormatWidthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat14setPadPositionENS0_12EPadPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setGroupingSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setGroupingUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setPadCharacterERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setupFastFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16setCurrencyUsageE14UCurrencyUsageP10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16setParseAllInputE27UNumberFormatAttributeValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setNegativePrefixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setNegativeSuffixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setPositivePrefixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setPositiveSuffixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setMultiplierScaleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setParseNoExponentEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setSignAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat19fieldPositionHelperERKNS_6number15FormattedNumberERNS_13FieldPositionEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat19setParseIntegerOnlyEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat20setRoundingIncrementEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setCurrencyPluralInfoERKNS_18CurrencyPluralInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setParseCaseSensitiveEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setScientificNotationEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23adoptCurrencyPluralInfoEPNS_18CurrencyPluralInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setMaximumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setMinimumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMaximumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumExponentDigitsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumGroupingDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setPropertiesFromPatternERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setSecondaryGroupingSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setSignificantDigitsUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat26setExponentSignAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27fieldPositionIteratorHelperERKNS_6number15FormattedNumberEPNS_21FieldPositionIteratorEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27setMaximumSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27setMinimumSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat30setDecimalPatternMatchRequiredEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat30setDecimalSeparatorAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat32setFormatFailIfMoreThanMaxDigitsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat5touchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2EPKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPosition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPositionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613IFixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613IFixedDecimalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14initializeHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter16ListPatternsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter16ListPatternsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter21getListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter22loadListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2EPKNS_18ListFormatInternalE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2ERKNS_14ListFormatDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat17adoptNumberFormatEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat17initMeasureFormatERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat20createCurrencyFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat20createCurrencyFormatERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat22setMeasureFormatLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat10getArgNameEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat10setFormatsEPPKNS_6FormatEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11adoptFormatERKNS_13UnicodeStringEPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11adoptFormatEiPNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11copyObjectsERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11findKeywordERKNS_13UnicodeStringEPKPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12adoptFormatsEPPNS_6FormatEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringE29UMessagePatternApostropheModeP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12equalFormatsEPKvS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12resetPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat14argNameMatchesEiRKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat14getFormatNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat16allocateArgTypesEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat17setArgStartFormatEiPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat19autoQuoteApostropheERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat20cacheExplicitFormatsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProvider5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderC2ERKS0_11UPluralType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat23createAppropriateFormatERNS_13UnicodeStringES2_RNS_11Formattable4TypeER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat23setCustomArgStartFormatEiPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat6formatERKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9getFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setFormatERKNS_13UnicodeStringERKNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setFormatEiRKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone14constructEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone19initTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone20clearTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone21deleteTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneC2EPK15UResourceBundleS3_RKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment11resetLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment12adjustOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment15codePointsEqualEiib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment21getCommonPrefixLengthERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment23adjustOffsetByCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment23getPrefixLengthInternalERKNS_13UnicodeStringEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment28getCaseSensitivePrefixLengthERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment9setLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment9setOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegmentC2ERKNS_13UnicodeStringEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames18createTZDBInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection11addMetaZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection7addZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection7matchesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19loadAllDisplayNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CopticCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmount16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2ERKNS_11FormattableENS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2EdNS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614FormattedValueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614FormattedValueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar10isLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar11startOfYearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar12monthsInYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar22absoluteDayToDayOfWeekEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator12setAttributeE16USearchAttribute21USearchAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator13setMatchStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator14setMatchLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator16setBreakIteratorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator16setMatchNotFoundEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator4lastER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator5firstER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator9followingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator9precedingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERKNS_13UnicodeStringEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERNS_17CharacterIteratorEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SharedCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SharedCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone11decodeRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13compareToRuleEaaaaaiiNS0_5EModeEaaai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13decodeEndRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13setDSTSavingsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone15decodeStartRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone19initTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone20clearTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone21deleteTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone9constructEiaaaiNS0_8TimeModeEaaaiS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiNS0_8TimeModeEaaaiS4_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural10getKeywordENS0_4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural15indexFromStringEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural15indexFromStringERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural25indexOrNegativeFromStringEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural25indexOrNegativeFromStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TaiwanCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmount16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2ERKNS_11FormattableENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2EdNS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15getTimeUnitNameENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15initDataMembersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15setNumberFormatERKNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat16checkConsistencyE20UTimeUnitFormatStylePKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat19searchInLocaleChainE20UTimeUnitFormatStylePKcS3_NS_8TimeUnit15UTimeUnitFieldsERKNS_13UnicodeStringES3_PNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat21readFromCurrentLocaleE20UTimeUnitFormatStylePKcRKNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat5setupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat6createE20UTimeUnitFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleE20UTimeUnitFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat11getTimeTypeE17UTimeZoneNameType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat12toCodePointsERKNS_13UnicodeStringEPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat13setGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat14initGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16setGMTZeroFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16setTimeZoneNamesERKNS_13TimeZoneNamesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18adoptTimeZoneNamesEPNS_13TimeZoneNamesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18parseOffsetPatternERKNS_13UnicodeStringENS0_12OffsetFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18setGMTOffsetDigitsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat19expandOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat19setGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat21initGMTOffsetPatternsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat21truncateOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat22parseAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionEDsNS0_12OffsetFieldsES6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat22setDefaultParseOptionsEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat27formatOffsetWithAsciiDigitsEiDsNS0_12OffsetFieldsES1_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat28checkAbuttingHoursAndMinutesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat30parseAbuttingAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionENS0_12OffsetFieldsES6_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat7unquoteERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator10unregisterERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator11adoptFilterEPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator12orphanFilterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator13registerAliasERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14_registerAliasERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getAvailableIDEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15createFromRulesERKNS_13UnicodeStringES3_15UTransDirectionR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15getAvailableIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16_registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16registerInstanceEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator17_registerInstanceEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator17countAvailableIDsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18getAvailableSourceEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18initializeRegistryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19_getAvailableSourceEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19_getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19createBasicInstanceERKNS_13UnicodeStringEPS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator20_getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator21countAvailableSourcesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator21countAvailableTargetsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22_countAvailableSourcesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22_countAvailableTargetsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22countAvailableVariantsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23_countAvailableVariantsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23_registerSpecialInverseERKNS_13UnicodeStringES3_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23setMaximumContextLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorC2ERKNS_13UnicodeStringEPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex10nextBucketER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex10nextRecordER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex11initBucketsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex12clearBucketsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex12clearRecordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14ImmutableIndexD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14ImmutableIndexD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getBucketCountER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getRecordCountER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14setInflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex16setMaxLabelCountEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex16setOverflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex17addIndexExemplarsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex17setUnderflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19buildImmutableIndexER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19resetBucketIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19resetRecordIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex20firstStringsInScriptER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex25addChineseIndexCharactersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex27internalResetBucketIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex4initEPKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketC2ERKNS_13UnicodeStringES4_25UAlphabeticIndexLabelType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6RecordC2ERKNS_13UnicodeStringEPKv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6RecordD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addLabelsERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addLabelsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addRecordERKNS_13UnicodeStringEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9separatedERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexC2EPNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar11offsetMonthEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar20computeChineseFieldsEiiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleEiPKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactory14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar13civilLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar18setCalculationTypeENS0_16ECalculationTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar30initializeSystemDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar7isCivilEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar7moonAgeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarC2ERKNS_6LocaleER10UErrorCodeNS0_16ECalculationTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceEiaRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14setAlgorithmicEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem17getAvailableNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem20createInstanceByNameEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem7setDescERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem7setNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem8setRadixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615PersianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615UnicodeReplacerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615UnicodeReplacerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BuddhistCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder10ceStrengthEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11addRelationEiRKNS_13UnicodeStringES3_S3_RPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11finalizeCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11setCaseBitsERKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder13parseAndBuildERKNS_13UnicodeStringEPKhPNS_19CollationRuleParser8ImporterEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addIfDifferentERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addOnlyClosureERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addWithClosureERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder15makeTailoredCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17addTailCompositesERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17getWeight16BeforeEixi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17insertNodeBetweenEiixR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder18countTailoredNodesEPKxii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder19closeOverCompositesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder20findOrInsertWeakNodeEijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder22findOrInsertNodeForCEsEiRPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder23getSpecialResetPositionERKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder23insertTailoredNodeAfterEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder25findOrInsertNodeForRootCEExiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder26findOrInsertNodeForPrimaryEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder7sameCEsEPKxiS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder8addResetEiRKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderC2EPKNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationCompare21compareUpToQuaternaryERNS_17CollationIteratorES2_RKNS_17CollationSettingsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights10nextWeightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights12allocWeightsEjji);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights14initForPrimaryEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights15getWeightRangesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights15initForTertiaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights16initForSecondaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights25allocWeightsInShortRangesEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights29allocWeightsInMinLengthRangesEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeightsC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo13parseSkeletonERKNS_13UnicodeStringEPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo13stringNumericEiic);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo14initializeDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16DateIntervalSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16DateIntervalSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo18setIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo26setFallbackIntervalPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo28calendarFieldToIntervalIndexE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo28setIntervalPatternInternallyERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616EthiopicCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar13getCurrentEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar18enableTentativeEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10NSOverride4freeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10NSOverrideD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10initializeERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12applyPatternERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12isSyntaxCharEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12parsePatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat13adoptCalendarEPNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat13matchLiteralsERKNS_13UnicodeStringERiS3_S4_aaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16getLevelFromCharEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16isAtNumericFieldERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16translatePatternERKNS_13UnicodeStringERS1_S3_S3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17adoptNumberFormatERKNS_13UnicodeStringEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17setTimeZoneFormatERKNS_14TimeZoneFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18initializeCalendarEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18isFieldUnitIgnoredERKNS_13UnicodeStringE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18set2DigitYearStartEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat19adoptTimeZoneFormatEPNS_14TimeZoneFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat20initNumberFormattersERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat20setDateFormatSymbolsERKNS_17DateFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat21processOverrideStringERKNS_6LocaleERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat22adoptDateFormatSymbolsEPNS_17DateFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat22isAfterNonNumericFieldERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24freeFastNumberFormattersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24initFastNumberFormattersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24initializeDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat26parseAmbiguousDatesAsAfterEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat27initializeBooleanAttributesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat9constructENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat9isNumericEDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringEPNS_17DateFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_17DateFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617AnyTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator10previousCEERNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator14nextCEFromCE32EPKNS_13CollationDataEijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator16appendNumericCEsEjaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator16previousCEUnsafeEiRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator17appendCEsFromCE32EPKNS_13CollationDataEijaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator17getCE32FromPrefixEPKNS_13CollationDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator18backwardNumSkippedEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator20nextSkippedCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator22getCE32FromBuilderDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23appendNumericSegmentCEsEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23nextCE32FromContractionEPKNS_13CollationDataEjPKDsjiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator36nextCE32FromDiscontiguousContractionEPKNS_13CollationDataERNS_10UCharsTrieEjiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8CEBuffer20ensureAppendCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8CEBufferD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8fetchCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings11setStrengthEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings12setCaseFirstE18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings13setReorderingERKNS_13CollationDataEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings14setMaxVariableEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings15aliasReorderingERKNS_13CollationDataEPKiiPKjiPKhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings15resetReorderingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings16setReorderArraysEPKiiPKjiPKhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings18copyReorderingFromERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings20setAlternateHandlingE18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings25reorderTableHasSplitBytesEPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings7setFlagEi18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11assignArrayERPNS_13UnicodeStringERiPKS1_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setEraNamesEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setQuartersEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols12arrayCompareEPKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols12setYearNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols13setNarrowErasEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14initializeDataERKNS_6LocaleEPKcR10UErrorCodea);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14isNumericFieldE16UDateFormatFieldi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setAmPmStringsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setShortMonthsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setZodiacNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setZoneStringsEPKPKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols15createForLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16getPatternUCharsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16setShortWeekdaysEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols17createZoneStringsEPKPKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols18disposeZoneStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols19getPatternCharIndexEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20initZoneStringsArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20isNumericPatternCharEDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20setLocalPatternCharsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols22setTimeSeparatorStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols7setErasEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols8copyDataERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2EPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar11getEpochDayER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar13pinDayOfMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar14aggregateStampEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar17julianDayToMillisEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar17millisToJulianDayEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar18setGregorianChangeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar22computeJulianDayOfYearEaiRa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar22handleComputeJulianDayE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar35handleGetExtendedYearFromWeekFieldsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter11addIfAbsentEPKcRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter12selectPluralERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter15formatAndSelectEdRKNS_12NumberFormatERKNS_11PluralRulesERNS_22FormattedStringBuilderERNS_14StandardPlural4FormER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter6formatERKNS_15SimpleFormatterERKNS_13UnicodeStringERS4_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator10setLocalesERKNS_6LocaleES3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator12setAttributeE13UColAttribute18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14adoptTailoringEPNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator15setReorderCodesEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator20computeMaxExpansionsEPKNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator22internalBuildTailoringERKNS_13UnicodeStringEi18UColAttributeValueP11UParseErrorPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2EPKNS_19CollationCacheEntryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2EPKhiPKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringE18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthE18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER11UParseErrorRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone11deleteRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone17addTransitionRuleEPNS_12TimeZoneRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone17deleteTransitionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone8completeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone9copyRulesEPNS_7UVectorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneC2ERKNS_13UnicodeStringEPNS_19InitialTimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617SharedPluralRulesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617SharedPluralRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617double_conversion23DoubleToStringConverter13DoubleToAsciiEdNS1_8DtoaModeEiPciPbPiS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiPNS_12DateTimeRuleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiRKNS_12DateTimeRuleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10clearCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10getMoonAgeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10getSunTimeEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11getMoonTimeERKNS0_7MoonAgeEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11getMoonTimeEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11timeOfAngleERNS0_9AngleFuncEddda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12getJulianDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12getMoonPhaseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12setJulianDayEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer13getSunRiseSetEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer14getMoonRiseSetEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer14getSunPositionERNS0_10EquatorialE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15SUMMER_SOLSTICEEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15WINTER_SOLSTICEEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getMoonPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getSunLongitudeEdRdS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getSunLongitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer16getJulianCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer16getLocalSiderealEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17eclipticObliquityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17eclipticToHorizonERNS0_7HorizonEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17getSiderealOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialERKNS0_8EclipticE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEdd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20getGreenwichSiderealEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7getTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7lstToUTEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7setTimeEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer8NEW_MOONEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9AngleFuncD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9AngleFuncD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9CoordFuncD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9CoordFuncD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9FULL_MOONEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9riseOrSetERNS0_9CoordFuncEaddd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Edd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin10getOptionsEPKNS_13CollationDataERKNS_17CollationSettingsEPti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin10lookupUTF8EPKtiPKhRii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin11compareUTF8EPKtS2_iPKhiS4_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin12compareUTF16EPKtS2_iPKDsiS4_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin13getTertiariesEjaj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin14getSecondariesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin15getQuaternariesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin16lookupUTF8UnsafeEPKtiPKhRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin6lookupEPKti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin8getCasesEjaj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin8nextPairEPKtijPKDsPKhRiS7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring10setVersionEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring15ensureOwnedDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring15makeBaseVersionEPKhPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringC2EPKNS_17CollationSettingsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo10initializeERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo14setPluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo24setCurrencyPluralPatternERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo26setupCurrencyPluralPatternERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateFmtBestPatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateFmtBestPatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14setPatternInfoE19UCalendarDateFieldsPKNS_13UnicodeStringES4_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat16adjustFieldWidthERKNS_13UnicodeStringES3_S3_aRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat17initializePatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setFallbackPatternE19UCalendarDateFieldsRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsPKNS_13UnicodeStringES4_aPS2_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat19getDateTimeSkeletonERKNS_13UnicodeStringERS1_S4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat19setDateIntervalInfoERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat21fieldExistsInSkeletonE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat21splitPatternInto2PartERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat22setSeparateDateTimePtnERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat29concatSingleDate2TimeIntervalERNS_13UnicodeStringERKS1_19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat6createERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2ERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618NullTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618RelativeDateFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618SharedNumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618SharedNumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition5setToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7adoptToEPNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7setFromERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7setTimeEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition9adoptFromEPNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2EdRKNS_12TimeZoneRuleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619BreakTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataReader12isAcceptableEPvPKcS3_PK9UDataInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataReader4readEPKNS_18CollationTailoringEPKhiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter14writeTailoringERKNS_18CollationTailoringERKNS_17CollationSettingsEPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter5writeEaPKhRKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter8copyDataEPKiiPKvPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter9writeBaseERKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser11parseStringEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser12isSyntaxCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser12parseSettingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser13getOnOffValueERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser13setParseErrorEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser14getReorderCodeEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser14parseRuleChainER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15parseReorderingERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15parseUnicodeSetEiRNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15setErrorContextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseRelationStringsEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseSpecialPositionEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseTailoringStringEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser21parseRelationOperatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser21parseResetAndPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser22parseStarredCharactersEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4Sink20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4Sink8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4SinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4SinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringERNS_17CollationSettingsEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser8ImporterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser8ImporterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParserC2EPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParserD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleC2ERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619NumberFormatFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619NumberFormatFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorC2EPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder10CEModifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder10CEModifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder11encodeOneCEExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12buildContextEPNS_15ConditionalCE32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12getJamoCE32sEPjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12setDigitTagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13buildContextsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13buildMappingsERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13clearContextsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder14addContextTrieEjRNS_17UCharsTrieBuilderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder15encodeExpansionEPKxiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder16copyFromBaseCE32EijaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder16initForTailoringEPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17encodeExpansion32EPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17encodeOneCEAsCE32Ex);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17setLeadSurrogatesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder18addConditionalCE32ERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder19buildFastLatinTableERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder20maybeSetPrimaryRangeEiijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder20suppressContractionsERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder28copyContractionsFromBaseCE32ERNS_13UnicodeStringEijPNS_15ConditionalCE32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder28setPrimaryRangeAndReturnNextEiijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder3addERKNS_13UnicodeStringES3_PKxiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder5addCEExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder5buildERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEPxi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringES3_Pxi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEiPxi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder7addCE32ERKNS_13UnicodeStringES3_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder7addCE32EjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder8copyFromERKS0_RKNS0_10CEModifierER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder8optimizeERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder9encodeCEsEPKxiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormat14createInstanceERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatC2ERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols10initializeERKNS_6LocaleER10UErrorCodeaPKNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols24createWithLastResortDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols28setPatternForCurrencySpacingE16UCurrencySpacingaRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleERKNS_15NumberingSystemER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620EscapeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandler8setShiftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandlerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandlerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620RemoveTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNames14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621CaseMapTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621DateFmtBestPatternKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621DateFmtBestPatternKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIterator4nextERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIterator7setDataEPNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat15stripWhitespaceERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat17setDefaultRuleSetERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat18initDefaultRuleSetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameERKNS_13UnicodeStringERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameEiRKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat24initializeDefaultNaNRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat29initCapitalizationContextInfoERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat29initializeDefaultInfinityRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat30initializeDecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat4initERKNS_13UnicodeStringEPNS_16LocalizationInfoER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ENS_15URBNFRuleSetTagERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringEPNS_16LocalizationInfoERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRule14initStartTimesEPKdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleC2ERKNS_13UnicodeStringEiiPKdiNS_12DateTimeRule12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator18setTransliteratorsEPKPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator19freeTransliteratorsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator20adoptTransliteratorsEPPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator27computeMaximumContextLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator4initERKNS_13UnicodeStringE15UTransDirectionaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator4initERNS_7UVectorE15UTransDirectionaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator7joinIDsEPKPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2EPKPNS_14TransliteratorEiPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringE15UTransDirectionPNS_13UnicodeFilterER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringERNS_7UVectorEPNS_13UnicodeFilterEiR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorEiR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder15insertCodePointEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder15writeTerminatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder16prepareForInsertEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder22prepareForInsertHelperEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6appendERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6removeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6spliceEiiRKNS_13UnicodeStringEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorC2ERKS0_PKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UnescapeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623LowercaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623RuleBasedTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623SharedDateFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623SharedDateFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623TitlecaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UppercaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator15getMaxExpansionEPK10UHashtablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator20computeMaxExpansionsEPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator9setOffsetEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKNS_13UnicodeStringEPKNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKNS_17CharacterIteratorEPKNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition14constrainFieldEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition17constrainCategoryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition24setInt64IterationContextEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition8setStateEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPositionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10addPatternERKNS_13UnicodeStringEaRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10getBestRawERNS_15DateTimeMatcherEiPNS_12DistanceInfoER10UErrorCodePPKNS_11PtnSkeletonE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10setDecimalERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator11addCLDRDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator11getSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13copyHashtableEPNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13getAppendNameE21UDateTimePatternFieldRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13getRedundantsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13initHashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14addICUPatternsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringE28UDateTimePatternMatchOptionsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator15getBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16adjustFieldTypesERKNS_13UnicodeStringEPKNS_11PtnSkeletonEi28UDateTimePatternMatchOptions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16getBestAppendingEiiR10UErrorCode28UDateTimePatternMatchOptions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17addCanonicalItemsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_28UDateTimePatternMatchOptionsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setAppendItemNameE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setDateTimeFormatERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setDecimalSymbolsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17staticGetSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator18setAvailableFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19createEmptyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19setAppendItemFormatE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19setFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidthRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20getCalendarTypeToUseERKNS_6LocaleERNS_10CharStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21getAllowedHourFormatsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21staticGetBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator22addPatternWithSkeletonERKNS_13UnicodeStringEPS2_aRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator23consumeShortTimePatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator23setDateTimeFromCalendarERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator25mapSkeletonMetacharactersERKNS_13UnicodeStringEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator26getMutableFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator26loadAllowedHourFormatsDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator8initDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator9hackTimesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder10loadGroupsERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder11addUniqueCEExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder13encodeCharCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder14getCEsFromCE32ERKNS_13CollationDataEijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder15encodeUniqueCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder18encodeContractionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder19addContractionEntryEixxR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder25getCEsFromContractionCE32ERKNS_13CollationDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder6getCEsERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder7forDataERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder8resetCEsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator9normalizeEPKDsS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorC2ERKS0_PKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625NameUnicodeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatter4initEPNS_12NumberFormatEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatE35UDateRelativeDateTimeFormatterStyle15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter14createInstanceEPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter14getPreExponentERKNS_20DecimalFormatSymbolsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceEPNS_13DecimalFormatERKNS_13UnicodeStringES5_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceERKNS_6LocaleERKNS_13UnicodeStringES6_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceEPNS_13DecimalFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterC2EPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryC2ERKNS_6LocaleEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625UnicodeNameTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6627NormalizationTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImpl12isIntOrGroupEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImpl14isNumericFieldEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplC2Eh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumeration5resetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Format11syntaxErrorERKNS_13UnicodeStringEiR11UParseError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Format12setLocaleIDsEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit4baseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit7percentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit8permilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region11getInstanceEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region11getInstanceEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region12getAvailableE11URegionTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region14loadRegionDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region17cleanupRegionDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidth10truncateAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidth10zeroFillToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidthC2Essb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter10withLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter4withEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number18ScientificNotationC2Eabs18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20NumberRangeFormatter10withLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20NumberRangeFormatter4withEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatter13lnfMoveHelperEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatter5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EONS0_4impl10MacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_4impl10MacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEEC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEEC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils11replaceTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeEDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils12containsTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils14estimateLengthERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils15getFieldForTypeENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils18hasCurrencySymbolsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils19iterateWithConsumerERKNS_13UnicodeStringERNS1_13TokenConsumerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils23unescapedCodePointCountERKNS_13UnicodeStringERKNS1_14SymbolProviderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils32containsOnlySymbolsAndIgnorablesERKNS_13UnicodeStringERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils6escapeERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils7hasNextERKNS1_8AffixTagERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils8unescapeERKNS_13UnicodeStringERNS_22FormattedStringBuilderEiRKNS1_14SymbolProviderEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils9nextTokenENS1_8AffixTagERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13ModifierStoreD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13ModifierStoreD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser18parseToPatternInfoERKNS_13UnicodeStringERNS1_17ParsedPatternInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser23patternInfoToPropertiesERNS1_23DecimalFormatPropertiesERNS1_17ParsedPatternInfoENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser25parseToExistingPropertiesERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser29parseToExistingPropertiesImplERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifier19formatTwoArgPatternERKNS_15SimpleFormatterERNS_22FormattedStringBuilderEiPiS8_hR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhbNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper10doCopyFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper10doMoveFromEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper5setToEPKNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper5setToERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper9doCleanupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperC2EOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperC2ERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperaSEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperaSERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10_setToLongEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10multiplyByERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10shiftRightEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11appendDigitEaib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11copyBcdFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11moveBcdFromERS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11popFromLeftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setDigitPosEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setToDecNumERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setToDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12_setToDecNumERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12readIntToBcdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12setBcdToZeroEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13readLongToBcdEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13roundToNickelEi25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13setMinIntegerEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13switchStorageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14copyFieldsFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14setMinFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14setToDecNumberENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15adjustMagnitudeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15applyMaxIntegerEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15roundToInfinityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16_setToDoubleFastEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToIncrementEd25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModebR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity18readDecNumberToBcdERKNS1_6DecNumE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity23convertToAccurateDoubleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity25readDoubleConversionToBcdEPKcii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity6negateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity7compactEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8divideByERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8setToIntEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8truncateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9_setToIntEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9setToLongEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9shiftLeftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2EOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2ERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityaSEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityaSERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo11ParserState4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo11ParserState4peekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo12consumeAffixERNS1_9EndpointsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo13consumeFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumeLiteralER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumePaddingE24UNumberFormatPadPositionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumePatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo15consumeExponentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo17consumeSubpatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo20consumeIntegerFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo21consumeFractionFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo22getLengthFromEndpointsERKNS1_9EndpointsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils16convertLocalizedERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils19escapePaddingStringENS_13UnicodeStringERS3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils23ignoreRoundingIncrementEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils25propertiesToPatternStringERKNS1_23DecimalFormatPropertiesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils26patternInfoToStringBuilderERKNS1_20AffixPatternProviderEbNS1_6SignumE18UNumberSignDisplayNS_14StandardPlural4FormEbRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18ScientificModifier3setEiPKNS1_17ScientificHandlerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18ScientificModifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl19MicroPropsGeneratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl19MicroPropsGeneratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl20AffixPatternProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl20AffixPatternProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl21AdoptingModifierStoreD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl21AdoptingModifierStoreD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier10addToChainEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier10setSymbolsEPKNS_20DecimalFormatSymbolsEPKNS1_15CurrencySymbolsE16UNumberUnitWidthPKNS_11PluralRulesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12insertPrefixERNS_22FormattedStringBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12insertSuffixERNS_22FormattedStringBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12prepareAffixEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier14setPatternInfoEPKNS1_20AffixPatternProviderEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier15createImmutableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier19setNumberPropertiesENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier20setPatternAttributesE18UNumberSignDisplayb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier22createConstantModifierER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier23createImmutableAndChainEPKNS1_19MicroPropsGeneratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifierC2Eb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatProperties10getDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatProperties5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatPropertiesC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23MultiplierFormatHandler11setAndChainERKNS0_5ScaleEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl24ImmutablePatternModifierC2EPNS1_21AdoptingModifierStoreEPKNS_11PluralRulesEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier13getUnicodeSetERKNS_20DecimalFormatSymbolsENS2_9EPositionENS2_6EAffixER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier15getInsertStringERKNS_20DecimalFormatSymbolsENS2_6EAffixER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier20applyCurrencySpacingERNS_22FormattedStringBuilderEiiiiRKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier25applyCurrencySpacingAffixERNS_22FormattedStringBuilderEiNS2_6EAffixERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifierC2ERKNS_22FormattedStringBuilderES5_bbRKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatC2ERKNS0_24LocalizedNumberFormatterERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum10multiplyByERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEPKhiibR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum6_setToEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum8divideByERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum9normalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNumC2ERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNumC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder10codePointsEii24UNumberFormatPadPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder4noneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6PadderC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6PadderC2Eii24UNumberFormatPadPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper11forStrategyE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper13setLocaleDataERKNS1_17ParsedPatternInfoERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8Modifier10ParametersC2EPKNS1_13ModifierStoreENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8Modifier10ParametersC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8ModifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8ModifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale10powerOfTenEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale21byDoubleAndPowerOfTenEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale4noneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale8byDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale9byDecimalENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2EiPNS0_4impl6DecNumE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleaSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation10scientificEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation11compactLongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation11engineeringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation12compactShortEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation6simpleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision11maxFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision11minFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision13fixedFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision14minMaxFractionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision17constructCurrencyE14UCurrencyUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision17constructFractionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision18constructIncrementEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20constructSignificantEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20maxSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20minSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision22fixedSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision23minMaxSignificantDigitsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision28constructFractionSignificantERKNS0_17FractionPrecisionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision7integerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision8currencyE14UCurrencyUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision9incrementEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision9unlimitedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667Measure16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2ERKNS_11FormattableEPNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10updateTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10weekNumberEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11computeTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11getLocalDOWEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11internalSetENS0_11EDateFieldsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11setWeekDataERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar12makeInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13computeFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13resolveFieldsEPA12_A8_Ki);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14orphanTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14setRelatedYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14validateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15fieldDifferenceEd19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15fieldDifferenceEdNS0_11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15setTimeInMillisEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16computeJulianDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16prepareGetActualE19UCalendarDateFieldsaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16recalculateStampEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17computeWeekFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17computeZoneOffsetEddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17setFirstDayOfWeekE19UCalendarDaysOfWeek);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar18computeMillisInDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar20getDefaultDayInMonthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar20julianDayToDayOfWeekEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar21getDefaultMonthInYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar22computeGregorianFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar22handleComputeJulianDayE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar24setSkippedWallTimeOptionE23UCalendarWallTimeOption);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25getCalendarTypeFromLocaleERKNS_6LocaleEPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25setMinimalDaysInFirstWeekEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25setRepeatedWallTimeOptionE23UCalendarWallTimeOption);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar28computeGregorianAndDOWFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar35handleGetExtendedYearFromWeekFieldsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3addENS0_11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setE19UCalendarDateFieldsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar4rollENS0_11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar5clearE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar6getNowEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar8completeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar8pinFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator10setLocalesERKNS_6LocaleES3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator11getKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator11setStrengthENS0_18ECollationStrengthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator12makeInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator15registerFactoryEPNS_15CollatorFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator15setReorderCodesEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator16getKeywordValuesEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator16registerInstanceEPS0_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator23getFunctionalEquivalentEPKcRKNS_6LocaleERaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator25getEquivalentReorderCodesEiPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator8getBoundEPKhi13UColBoundModejPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2E18UColAttributeValue18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRules14createInstanceEPKcaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRules14initCurrentEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRulesC2ERNS_11LocalMemoryIiEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnit14createInstanceENS0_15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitC2ENS0_15UTimeUnitFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone10getUnknownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone10setDefaultERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone11getCustomIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone12adoptDefaultEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone12getWindowsIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone13createDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone13parseCustomIDERKNS_13UnicodeStringERiS4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14createTimeZoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14formatCustomIDEiiiaRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone15getEquivalentIDERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16dereferOlsonLinkERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16getTZDataVersionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17getIDForWindowsIDERKNS_13UnicodeStringEPKcRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone18countEquivalentIDsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone18detectHostTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone20createCustomTimeZoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone27createTimeZoneIDEnumerationE19USystemTimeZoneTypePKcPKiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone6findIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone6getGMTEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone8loadRuleEPK15UResourceBundleRKNS_13UnicodeStringEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringEPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta10getShortIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta10getShortIDERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta13getMetazoneIDERKNS_13UnicodeStringEdRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14findMetaZoneIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14findTimeZoneIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14formatCustomIDEhhhaRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getCanonicalCountryERKNS_13UnicodeStringERS1_Pa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getMetazoneMappingsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getZoneIdByMetazoneERKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta20createCustomTimeZoneEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta22createMetazoneMappingsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta23getAvailableMetazoneIDsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta23getShortIDFromCanonicalEPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber11postProcessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber12isBetterThanERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber16setCharsConsumedERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumberC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl13SymbolMatcherC2ERKNS_13UnicodeStringENS_7unisets3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl14PercentMatcherC2ERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl15PermilleMatcherC2ERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl15PlusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16MinusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl10addMatcherERNS1_18NumberParseMatcherE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl18createSimpleParserERKNS_6LocaleERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl26createParserFromPropertiesERKNS_6number4impl23DecimalFormatPropertiesERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl17IgnorablesMatcherC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18ArraySeriesMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18ArraySeriesMatcherC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18NumberParseMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18NumberParseMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl19AffixPatternMatcher16fromAffixPatternERKNS_13UnicodeStringERNS1_26AffixTokenMatcherWarehouseEiPbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl19AffixPatternMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl23CombinedCurrencyMatcherC2ERKNS_6number4impl15CurrencySymbolsERKNS_20DecimalFormatSymbolsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse10ignorablesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse20nextCodePointMatcherEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse7percentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8currencyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8permilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8plusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse9minusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouseC2EPKNS1_26AffixTokenMatcherSetupDataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation25incTwoBytePrimaryByOffsetEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation26decTwoBytePrimaryByOneStepEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation27incThreeBytePrimaryByOffsetEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation28decThreeBytePrimaryByOneStepEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation30unassignedPrimaryFromCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation32getThreeBytePrimaryForOffsetDataEix);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet12parseScriptsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet19setScriptExtensionsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet3setE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet5UnionERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet5resetE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet6setAllEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet8resetAllEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet9intersectE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet9intersectERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone15createVTimeZoneERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone15setLastModifiedEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone19createVTimeZoneByIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone32createVTimeZoneFromBasicTimeZoneERKNS_13BasicTimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone4loadERNS_9VTZReaderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone5parseER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone8setTZURLERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11getCalendarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat15getNumberFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat17isCalendarLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat19getBooleanAttributeE27UDateFormatBooleanAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat9isLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610GenderInfo13getListGenderEPK7UGenderiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable23populateDecimalQuantityERNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable7getLongER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getArrayERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getInt64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getDoubleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getObjectEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getStringERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9isNumericEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611FormattableeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit10getSubtypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit8getIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUniteqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules11getKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules15getKeywordOtherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules15rulesForKeywordERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectERKNS_13IFixedDecimalE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectERKNS_6number15FormattedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules9isKeywordERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRuleseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap12getChildNodeEPNS_13CharacterNodeEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap6searchEPNS_13CharacterNodeERKNS_13UnicodeStringEiiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap6searchERKNS_13UnicodeStringEiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat10getFormatsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat11getClosuresERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat9getLimitsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey9compareToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey9compareToERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKeyeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CurrencyUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CurrencyUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule12getRuleMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule15getDateRuleTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule15getTimeRuleTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule16getRuleDayOfWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule17getRuleDayOfMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule18getRuleMillisInDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule18getRuleWeekInMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRuleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRuleneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal10isInfiniteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal15hasIntegerValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal15isNanOrInfinityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal16getPluralOperandENS_13PluralOperandE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal28getVisibleFractionDigitCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal5isNaNEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat11getCurrencyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat14isGroupingUsedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat20getEffectiveCurrencyEPDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat23getMaximumIntegerDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat23getMinimumIntegerDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat24getMaximumFractionDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat24getMinimumFractionDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat21PluralSelectorAdapter6selectEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatERKNS_11FormattableEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat9parseTypeERKNS_13UnicodeStringEPKNS_6NFRuleERNS_11FormattableERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormatneERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher10groupCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher10requireEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11appendGroupEiP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11regionEnd64Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11regionStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher12getTimeLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher13getStackLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher13regionStart64Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher18hasAnchoringBoundsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher20hasTransparentBoundsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher3endER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher3endEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5end64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5end64EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEP5UTextRxR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEiP5UTextRxR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5inputEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5startER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5startEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher6hitEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7patternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7start64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7start64EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher8getInputEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher9inputTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher9regionEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern11dumpPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern11patternTextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern19groupNumberFromNameEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern19groupNumberFromNameERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5flagsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5splitEP5UTextPS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern6dumpOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7matcherER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7matcherERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7patternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPatterneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat6formatERKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormatneERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch10getPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch9safeCloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearcheqERKNS_14SearchIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule14isEquivalentToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule7getNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRuleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRuleneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone18getSimpleRulesNearEdRPNS_19InitialTimeZoneRuleERPNS_18AnnualTimeZoneRuleES6_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone21getTimeZoneRulesAfterEdRPNS_19InitialTimeZoneRuleERPNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone24hasEquivalentTransitionsERKS0_ddaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData11getSingleCEEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData12getFinalCE32Ej);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData14getScriptIndexEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData15getIndirectCE32Ej);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17addLowScriptRangeEPhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17makeReorderRangesEPKiiRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17makeReorderRangesEPKiiaRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData18addHighScriptRangeEPhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData18getGroupForPrimaryEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData20getEquivalentScriptsEiPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData22getLastPrimaryForGroupEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData23getFirstPrimaryForGroupEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat12getAttributeE22UNumberFormatAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat13getMultiplierEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat14getFormatWidthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat14getPadPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15fastFormatInt64ExRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15getGroupingSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat16fastFormatDoubleEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat16getCurrencyUsageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17doFastFormatInt32EibRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getCurrencyParserER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getNegativePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getNegativeSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getPositivePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getPositiveSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17isParseNoExponentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17isSignAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17toNumberFormatterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat18getMultiplierScaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat18toLocalizedPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20getRoundingIncrementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20isParseCaseSensitiveEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20isScientificNotationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat21getCurrencyPluralInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat21getPadCharacterStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23formatToDecimalQuantityERKNS_11FormattableERNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23formatToDecimalQuantityEdRNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24areSignificantDigitsUsedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getMinimumExponentDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getMinimumGroupingDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getSecondaryGroupingSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat25isExponentSignAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat27getMaximumSignificantDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat27getMinimumSignificantDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat29isDecimalPatternMatchRequiredEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat29isDecimalSeparatorAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat31isFormatFailIfMoreThanMaxDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat9getParserER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FieldPosition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FieldPosition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter20formatStringsToValueEPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_PNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_iRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter7format_EPKNS_13UnicodeStringEiRS1_iRiPNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat11getLocaleIDER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat13formatMeasureERKNS_7MeasureERKNS_12NumberFormatERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat13formatNumericEPKNS_11FormattableEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat14formatMeasuresEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat14getPluralRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat18getUnitDisplayNameERKNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat20formatMeasurePerUnitERKNS_7MeasureERKNS_11MeasureUnitERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat23formatMeasuresSlowTrackEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat23getNumberFormatInternalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat25getCurrencyFormatInternalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat9getLocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat10getFormatsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat14updateMetaDataERNS_17AppendableWrapperEiPNS_13FieldPositionEPKNS_11FormattableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat15getArgTypeCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat18getCachedFormatterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat18usesNamedArgumentsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat19createIntegerFormatERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat19findOtherSubMessageEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20getArgFromListByNameEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20getDefaultDateFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20nextTopLevelArgStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat22PluralSelectorProvider6selectEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat22getDefaultNumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat23formatComplexSubMessageEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat24findFirstPluralNumberArgEiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat33getLiteralStringUntilNextArgumentEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseEiRKNS_13UnicodeStringERNS_13ParsePositionERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_PNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperEPNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone19getHistoricalOffsetEdaiiRiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone20checkTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone23transitionTimeInSecondsEs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment11codePointAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment12getCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment19toTempUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment6charAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegmenteqERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames14getDisplayNameERKNS_13UnicodeStringE17UTimeZoneNameTypedRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames15getDisplayNamesERKNS_13UnicodeStringEPK17UTimeZoneNameTypeidPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection13getNameTypeAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getMetaZoneIDAtEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getTimeZoneIDAtEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection16getMatchLengthAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames23getExemplarLocationNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614CurrencyAmount17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614CurrencyAmount5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar8yearTypeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_14SharedCalendarEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_17SharedPluralRulesEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_18DateFmtBestPatternEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_18SharedNumberFormatEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_19CollationCacheEntryEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_22MeasureFormatCacheDataEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_23SharedDateFormatSymbolsEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_25RelativeDateTimeCacheDataEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator12getAttributeE16USearchAttribute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator14getMatchedTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator15getMatchedStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator16getBreakIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator16getMatchedLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator7getTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone20checkTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount11getTimeUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount16getTimeUnitFieldEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmounteqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat11parseZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13formatGenericERKNS_8TimeZoneEidRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13getGMTPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13getTimeZoneIDEPKNS_13TimeZoneNames19MatchInfoCollectionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat14formatSpecificERKNS_8TimeZoneE17UTimeZoneNameTypeS4_dRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16getGMTZeroFormatERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16getTimeZoneNamesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16parseShortZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat17parseOffsetFieldsERKNS_13UnicodeStringEiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18appendOffsetDigitsERNS_13UnicodeStringEih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18getGMTOffsetDigitsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat19formatOffsetISO8601EiaaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat19getGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat20getTZDBTimeZoneNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat21parseExemplarLocationERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat22formatExemplarLocationERKNS_8TimeZoneERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat22getDefaultParseOptionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23createTimeZoneForOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23getTimeZoneGenericNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetISO8601BasicEiaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24parseDefaultOffsetFieldsERKNS_13UnicodeStringEiDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat25parseAbuttingOffsetFieldsERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat25parseSingleLocalizedDigitERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat27formatOffsetISO8601ExtendedEiaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat28parseOffsetFieldsWithPatternERKNS_13UnicodeStringEiPNS_7UVectorEaRiS6_S6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat28parseOffsetShortLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat29formatOffsetShortLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat30parseOffsetDefaultLocalizedGMTERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat30parseOffsetLocalizedGMTPatternERKNS_13UnicodeStringEiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat35parseOffsetFieldWithLocalizedDigitsERKNS_13UnicodeStringEihhttRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEiP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat6formatE20UTimeZoneFormatStyleRKNS_8TimeZoneEdRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator10getElementEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator12getSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator12getTargetSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13countElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13createInverseER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositioniR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator14_transliterateERNS_11ReplaceableER14UTransPositionPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator18handleGetSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositiona);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositionaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21finishTransliterationERNS_11ReplaceableER14UTransPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator5getIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator7toRulesERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator9getFilterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex10initLabelsERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex13getRecordDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex13getRecordNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex9getBucketEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getBucketIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getBucketLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getInflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16createBucketListER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16getMaxLabelCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16getOverflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex17getUnderflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex18getBucketLabelTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex20getBucketRecordCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndexeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndexneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar11newMoonNearEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar12daysToMillisEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar12millisToDaysEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14majorSolarTermEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14winterSolsticeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar18isLeapMonthBetweenEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar19hasNoMajorSolarTermEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar20synodicMonthsBetweenEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23getFieldResolutionTableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar26getChineseCalZoneAstroCalcEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar30internalGetDefaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar34internalGetDefaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar7newYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615CollatorFactory7visibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar10monthStartEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14trueMonthStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar9yearStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem13isAlgorithmicEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem14getDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem7getNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem8getRadixEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder12ignorePrefixERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder12ignoreStringERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder14findCommonNodeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder24mergeCompositeIntoStringERKNS_13UnicodeStringEiiS3_RS1_S4_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder5isFCDERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights13lengthenRangeERNS0_11WeightRangeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights17incWeightByOffsetEjii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights9incWeightEji);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo15getBestSkeletonERKNS_13UnicodeStringERa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo15getDefaultOrderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo18getIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo26getFallbackIntervalPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfoeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat11countDigitsERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat11matchStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iS5_RNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat14checkIntSuffixERKNS_13UnicodeStringEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat15getSmpFmtLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat15skipUWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17getTimeZoneFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17zeroPaddingNumberEPKNS_12NumberFormatERNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18compareSimpleAffixERKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18isFieldUnitIgnoredE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18matchQuarterStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iRNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18toLocalizedPatternERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat20getDateFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat21matchDayPeriodStringsERKNS_13UnicodeStringEiPS2_iRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat21skipPatternWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat22getNumberFormatByIndexE16UDateFormatField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat23getNumberFormatForFieldEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat5parseERKNS_13UnicodeStringERNS_8CalendarERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat7_formatERNS_8CalendarERNS_13UnicodeStringERNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionEaPKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableEiRNS_13ParsePositionEaPKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8subParseERKNS_13UnicodeStringERiDsiaaPaS4_RNS_8CalendarEiPNS_13MessageFormatEP23UTimeZoneFormatTimeTypePi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8tzFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat9subFormatERNS_13UnicodeStringEDsi15UDisplayContextiRNS_20FieldPositionHandlerERNS_8CalendarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIterator11getDataCE32Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIterator25forbidSurrogateCodePointsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettings8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettings9reorderExEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettingseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getEraNamesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getQuartersERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getWeekdaysERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getWeekdaysERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols12getYearNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols13getNarrowErasERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getAmPmStringsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getShortMonthsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getZodiacNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getZoneStringsERiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols16getShortWeekdaysERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols20getLeapMonthPatternsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols20getLocalPatternCharsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols22getTimeSeparatorStringERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols7getErasERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getMonthsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getMonthsERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbolseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10isLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10yearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10yearLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11boundsCheckEi19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11monthLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11monthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14internalGetEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14isEquivalentToERKNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14validateFieldsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar18getGregorianChangeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter12getByVariantEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter6formatERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter7isValidEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getSortKeyEPKDsiPhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getSortKeyERKNS_13UnicodeStringEPhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getVersionEPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator11cloneBinaryEPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator12getAttributeE13UColAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator12writeSortKeyEPKDsiRNS_15SortKeyByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator13cloneRuleDataERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getMaxVariableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getTailoredSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getVariableTopER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14internalGetCEsERKNS_13UnicodeStringERNS_9UVector64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getCollationKeyEPKDsiRNS_12CollationKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getCollationKeyERKNS_13UnicodeStringERNS_12CollationKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getMaxExpansionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getReorderCodesEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator17initMaxExpansionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator18getDefaultSettingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19internalGetLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19setFastLatinOptionsERNS_17CollationSettingsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19writeIdenticalLevelEPKDsS2_RNS_15SortKeyByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator23internalAddContractionsEiRNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_17CharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator36internalGetContractionsAndExpansionsEPNS_10UnicodeSetES2_aR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareEPKDsiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareER13UCharIteratorS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8getRulesE14UColRuleOptionRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8isUnsafeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9doCompareEPKDsiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9doCompareEPKhiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollatoreqERKNS_8CollatorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone13completeConstER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone13getLocalDeltaEiiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone15findRuleInFinalEdaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getOffsetInternalEdaiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getTransitionTimeEPNS_10TransitionEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone8findNextEdaRdRPNS_12TimeZoneRuleES4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone8findPrevEdaRdRPNS_12TimeZoneRuleES4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZoneneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule10getEndYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule12getStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule14getStartInYearEiiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule7getRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer10Equatorial8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer7Horizon8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer8Ecliptic8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CollationTailoring13getUCAVersionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo14getPluralRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo24getCurrencyPluralPatternERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfoeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat10formatImplERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13formatToValueERKNS_12DateIntervalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13formatToValueERNS_8CalendarES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13getDateFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat14fallbackFormatERNS_8CalendarES2_aRNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat18formatIntervalImplERKNS_12DateIntervalERNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat19fallbackFormatRangeERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat19getDateIntervalInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatEPKNS_12DateIntervalERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatERNS_8CalendarES2_RNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition5getToEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition7getFromEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition7getTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransitioneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransitionneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser11skipCommentEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser14skipWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser9readWordsEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder10isAssignedEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder11getSingleCEEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder21getCE32FromOffsetCE32Eaij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder22isCompressibleLeadByteEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder24getLongPrimaryIfSingleCEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols28getPatternForCurrencySpacingE16UCurrencySpacingaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbolseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames13findBestMatchERKNS_13UnicodeStringEijRS1_R23UTimeZoneFormatTimeTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames14getDisplayNameERKNS_8TimeZoneE24UTimeZoneGenericNameTypedRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames22getGenericLocationNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNameseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements11findPrimaryEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements15getPrimaryAfterEjia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements16getPrimaryBeforeEja);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements16getTertiaryAfterEijj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements17getSecondaryAfterEij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements17getTertiaryBeforeEjjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements18getSecondaryBeforeEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements23lastCEWithPrimaryBeforeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements24getFirstSecTerForPrimaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements25firstCEWithPrimaryAtLeastEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements5findPEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FieldPositionIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat11findRuleSetERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat14getRuleSetNameEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat17getDefaultNaNRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat18createPluralFormatE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat21getDefaultRuleSetNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat22getDefaultInfinityRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat23getNumberOfRuleSetNamesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat27getRuleSetDisplayNameLocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat30adjustForCapitalizationContextEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat36getNumberOfRuleSetDisplayNameLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEiRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatExPNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatExRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule11getTimeTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule14getStartTimeAtEiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule15countStartTimesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule6getUTCEdii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621UTF8CollationIterator25forbidSurrogateCodePointsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621UTF8CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator12getTargetSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator17getTransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator18handleGetSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator19handleTransliterateERNS_11ReplaceableER14UTransPositiona);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator7toRulesERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder11codePointAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13containsFieldEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13contentEqualsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13toDebugStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder14codePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder15codePointBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder16getLastCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder17getFirstCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder19toTempUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder5charsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UIterCollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UTF16CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UTF16CollationIteratoreqERKNS_17CollationIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator13strengthOrderEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator15getMaxExpansionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIteratorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ConstrainedFieldPosition12matchesFieldEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator10getDecimalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator12getSkeletonsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator15getTopBitNumberEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator15isCanonicalItemERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator16getBaseSkeletonsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getAppendItemNameE21UDateTimePatternField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getDateTimeFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator19getAppendItemFormatE21UDateTimePatternField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator19getFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator20isAvailableFormatSetERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator21getAppendFormatNumberEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator21getPatternForSkeletonERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator23getFieldAndWidthIndicesEPKcP23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGeneratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGeneratorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator11nextHasLcccEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator15previousHasTcccEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder11inSameGroupEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder12encodeTwoCEsExx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder9getMiniCEEx);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUIterCollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUTF16CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUTF16CollationIteratoreqERKNS_17CollationIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter10formatImplEd14UDateDirection17UDateRelativeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatNumericEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueE14UDateDirection17UDateAbsoluteUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd14UDateDirection17UDateRelativeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd21URelativeDateTimeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter14getFormatStyleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter15getNumberFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter16adjustForContextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter17formatNumericImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18combineDateAndTimeERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18formatAbsoluteImplE14UDateDirection17UDateAbsoluteUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18formatRelativeImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter20formatNumericToValueEd21URelativeDateTimeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter23checkNoAdjustForContextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter24getCapitalizationContextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatE14UDateDirection17UDateAbsoluteUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatEd14UDateDirection17UDateRelativeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter11MarkupStyle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter11MarkupStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625SimpleNumberFormatFactory15getSupportedIDsERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625SimpleNumberFormatFactory7visibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl16nextPositionImplERNS_24ConstrainedFieldPositionEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl20getAllFieldPositionsERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8trimBackEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl9trimFrontEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6633PluralAvailableLocalesEnumeration5countER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format11parseObjectERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666FormateqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666NoUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666NoUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region13getRegionCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region14getNumericCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region18getPreferredValuesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainedRegionsE11URegionTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainedRegionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainingRegionE11URegionType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainingRegionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region8containsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666RegioneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666RegionneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number12IntegerWidth5applyERNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number12IntegerWidtheqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber15toDecimalNumberERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber18getDecimalQuantityERNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17CurrencyPrecision12withCurrencyERKNS_12CurrencyUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17FractionPrecision13withMaxDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17FractionPrecision13withMinDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18IncrementPrecision15withMinFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18ScientificNotation21withMinExponentDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18ScientificNotation23withExponentSignDisplayE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange15getFirstDecimalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange16getSecondDecimalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange17getIdentityResultER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter10formatImplEPNS0_4impl20UFormattedNumberDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter11getCompiledEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12formatDoubleEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12getAffixImplEbbRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12getCallCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter13formatDecimalENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter15computeCompiledER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter21formatDecimalQuantityERKNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter8toFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter9formatIntExR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter10formatImplERNS0_4impl25UFormattedNumberRangeDataEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter12getFormatterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter22formatFormattableRangeERKNS_11FormattableES4_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier20formatAsPrefixSuffixERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper17isNumberingSystemEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper18getNumberingSystemEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper22isDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols10getIsoCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols10loadSymbolE14UCurrNameStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols13getPluralNameENS_14StandardPlural4FormER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols17getCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols21getIntlCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols23getNarrowCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10fitsInLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10isInfiniteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10isNegativeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity11checkHealthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity11getDigitPosEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity12getMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity13fractionCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity13toPlainStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity14toFractionLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity15hasIntegerValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity16getPluralOperandENS_13PluralOperandE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity18toScientificStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity22getPositionFingerprintEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity24getLowerDisplayMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity24getUpperDisplayMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity33fractionCountWithoutTrailingZerosEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity5isNaNEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity6signumEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity6toLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8getDigitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toDecNumERNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toDoubleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity9isZeroishEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantityeqERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo12getEndpointsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo15hasCurrencySignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo18containsSymbolTypeENS1_16AffixPatternTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo19positiveHasPlusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo20negativeHasMinusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo21hasNegativeSubpatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo6charAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo6lengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo7hasBodyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo9getStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier12needsPluralsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23DecimalFormatProperties29equalsDefaultExceptFastFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23DecimalFormatProperties7_equalsERKS2_b);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23MultiplierFormatHandler15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier11getModifierENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier13applyToMicrosERNS1_10MicroPropsERKNS1_15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl30CurrencySpacingEnabledModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat18getNumberFormatterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum10isNegativeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum6isZeroEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum8toStringERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6Padder11padAndApplyERKNS1_8ModifierES5_RNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper10getPrimaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper12getSecondaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper15groupAtPositionEiRKNS1_15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number5Scale17applyReciprocalToERNS0_4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number5Scale7applyToERNS0_4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number9Precision12withCurrencyERKNS_12CurrencyUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667Measure17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667Measure5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667MeasureeqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMaximumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMaximumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMinimumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMinimumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10newerFieldE19UCalendarDateFieldsS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11newestStampE19UCalendarDateFieldsS1_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar14getRelatedYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar14isEquivalentToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getActualHelperE19UCalendarDateFieldsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getLeastMaximumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getLeastMaximumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getTimeInMillisER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMinimumENS0_11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getBasicTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getDayOfWeekTypeE19UCalendarDaysOfWeekR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar17getFirstDayOfWeekER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar17getFirstDayOfWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar18getGreatestMinimumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar18getGreatestMinimumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar20getWeekendTransitionE19UCalendarDaysOfWeekR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar23getFieldResolutionTableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar24getSkippedWallTimeOptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar25getMinimalDaysInFirstWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar25getRepeatedWallTimeOptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar34getImmediatePreviousZoneTransitionEdPdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar3getE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar5afterERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar5isSetE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar6beforeERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar6equalsERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar8getLimitE19UCalendarDateFieldsNS0_10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isWeekendEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isWeekendEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CalendareqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator11getStrengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14getMaxVariableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14getTailoredSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14greaterOrEqualERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator15getReorderCodesEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator6equalsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareEPKDsiS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareER13UCharIteratorS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7greaterERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator9safeCloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CollatoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CollatorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules11getEraIndexEiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules12getStartDateEiRA3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules12getStartYearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit16getTimeUnitFieldEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone12hasSameRulesERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZoneeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber10seenNumberEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber19populateFormattableERNS_11FormattableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber7successEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber9getDoubleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher11postProcessERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher6getSetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl14PercentMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl14PercentMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PermilleMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PermilleMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PlusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PlusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16MinusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16MinusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl11parseGreedyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl13getParseFlagsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl21parseLongestRecursiveERNS_13StringSegmentERNS1_12ParsedNumberEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEbRNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEibRNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher10isFlexibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher3endEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher5beginEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl19AffixPatternMatcher10getPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl19AffixPatternMatchereqERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher13matchCurrencyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet10intersectsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet10nextSetBitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet12countMembersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet14displayScriptsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet4testE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet8containsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSeteqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone10beginRRULEERNS_9VTZWriterEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11appendUNTILERNS_9VTZWriterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeFooterERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeSimpleEdRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeSimpleEdRNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12endZonePropsERNS_9VTZWriterEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12writeHeadersERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14beginZonePropsERNS_9VTZWriterEaRKNS_13UnicodeStringEiidR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14writeFinalRuleERNS_9VTZWriterEaPKNS_18AnnualTimeZoneRuleEiidR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone15getLastModifiedERd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone19writeZonePropsByDOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone19writeZonePropsByDOWERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone20writeZonePropsByTimeERNS_9VTZWriterEaRKNS_13UnicodeStringEiidaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone27writeZonePropsByDOW_GEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone27writeZonePropsByDOW_LEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone31writeZonePropsByDOW_GEQ_DOM_subERNS_9VTZWriterEiiiidiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeEdRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeEdRNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone8getTZURLERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9writeZoneERNS_9VTZWriterERNS_13BasicTimeZoneEPNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZoneneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6612FixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6612FixedDecimalD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getFinalStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getFirstStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getNextStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getPreviousStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_isEquivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_formatMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_formatMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_parseMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_parseMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vformatMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vformatMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vparseMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vparseMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_add_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clearField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_equivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getCanonicalTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDayOfWeekType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDefaultTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getFieldDifference_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getGregorianChange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getHostTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getMillis_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getNow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTZDataVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneIDForWindowsID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneTransitionDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getWeekendTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getWindowsTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_inDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_isSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_isWeekend_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openCountryTimeZones_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openTimeZoneIDEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openTimeZones_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_roll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDateTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDefaultTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setGregorianChange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setMillis_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_constrainCategory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_constrainField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getCategory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getIndexes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getInt64IterationContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_matchesField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_setInt64IterationContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_setState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_cloneBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_closeElements_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_equal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getBound_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getContractionsAndExpansions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getContractions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getEquivalentReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getFunctionalEquivalent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywordValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getMaxExpansion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getMaxVariable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getRulesEx_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getShortDefinitionString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getSortKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getStrength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getTailoredSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getUCAVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getUnsafeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_greaterOrEqual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_greater_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_keyHashCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_mergeSortkeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_nextSortKeyPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_normalizeShortDefinitionString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openAvailableLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openElements_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openFromShortString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_prepareShortStringOpen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_primaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_restoreVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_secondaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setMaxVariable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setStrength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcollIter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcollUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcoll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_tertiaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_detectAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_detect_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_enableInputFilter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getAllDetectableCharsets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getConfidence_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getDetectableCharsets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_isInputFilterEnabled_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setDeclaredEncoding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setDetectableCharset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_adoptNumberFormatForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_adoptNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_applyPatternRelative_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_countSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatCalendarForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_get2DigitYearStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getBooleanAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getNumberFormatForField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_isLenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_parseCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_registerOpener_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_set2DigitYearStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setBooleanAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setLenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toCalendarDateField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPatternRelativeDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPatternRelativeTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_unregisterOpener_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_addPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getAppendItemFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getAppendItemName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBaseSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBestPatternWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBestPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getDateTimeFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getFieldDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getPatternForSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openBaseSkeletons_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openSkeletons_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_replaceFieldTypesWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_replaceFieldTypes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setAppendItemFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setAppendItemName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setDateTimeFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_formatToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getArrayItemByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getArrayLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDecNumChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_isNumeric_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmtval_getString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmtval_nextPosition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ugender_getInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ugender_getListGender_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_deleteScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_equalsScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_formatStringsToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getCLDRVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getDelimiter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getExemplarSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getLocaleDisplayPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getLocaleSeparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getMeasurementSystem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getNoSubstitute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getPaperSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_setNoSubstitute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_autoQuoteApostrophe_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_setLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_vformat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_vparse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDoubleCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDoubleForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatUFormattable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getDoubleAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getSymbol_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getTextAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDoubleCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseToUFormattable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setDoubleAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setSymbol_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setTextAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openForSkeletonAndLocaleWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openForSkeletonAndLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultGetAllFieldPositions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultNextFieldPosition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getDescription_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getRadix_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_isAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_openAvailableNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_openByName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_getKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_openForType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_selectFormatted_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_selectWithFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_select_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextClearStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextGetRounding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextGetStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextRestoreStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSaveStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetRounding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusFromStringQuiet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusQuiet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextStatusToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextTestSavedStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextTestStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextZeroStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAbs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAdd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberClassToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareSignal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareTotalMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareTotal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopyAbs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopyNegate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopySign_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberDivideInteger_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberDivide_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberExp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFMA_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromUInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberGetBCD_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberInvert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberIsNormal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberIsSubnormal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLog10_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLogB_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMaxMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMax_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMinMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMin_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMinus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMultiply_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextMinus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextPlus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextToward_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNormalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberOr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberPlus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberPower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberQuantize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberReduce_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRemainderNear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRemainder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRescale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRotate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSameQuantum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberScaleB_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSetBCD_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberShift_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSquareRoot_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSubtract_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToEngString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToIntegralExact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToIntegralValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToUInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberTrim_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberXor_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberZero_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_deleteConditionalCE32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendReplacementUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendReplacement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendTailUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendTail_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_end64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_end_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_find64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_findNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_find_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_flags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getFindProgressCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getMatchCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getStackLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getTimeLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupNumberFromCName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupNumberFromName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_group_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hasAnchoringBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hasTransparentBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hitEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_lookingAt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_lookingAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_matches64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_matches_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_openC_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_openUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_patternUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_pattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_refreshUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionEnd64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionStart64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceAllUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceFirstUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceFirst_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_requireEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_reset64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setFindProgressCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setMatchCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegion64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegionAndStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setStackLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setTimeLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_splitUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_split_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_start64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_start_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_useAnchoringBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_useTransparentBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_areEqual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_contains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainedRegionsOfType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainedRegions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainingRegionOfType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainingRegion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getPreferredValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionFromCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionFromNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_combineDateAndTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatNumericToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatNumeric_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_first_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_following_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_last_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_openFromCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_preceding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_searchBackwards_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_search_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusableUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusableUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2UnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_checkUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_checkUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_closeCheckResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultNumerics_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getInclusionSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getInclusionUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRecommendedSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRecommendedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getSkeletonUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openCheckResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openFromSource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_fromInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_getTimeScaleValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_toInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_countAvailableIDs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getAvailableID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getSourceSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getUnicodeID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openIDs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_register_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_setFilter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_stripRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_toRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transIncrementalUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transIncremental_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_trans_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_unregisterID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_unregister_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_countTransitionRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getLastModified_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getNextTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset2_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset3_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getPreviousTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getTZURL_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_hasSameRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_inDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_openData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_openID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setLastModified_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setTZURL_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_useDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_writeFromStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_writeSimple_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_write_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_isEquivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_adoptFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_adoptTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setTo_66);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _Z34uspoof_getSkeletonUnicodeString_66PK13USpoofCheckerjRKN6icu_6613UnicodeStringERS3_P10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendar6ceToJDEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendar6jdToCEEiiRiS1_S1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat11setCalendarERKNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat13adoptCalendarEPNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat14createInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat14getBestPatternERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat15setNumberFormatERKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18createDateInstanceENS0_6EStyleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18createTimeInstanceENS0_6EStyleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18setCalendarLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat19setBooleanAttributeE27UDateFormatBooleanAttributeaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonEPNS_8CalendarERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo11getInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo12loadInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo18getNeutralInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo21getMaleTaintsInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo23getMixedNeutralInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable10adoptArrayEPS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable11adoptObjectEPNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable11adoptStringEPNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16getDecimalNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16setDecimalNumberENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable20adoptDecimalQuantityEPNS_6number4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable21internalGetCharStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7setDateEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7setLongEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable8setArrayEPKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable8setInt64Ex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9setDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9setStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EdNS0_6ISDATEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createAcreER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createByteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createGramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createKnotER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createMoleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createPintER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createVoltER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createWattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createWeekER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCelsiusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getFurlongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getGigabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getHectareEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getKilobitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getMegabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getPercentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getTerabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getThermUsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10initNoUnitEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createCaratER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createDunamER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createHertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createJouleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createKaratER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createLiterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createMonthER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createOunceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPixelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPoundER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createQuartER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createStoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getAcreFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getGigabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getGigawattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilobyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilogramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilowattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMegabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMegawattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMillibarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getPermilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getPetabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getTeaspoonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getTerabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createAmpereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createBarrelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createBushelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDaltonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDecadeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDegreeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createFathomER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createGForceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createGallonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createInchHgER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createKelvinER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createMinuteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createNewtonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createParsecER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createPascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createRadianER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getArcMinuteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getArcSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getAvailableEPKcPS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getAvailableEPS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCupMetricEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDayPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDeciliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDecimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getEarthMassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getGigahertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilohertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilojouleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getLightYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegahertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegaliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegapixelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMetricTonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMicrogramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMilligramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMilliwattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getNanometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getOunceTroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPermyriadEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPicometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPoundFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getSolarMassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12initCurrencyEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCelsiusER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCenturyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createFurlongER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createGigabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createHectareER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createKilobitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createMegabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createPercentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createTerabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createThermUsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getAtmosphereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCentiliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCubicMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getDotPerInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getFahrenheitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getFluidOunceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getHectoliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getHorsepowerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getIndexCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getKilopascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMegapascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMicrometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMilliliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMillimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getNanosecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getPintMetricEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getPoundForceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getTablespoonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getWeekPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getYearPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createAcreFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createGigabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createGigawattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilobyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilogramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilowattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMegabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMegawattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMillibarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createPermilleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createPetabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createTeaspoonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createTerabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getFoodcalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getHectopascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getKilocalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMicrosecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMilePerHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMilliampereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMillisecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMonthPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getNewtonMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getSolarRadiusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getSquareMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createArcMinuteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createArcSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCupMetricER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDayPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDeciliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDecimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createEarthMassER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createGigahertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilohertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilojouleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createLightYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegahertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegaliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegapixelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMetricTonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMicrogramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMilligramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMilliwattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createNanometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createOunceTroyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPermyriadER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPicometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPoundFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createSolarMassER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getElectronvoltEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getKilowattHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getNauticalMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getPixelPerInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createAtmosphereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCentiliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCubicMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createDotPerInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createFahrenheitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createFluidOunceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createHectoliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createHorsepowerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createKilopascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMegapascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMicrometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMilliliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMillimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createNanosecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createPintMetricER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createPoundForceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createTablespoonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createWeekPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createYearPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16getMilePerGallonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createFoodcalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createHectopascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createKilocalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMicrosecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMilePerHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMilliampereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMillisecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMonthPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createNewtonMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createSolarRadiusER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createSquareMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getAvailableTypesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getCubicKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getGallonImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getMeterPerSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getPartPerMillionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createElectronvoltER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createKilowattHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createNauticalMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createPixelPerInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getCubicCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getRevolutionAngleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getSolarLuminosityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getSquareKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18resolveUnitPerUnitERKS0_S2_Pb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19createMilePerGallonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getAstronomicalUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getDotPerCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getKilometerPerHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getMileScandinavianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getSquareCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createCubicKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createGallonImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createMeterPerSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createPartPerMillionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20getLiterPerKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20getMillimolePerLiterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createCubicCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createRevolutionAngleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createSolarLuminosityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createSquareKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getBritishThermalUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getFluidOunceImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getGenericTemperatureEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getPixelPerCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getPoundPerSquareInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createAstronomicalUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createDotPerCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createKilometerPerHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createMileScandinavianER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createSquareCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22getMillimeterOfMercuryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit23createLiterPerKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit23createMillimolePerLiterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createBritishThermalUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createFluidOunceImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createGenericTemperatureER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createPixelPerCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createPoundPerSquareInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getLiterPer100KilometersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMeterPerSecondSquaredEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMilePerGallonImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMilligramPerDeciliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit25createMillimeterOfMercuryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createLiterPer100KilometersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMeterPerSecondSquaredER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMilePerGallonImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMilligramPerDeciliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit33internalGetIndexForTypeAndSubtypeEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit5getEmEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit5setToEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6createEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getBarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getBitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getCupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getLuxEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getOhmEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getTonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getAcreEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getByteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getGramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getKnotEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getMoleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getPintEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getVoltEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getWattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8createEmER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getCaratEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getDunamEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getHertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getJouleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getKaratEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getLiterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getOunceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPixelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPoundEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getQuartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getStoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8initTimeEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createBarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createBitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createCupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createDayER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createLuxER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createOhmER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createTonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getAmpereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getBarrelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getBushelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDaltonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDecadeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDegreeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getFathomEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getGForceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getGallonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getInchHgEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getKelvinEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getMinuteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getNewtonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getParsecEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getPascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getRadianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules10getSamplesERKNS_13UnicodeStringEPdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules11createRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules17internalForLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules18createDefaultRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getAllKeywordValuesERKNS_13UnicodeStringEPdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getAvailableLocalesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getRuleFromResourceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules20createSharedInstanceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules21getUniqueKeywordValueERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap12addChildNodeEPNS_13CharacterNodeEDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap3putEPKDsPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap3putERKNS_13UnicodeStringEPvRNS_12ZNStringPoolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap7putImplERKNS_13UnicodeStringEPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap9buildTrieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap9growNodesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapC2EaPFvPvE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat13parseArgumentERKNS_14MessagePatternEiRKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat14findSubMessageERKNS_14MessagePatternEid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat25matchStringUntilLimitPartERKNS_14MessagePatternEiiRKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat4dtosEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2EPKdPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2EPKdPKaPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey10reallocateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey9setLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2EPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ENS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ERKNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiaiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal19getFractionalDigitsEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal26adjustForMinFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal4initEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal4initEdix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal8decimalsEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal9quickInitEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Edi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Edix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat11setCurrencyEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15registerFactoryEPNS_19NumberFormatFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15setGroupingUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15setRoundingModeENS0_13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat16isStyleSupportedE18UNumberFormatStyle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19setParseIntegerOnlyEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat20createSharedInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat21createPercentInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat21createPercentInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22createCurrencyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22createCurrencyInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22internalCreateInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat23setMaximumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat23setMinimumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24createScientificInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24createScientificInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24setMaximumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24setMinimumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat11copyObjectsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14PluralSelectorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14PluralSelectorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14findSubMessageERKNS_14MessagePatternEiRKNS0_14PluralSelectorEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat15setNumberFormatEPKNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapter5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat4initEPKNS_11PluralRulesE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10compileSetEPNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10nextCharLLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10peekCharLLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11blockTopLocEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11fixLiteralsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11literalCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile12allocateDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile13scanNamedCharEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile13scanPosixPropEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14doParseActionsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14matchStartTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14maxMatchLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14minMatchLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile15compileIntervalEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile16handleCloseParenEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile17allocateStackDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile20createSetForPropertyERKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile21compileInlineIntervalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile27findCaseInsensitiveStartersEiPNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile5errorE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7buildOpEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7compileEP5UTextR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7setEvalEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8appendOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8appendOpEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8insertOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8nextCharERNS0_16RegexPatternCharE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8scanPropEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile9setPushOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile9stripNOPsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileC2EPNS_12RegexPatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10appendTailEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10appendTailERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10replaceAllEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10replaceAllERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10resetStackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12MatchChunkAtEiaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12replaceFirstEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12replaceFirstERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12setTimeLimitEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher13IncrementTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher13setStackLimitEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher14findUsingChunkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher14isWordBoundaryEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher15isUWordBoundaryEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16getMatchCallbackERPFaPKviERS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16refreshInputTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16setMatchCallbackEPFaPKviES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher17appendReplacementEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher17appendReplacementERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher18useAnchoringBoundsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher19isChunkWordBoundaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher19resetPreserveRegionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher20useTransparentBoundsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher23getFindProgressCallbackERPFaPKvxERS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher23setFindProgressCallbackEPFaPKvxES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5init2EP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetEP5UText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5splitEP5UTextPS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher6regionExxR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher6regionExxxR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7MatchAtExaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7matchesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7matchesExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher8setTraceEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher9lookingAtER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher9lookingAtExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EP5UTextS2_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EP5UTextjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EPKNS_12RegexPatternE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringES3_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern19initNamedCaptureMapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern3zapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextjR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7matchesEP5UTextS2_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7matchesERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat14findSubMessageERKNS_14MessagePatternEiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10handleNextEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10handlePrevEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10setPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch11setCollatorEPNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch9setOffsetEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorEPNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorERKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_PNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_RKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleC2ERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool3getEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool3getERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool5adoptEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPoolC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPoolD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallback11needToWriteENS_9Collation5LevelE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys26writeSortKeyUpToQuaternaryERNS_17CollationIteratorEPKaRKNS_17CollationSettingsERNS_15SortKeyByteSinkENS_9Collation5LevelERNS0_13LevelCallbackEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot11getSettingsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot17getRootCacheEntryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot4loadER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot7getDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot7getRootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DangiCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat11setCurrencyEPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat11setCurrencyEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12setAttributeE22UNumberFormatAttributeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12touchNoErrorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat13setMultiplierEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat14setFormatWidthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat14setPadPositionENS0_12EPadPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setGroupingSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setGroupingUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setPadCharacterERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setupFastFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16setCurrencyUsageE14UCurrencyUsageP10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16setParseAllInputE27UNumberFormatAttributeValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setNegativePrefixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setNegativeSuffixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setPositivePrefixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setPositiveSuffixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setMultiplierScaleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setParseNoExponentEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setSignAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat19fieldPositionHelperERKNS_6number15FormattedNumberERNS_13FieldPositionEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat19setParseIntegerOnlyEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat20setRoundingIncrementEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setCurrencyPluralInfoERKNS_18CurrencyPluralInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setParseCaseSensitiveEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setScientificNotationEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23adoptCurrencyPluralInfoEPNS_18CurrencyPluralInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setMaximumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setMinimumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMaximumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumExponentDigitsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumGroupingDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setPropertiesFromPatternERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setSecondaryGroupingSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setSignificantDigitsUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat26setExponentSignAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27fieldPositionIteratorHelperERKNS_6number15FormattedNumberEPNS_21FieldPositionIteratorEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27setMaximumSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27setMinimumSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat30setDecimalPatternMatchRequiredEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat30setDecimalSeparatorAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat32setFormatFailIfMoreThanMaxDigitsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat5touchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2EPKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPosition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPositionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613IFixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613IFixedDecimalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14initializeHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter16ListPatternsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter16ListPatternsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter21getListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter22loadListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2EPKNS_18ListFormatInternalE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2ERKNS_14ListFormatDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat17adoptNumberFormatEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat17initMeasureFormatERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat20createCurrencyFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat20createCurrencyFormatERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat22setMeasureFormatLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat10getArgNameEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat10setFormatsEPPKNS_6FormatEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11adoptFormatERKNS_13UnicodeStringEPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11adoptFormatEiPNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11copyObjectsERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11findKeywordERKNS_13UnicodeStringEPKPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12adoptFormatsEPPNS_6FormatEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringE29UMessagePatternApostropheModeP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12equalFormatsEPKvS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12resetPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat14argNameMatchesEiRKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat14getFormatNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat16allocateArgTypesEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat17setArgStartFormatEiPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat19autoQuoteApostropheERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat20cacheExplicitFormatsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProvider5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderC2ERKS0_11UPluralType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat23createAppropriateFormatERNS_13UnicodeStringES2_RNS_11Formattable4TypeER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat23setCustomArgStartFormatEiPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat6formatERKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9getFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setFormatERKNS_13UnicodeStringERKNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setFormatEiRKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone14constructEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone19initTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone20clearTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone21deleteTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneC2EPK15UResourceBundleS3_RKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment11resetLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment12adjustOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment15codePointsEqualEiib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment21getCommonPrefixLengthERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment23adjustOffsetByCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment23getPrefixLengthInternalERKNS_13UnicodeStringEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment28getCaseSensitivePrefixLengthERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment9setLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment9setOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegmentC2ERKNS_13UnicodeStringEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames18createTZDBInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection11addMetaZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection7addZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection7matchesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19loadAllDisplayNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CopticCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmount16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2ERKNS_11FormattableENS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2EdNS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614FormattedValueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614FormattedValueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar10isLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar11startOfYearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar12monthsInYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar22absoluteDayToDayOfWeekEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator12setAttributeE16USearchAttribute21USearchAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator13setMatchStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator14setMatchLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator16setBreakIteratorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator16setMatchNotFoundEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator4lastER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator5firstER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator9followingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator9precedingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERKNS_13UnicodeStringEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERNS_17CharacterIteratorEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SharedCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SharedCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone11decodeRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13compareToRuleEaaaaaiiNS0_5EModeEaaai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13decodeEndRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13setDSTSavingsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone15decodeStartRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone19initTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone20clearTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone21deleteTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone9constructEiaaaiNS0_8TimeModeEaaaiS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiNS0_8TimeModeEaaaiS4_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural10getKeywordENS0_4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural15indexFromStringEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural15indexFromStringERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural25indexOrNegativeFromStringEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural25indexOrNegativeFromStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TaiwanCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmount16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2ERKNS_11FormattableENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2EdNS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15getTimeUnitNameENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15initDataMembersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15setNumberFormatERKNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat16checkConsistencyE20UTimeUnitFormatStylePKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat19searchInLocaleChainE20UTimeUnitFormatStylePKcS3_NS_8TimeUnit15UTimeUnitFieldsERKNS_13UnicodeStringES3_PNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat21readFromCurrentLocaleE20UTimeUnitFormatStylePKcRKNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat5setupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat6createE20UTimeUnitFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleE20UTimeUnitFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat11getTimeTypeE17UTimeZoneNameType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat12toCodePointsERKNS_13UnicodeStringEPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat13setGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat14initGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16setGMTZeroFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16setTimeZoneNamesERKNS_13TimeZoneNamesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18adoptTimeZoneNamesEPNS_13TimeZoneNamesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18parseOffsetPatternERKNS_13UnicodeStringENS0_12OffsetFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18setGMTOffsetDigitsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat19expandOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat19setGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat21initGMTOffsetPatternsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat21truncateOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat22parseAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionEDsNS0_12OffsetFieldsES6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat22setDefaultParseOptionsEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat27formatOffsetWithAsciiDigitsEiDsNS0_12OffsetFieldsES1_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat28checkAbuttingHoursAndMinutesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat30parseAbuttingAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionENS0_12OffsetFieldsES6_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat7unquoteERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator10unregisterERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator11adoptFilterEPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator12orphanFilterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator13registerAliasERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14_registerAliasERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getAvailableIDEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15createFromRulesERKNS_13UnicodeStringES3_15UTransDirectionR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15getAvailableIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16_registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16registerInstanceEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator17_registerInstanceEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator17countAvailableIDsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18getAvailableSourceEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18initializeRegistryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19_getAvailableSourceEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19_getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19createBasicInstanceERKNS_13UnicodeStringEPS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator20_getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator21countAvailableSourcesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator21countAvailableTargetsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22_countAvailableSourcesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22_countAvailableTargetsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22countAvailableVariantsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23_countAvailableVariantsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23_registerSpecialInverseERKNS_13UnicodeStringES3_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23setMaximumContextLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorC2ERKNS_13UnicodeStringEPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex10nextBucketER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex10nextRecordER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex11initBucketsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex12clearBucketsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex12clearRecordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14ImmutableIndexD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14ImmutableIndexD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getBucketCountER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getRecordCountER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14setInflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex16setMaxLabelCountEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex16setOverflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex17addIndexExemplarsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex17setUnderflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19buildImmutableIndexER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19resetBucketIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19resetRecordIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex20firstStringsInScriptER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex25addChineseIndexCharactersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex27internalResetBucketIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex4initEPKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketC2ERKNS_13UnicodeStringES4_25UAlphabeticIndexLabelType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6RecordC2ERKNS_13UnicodeStringEPKv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6RecordD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addLabelsERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addLabelsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addRecordERKNS_13UnicodeStringEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9separatedERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexC2EPNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar11offsetMonthEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar20computeChineseFieldsEiiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleEiPKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactory14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar13civilLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar18setCalculationTypeENS0_16ECalculationTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar30initializeSystemDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar7isCivilEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar7moonAgeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarC2ERKNS_6LocaleER10UErrorCodeNS0_16ECalculationTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceEiaRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14setAlgorithmicEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem17getAvailableNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem20createInstanceByNameEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem7setDescERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem7setNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem8setRadixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615PersianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615UnicodeReplacerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615UnicodeReplacerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616BuddhistCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder10ceStrengthEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11addRelationEiRKNS_13UnicodeStringES3_S3_RPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11finalizeCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11setCaseBitsERKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder13parseAndBuildERKNS_13UnicodeStringEPKhPNS_19CollationRuleParser8ImporterEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addIfDifferentERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addOnlyClosureERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addWithClosureERKNS_13UnicodeStringES3_PKxijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder15makeTailoredCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17addTailCompositesERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17getWeight16BeforeEixi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17insertNodeBetweenEiixR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder18countTailoredNodesEPKxii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder19closeOverCompositesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder20findOrInsertWeakNodeEijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder22findOrInsertNodeForCEsEiRPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder23getSpecialResetPositionERKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder23insertTailoredNodeAfterEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder25findOrInsertNodeForRootCEExiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder26findOrInsertNodeForPrimaryEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder7sameCEsEPKxiS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder8addResetEiRKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderC2EPKNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationCompare21compareUpToQuaternaryERNS_17CollationIteratorES2_RKNS_17CollationSettingsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights10nextWeightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights12allocWeightsEjji);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights14initForPrimaryEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights15getWeightRangesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights15initForTertiaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights16initForSecondaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights25allocWeightsInShortRangesEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights29allocWeightsInMinLengthRangesEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeightsC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo13parseSkeletonERKNS_13UnicodeStringEPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo13stringNumericEiic);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo14initializeDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16DateIntervalSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16DateIntervalSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo18setIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo26setFallbackIntervalPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo28calendarFieldToIntervalIndexE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo28setIntervalPatternInternallyERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616EthiopicCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar13getCurrentEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar18enableTentativeEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10NSOverride4freeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10NSOverrideD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10initializeERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12applyPatternERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12isSyntaxCharEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12parsePatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat13adoptCalendarEPNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat13matchLiteralsERKNS_13UnicodeStringERiS3_S4_aaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16getLevelFromCharEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16isAtNumericFieldERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16translatePatternERKNS_13UnicodeStringERS1_S3_S3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17adoptNumberFormatERKNS_13UnicodeStringEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17setTimeZoneFormatERKNS_14TimeZoneFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18initializeCalendarEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18isFieldUnitIgnoredERKNS_13UnicodeStringE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18set2DigitYearStartEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat19adoptTimeZoneFormatEPNS_14TimeZoneFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat20initNumberFormattersERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat20setDateFormatSymbolsERKNS_17DateFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat21processOverrideStringERKNS_6LocaleERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat22adoptDateFormatSymbolsEPNS_17DateFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat22isAfterNonNumericFieldERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24freeFastNumberFormattersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24initFastNumberFormattersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24initializeDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat26parseAmbiguousDatesAsAfterEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat27initializeBooleanAttributesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat9constructENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat9isNumericEDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringEPNS_17DateFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_17DateFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617AnyTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator10previousCEERNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator14nextCEFromCE32EPKNS_13CollationDataEijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator16appendNumericCEsEjaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator16previousCEUnsafeEiRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator17appendCEsFromCE32EPKNS_13CollationDataEijaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator17getCE32FromPrefixEPKNS_13CollationDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator18backwardNumSkippedEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator20nextSkippedCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator22getCE32FromBuilderDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23appendNumericSegmentCEsEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23nextCE32FromContractionEPKNS_13CollationDataEjPKDsjiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator36nextCE32FromDiscontiguousContractionEPKNS_13CollationDataERNS_10UCharsTrieEjiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8CEBuffer20ensureAppendCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8CEBufferD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8fetchCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings11setStrengthEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings12setCaseFirstE18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings13setReorderingERKNS_13CollationDataEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings14setMaxVariableEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings15aliasReorderingERKNS_13CollationDataEPKiiPKjiPKhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings15resetReorderingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings16setReorderArraysEPKiiPKjiPKhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings18copyReorderingFromERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings20setAlternateHandlingE18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings25reorderTableHasSplitBytesEPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings7setFlagEi18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11assignArrayERPNS_13UnicodeStringERiPKS1_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setEraNamesEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setQuartersEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols12arrayCompareEPKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols12setYearNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols13setNarrowErasEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14initializeDataERKNS_6LocaleEPKcR10UErrorCodea);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14isNumericFieldE16UDateFormatFieldi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setAmPmStringsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setShortMonthsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setZodiacNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setZoneStringsEPKPKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols15createForLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16getPatternUCharsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16setShortWeekdaysEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols17createZoneStringsEPKPKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols18disposeZoneStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols19getPatternCharIndexEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20initZoneStringsArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20isNumericPatternCharEDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20setLocalPatternCharsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols22setTimeSeparatorStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols7setErasEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols8copyDataERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2EPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar11getEpochDayER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar13pinDayOfMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar14aggregateStampEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar17julianDayToMillisEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar17millisToJulianDayEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar18setGregorianChangeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar22computeJulianDayOfYearEaiRa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar22handleComputeJulianDayE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar35handleGetExtendedYearFromWeekFieldsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter11addIfAbsentEPKcRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter12selectPluralERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter15formatAndSelectEdRKNS_12NumberFormatERKNS_11PluralRulesERNS_22FormattedStringBuilderERNS_14StandardPlural4FormER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter6formatERKNS_15SimpleFormatterERKNS_13UnicodeStringERS4_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator10setLocalesERKNS_6LocaleES3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator12setAttributeE13UColAttribute18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14adoptTailoringEPNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator15setReorderCodesEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator20computeMaxExpansionsEPKNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator22internalBuildTailoringERKNS_13UnicodeStringEi18UColAttributeValueP11UParseErrorPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2EPKNS_19CollationCacheEntryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2EPKhiPKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringE18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthE18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER11UParseErrorRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone11deleteRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone17addTransitionRuleEPNS_12TimeZoneRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone17deleteTransitionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone8completeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone9copyRulesEPNS_7UVectorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneC2ERKNS_13UnicodeStringEPNS_19InitialTimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617SharedPluralRulesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617SharedPluralRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617double_conversion23DoubleToStringConverter13DoubleToAsciiEdNS1_8DtoaModeEiPciPbPiS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiPNS_12DateTimeRuleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiRKNS_12DateTimeRuleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10clearCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10getMoonAgeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10getSunTimeEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11getMoonTimeERKNS0_7MoonAgeEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11getMoonTimeEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11timeOfAngleERNS0_9AngleFuncEddda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12getJulianDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12getMoonPhaseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12setJulianDayEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer13getSunRiseSetEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer14getMoonRiseSetEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer14getSunPositionERNS0_10EquatorialE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15SUMMER_SOLSTICEEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15WINTER_SOLSTICEEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getMoonPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getSunLongitudeEdRdS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getSunLongitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer16getJulianCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer16getLocalSiderealEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17eclipticObliquityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17eclipticToHorizonERNS0_7HorizonEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17getSiderealOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialERKNS0_8EclipticE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEdd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20getGreenwichSiderealEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7getTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7lstToUTEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7setTimeEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer8NEW_MOONEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9AngleFuncD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9AngleFuncD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9CoordFuncD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9CoordFuncD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9FULL_MOONEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9riseOrSetERNS0_9CoordFuncEaddd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Edd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin10getOptionsEPKNS_13CollationDataERKNS_17CollationSettingsEPti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin10lookupUTF8EPKtiPKhRii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin11compareUTF8EPKtS2_iPKhiS4_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin12compareUTF16EPKtS2_iPKDsiS4_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin13getTertiariesEjaj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin14getSecondariesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin15getQuaternariesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin16lookupUTF8UnsafeEPKtiPKhRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin6lookupEPKti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin8getCasesEjaj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin8nextPairEPKtijPKDsPKhRiS7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring10setVersionEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring15ensureOwnedDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring15makeBaseVersionEPKhPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringC2EPKNS_17CollationSettingsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo10initializeERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo14setPluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo24setCurrencyPluralPatternERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo26setupCurrencyPluralPatternERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateFmtBestPatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateFmtBestPatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14setPatternInfoE19UCalendarDateFieldsPKNS_13UnicodeStringES4_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat16adjustFieldWidthERKNS_13UnicodeStringES3_S3_aRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat17initializePatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setFallbackPatternE19UCalendarDateFieldsRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsPKNS_13UnicodeStringES4_aPS2_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat19getDateTimeSkeletonERKNS_13UnicodeStringERS1_S4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat19setDateIntervalInfoERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat21fieldExistsInSkeletonE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat21splitPatternInto2PartERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat22setSeparateDateTimePtnERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat29concatSingleDate2TimeIntervalERNS_13UnicodeStringERKS1_19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat6createERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2ERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618NullTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618RelativeDateFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618SharedNumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618SharedNumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition5setToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7adoptToEPNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7setFromERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7setTimeEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition9adoptFromEPNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2EdRKNS_12TimeZoneRuleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619BreakTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataReader12isAcceptableEPvPKcS3_PK9UDataInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataReader4readEPKNS_18CollationTailoringEPKhiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter14writeTailoringERKNS_18CollationTailoringERKNS_17CollationSettingsEPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter5writeEaPKhRKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter8copyDataEPKiiPKvPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter9writeBaseERKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser11parseStringEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser12isSyntaxCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser12parseSettingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser13getOnOffValueERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser13setParseErrorEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser14getReorderCodeEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser14parseRuleChainER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15parseReorderingERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15parseUnicodeSetEiRNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15setErrorContextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseRelationStringsEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseSpecialPositionEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseTailoringStringEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser21parseRelationOperatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser21parseResetAndPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser22parseStarredCharactersEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4Sink20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4Sink8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4SinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4SinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringERNS_17CollationSettingsEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser8ImporterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser8ImporterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParserC2EPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParserD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleC2ERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619NumberFormatFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619NumberFormatFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorC2EPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder10CEModifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder10CEModifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder11encodeOneCEExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12buildContextEPNS_15ConditionalCE32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12getJamoCE32sEPjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12setDigitTagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13buildContextsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13buildMappingsERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13clearContextsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder14addContextTrieEjRNS_17UCharsTrieBuilderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder15encodeExpansionEPKxiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder16copyFromBaseCE32EijaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder16initForTailoringEPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17encodeExpansion32EPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17encodeOneCEAsCE32Ex);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17setLeadSurrogatesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder18addConditionalCE32ERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder19buildFastLatinTableERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder20maybeSetPrimaryRangeEiijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder20suppressContractionsERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder28copyContractionsFromBaseCE32ERNS_13UnicodeStringEijPNS_15ConditionalCE32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder28setPrimaryRangeAndReturnNextEiijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder3addERKNS_13UnicodeStringES3_PKxiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder5addCEExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder5buildERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEPxi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringES3_Pxi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEiPxi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder7addCE32ERKNS_13UnicodeStringES3_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder7addCE32EjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder8copyFromERKS0_RKNS0_10CEModifierER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder8optimizeERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder9encodeCEsEPKxiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormat14createInstanceERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatC2ERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols10initializeERKNS_6LocaleER10UErrorCodeaPKNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols24createWithLastResortDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols28setPatternForCurrencySpacingE16UCurrencySpacingaRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleERKNS_15NumberingSystemER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620EscapeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandler8setShiftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandlerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandlerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620RemoveTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNames14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621CaseMapTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621DateFmtBestPatternKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621DateFmtBestPatternKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIterator4nextERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIterator7setDataEPNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat15stripWhitespaceERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat17setDefaultRuleSetERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat18initDefaultRuleSetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameERKNS_13UnicodeStringERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameEiRKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat24initializeDefaultNaNRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat29initCapitalizationContextInfoERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat29initializeDefaultInfinityRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat30initializeDecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat4initERKNS_13UnicodeStringEPNS_16LocalizationInfoER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ENS_15URBNFRuleSetTagERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringEPNS_16LocalizationInfoERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRule14initStartTimesEPKdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleC2ERKNS_13UnicodeStringEiiPKdiNS_12DateTimeRule12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator18setTransliteratorsEPKPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator19freeTransliteratorsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator20adoptTransliteratorsEPPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator27computeMaximumContextLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator4initERKNS_13UnicodeStringE15UTransDirectionaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator4initERNS_7UVectorE15UTransDirectionaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator7joinIDsEPKPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2EPKPNS_14TransliteratorEiPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringE15UTransDirectionPNS_13UnicodeFilterER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringERNS_7UVectorEPNS_13UnicodeFilterEiR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorEiR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder15insertCodePointEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder15writeTerminatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder16prepareForInsertEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder22prepareForInsertHelperEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6appendERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6removeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6spliceEiiRKNS_13UnicodeStringEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorC2ERKS0_PKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UnescapeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623LowercaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623RuleBasedTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623SharedDateFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623SharedDateFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623TitlecaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623UppercaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator15getMaxExpansionEPK10UHashtablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator20computeMaxExpansionsEPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator9setOffsetEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKNS_13UnicodeStringEPKNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKNS_17CharacterIteratorEPKNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition14constrainFieldEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition17constrainCategoryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition24setInt64IterationContextEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition8setStateEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPositionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10addPatternERKNS_13UnicodeStringEaRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10getBestRawERNS_15DateTimeMatcherEiPNS_12DistanceInfoER10UErrorCodePPKNS_11PtnSkeletonE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10setDecimalERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator11addCLDRDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator11getSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13copyHashtableEPNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13getAppendNameE21UDateTimePatternFieldRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13getRedundantsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13initHashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14addICUPatternsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringE28UDateTimePatternMatchOptionsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator15getBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16adjustFieldTypesERKNS_13UnicodeStringEPKNS_11PtnSkeletonEi28UDateTimePatternMatchOptions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16getBestAppendingEiiR10UErrorCode28UDateTimePatternMatchOptions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17addCanonicalItemsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_28UDateTimePatternMatchOptionsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setAppendItemNameE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setDateTimeFormatERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setDecimalSymbolsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17staticGetSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator18setAvailableFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19createEmptyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19setAppendItemFormatE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19setFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidthRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20getCalendarTypeToUseERKNS_6LocaleERNS_10CharStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21getAllowedHourFormatsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21staticGetBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator22addPatternWithSkeletonERKNS_13UnicodeStringEPS2_aRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator23consumeShortTimePatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator23setDateTimeFromCalendarERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator25mapSkeletonMetacharactersERKNS_13UnicodeStringEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator26getMutableFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator26loadAllowedHourFormatsDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator8initDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator9hackTimesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder10loadGroupsERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder11addUniqueCEExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder13encodeCharCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder14getCEsFromCE32ERKNS_13CollationDataEijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder15encodeUniqueCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder18encodeContractionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder19addContractionEntryEixxR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder25getCEsFromContractionCE32ERKNS_13CollationDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder6getCEsERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder7forDataERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder8resetCEsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator9normalizeEPKDsS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorC2ERKS0_PKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625NameUnicodeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatter4initEPNS_12NumberFormatEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatE35UDateRelativeDateTimeFormatterStyle15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter14createInstanceEPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter14getPreExponentERKNS_20DecimalFormatSymbolsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceEPNS_13DecimalFormatERKNS_13UnicodeStringES5_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceERKNS_6LocaleERKNS_13UnicodeStringES6_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceEPNS_13DecimalFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterC2EPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryC2ERKNS_6LocaleEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625UnicodeNameTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6627NormalizationTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImpl12isIntOrGroupEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImpl14isNumericFieldEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplC2Eh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumeration5resetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Format11syntaxErrorERKNS_13UnicodeStringEiR11UParseError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Format12setLocaleIDsEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit4baseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit7percentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit8permilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region11getInstanceEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region11getInstanceEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region12getAvailableE11URegionTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region14loadRegionDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region17cleanupRegionDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidth10truncateAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidth10zeroFillToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidthC2Essb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter10withLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter4withEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number18ScientificNotationC2Eabs18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20NumberRangeFormatter10withLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20NumberRangeFormatter4withEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatter13lnfMoveHelperEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatter5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EONS0_4impl10MacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_4impl10MacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEEC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEEC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils11replaceTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeEDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils12containsTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils14estimateLengthERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils15getFieldForTypeENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils18hasCurrencySymbolsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils19iterateWithConsumerERKNS_13UnicodeStringERNS1_13TokenConsumerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils23unescapedCodePointCountERKNS_13UnicodeStringERKNS1_14SymbolProviderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils32containsOnlySymbolsAndIgnorablesERKNS_13UnicodeStringERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils6escapeERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils7hasNextERKNS1_8AffixTagERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils8unescapeERKNS_13UnicodeStringERNS_22FormattedStringBuilderEiRKNS1_14SymbolProviderEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils9nextTokenENS1_8AffixTagERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13ModifierStoreD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13ModifierStoreD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser18parseToPatternInfoERKNS_13UnicodeStringERNS1_17ParsedPatternInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser23patternInfoToPropertiesERNS1_23DecimalFormatPropertiesERNS1_17ParsedPatternInfoENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser25parseToExistingPropertiesERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser29parseToExistingPropertiesImplERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifier19formatTwoArgPatternERKNS_15SimpleFormatterERNS_22FormattedStringBuilderEiPiS8_hR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhbNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper10doCopyFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper10doMoveFromEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper5setToEPKNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper5setToERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper9doCleanupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperC2EOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperC2ERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperaSEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperaSERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10_setToLongEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10multiplyByERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10shiftRightEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11appendDigitEaib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11copyBcdFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11moveBcdFromERS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11popFromLeftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setDigitPosEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setToDecNumERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setToDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12_setToDecNumERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12readIntToBcdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12setBcdToZeroEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13readLongToBcdEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13roundToNickelEi25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13setMinIntegerEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13switchStorageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14copyFieldsFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14setMinFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14setToDecNumberENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15adjustMagnitudeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15applyMaxIntegerEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15roundToInfinityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16_setToDoubleFastEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToIncrementEd25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModebR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity18readDecNumberToBcdERKNS1_6DecNumE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity23convertToAccurateDoubleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity25readDoubleConversionToBcdEPKcii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity6negateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity7compactEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8divideByERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8setToIntEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8truncateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9_setToIntEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9setToLongEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9shiftLeftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2EOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2ERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityaSEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityaSERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo11ParserState4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo11ParserState4peekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo12consumeAffixERNS1_9EndpointsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo13consumeFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumeLiteralER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumePaddingE24UNumberFormatPadPositionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumePatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo15consumeExponentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo17consumeSubpatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo20consumeIntegerFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo21consumeFractionFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo22getLengthFromEndpointsERKNS1_9EndpointsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils16convertLocalizedERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils19escapePaddingStringENS_13UnicodeStringERS3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils23ignoreRoundingIncrementEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils25propertiesToPatternStringERKNS1_23DecimalFormatPropertiesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils26patternInfoToStringBuilderERKNS1_20AffixPatternProviderEbNS1_6SignumE18UNumberSignDisplayNS_14StandardPlural4FormEbRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18ScientificModifier3setEiPKNS1_17ScientificHandlerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18ScientificModifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl19MicroPropsGeneratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl19MicroPropsGeneratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl20AffixPatternProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl20AffixPatternProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl21AdoptingModifierStoreD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl21AdoptingModifierStoreD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier10addToChainEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier10setSymbolsEPKNS_20DecimalFormatSymbolsEPKNS1_15CurrencySymbolsE16UNumberUnitWidthPKNS_11PluralRulesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12insertPrefixERNS_22FormattedStringBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12insertSuffixERNS_22FormattedStringBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12prepareAffixEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier14setPatternInfoEPKNS1_20AffixPatternProviderEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier15createImmutableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier19setNumberPropertiesENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier20setPatternAttributesE18UNumberSignDisplayb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier22createConstantModifierER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier23createImmutableAndChainEPKNS1_19MicroPropsGeneratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifierC2Eb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatProperties10getDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatProperties5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatPropertiesC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23MultiplierFormatHandler11setAndChainERKNS0_5ScaleEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl24ImmutablePatternModifierC2EPNS1_21AdoptingModifierStoreEPKNS_11PluralRulesEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier13getUnicodeSetERKNS_20DecimalFormatSymbolsENS2_9EPositionENS2_6EAffixER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier15getInsertStringERKNS_20DecimalFormatSymbolsENS2_6EAffixER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier20applyCurrencySpacingERNS_22FormattedStringBuilderEiiiiRKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier25applyCurrencySpacingAffixERNS_22FormattedStringBuilderEiNS2_6EAffixERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifierC2ERKNS_22FormattedStringBuilderES5_bbRKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatC2ERKNS0_24LocalizedNumberFormatterERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum10multiplyByERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEPKhiibR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum6_setToEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum8divideByERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum9normalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNumC2ERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNumC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder10codePointsEii24UNumberFormatPadPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder4noneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6PadderC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6PadderC2Eii24UNumberFormatPadPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper11forStrategyE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper13setLocaleDataERKNS1_17ParsedPatternInfoERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8Modifier10ParametersC2EPKNS1_13ModifierStoreENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8Modifier10ParametersC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8ModifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8ModifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale10powerOfTenEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale21byDoubleAndPowerOfTenEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale4noneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale8byDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale9byDecimalENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2EiPNS0_4impl6DecNumE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleaSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation10scientificEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation11compactLongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation11engineeringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation12compactShortEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation6simpleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision11maxFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision11minFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision13fixedFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision14minMaxFractionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision17constructCurrencyE14UCurrencyUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision17constructFractionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision18constructIncrementEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20constructSignificantEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20maxSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20minSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision22fixedSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision23minMaxSignificantDigitsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision28constructFractionSignificantERKNS0_17FractionPrecisionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision7integerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision8currencyE14UCurrencyUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision9incrementEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision9unlimitedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667Measure16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2ERKNS_11FormattableEPNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10updateTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10weekNumberEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11computeTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11getLocalDOWEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11internalSetENS0_11EDateFieldsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11setWeekDataERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar12makeInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13computeFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13resolveFieldsEPA12_A8_Ki);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14orphanTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14setRelatedYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14validateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15fieldDifferenceEd19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15fieldDifferenceEdNS0_11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15setTimeInMillisEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16computeJulianDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16prepareGetActualE19UCalendarDateFieldsaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16recalculateStampEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17computeWeekFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17computeZoneOffsetEddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17setFirstDayOfWeekE19UCalendarDaysOfWeek);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar18computeMillisInDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar20getDefaultDayInMonthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar20julianDayToDayOfWeekEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar21getDefaultMonthInYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar22computeGregorianFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar22handleComputeJulianDayE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar24setSkippedWallTimeOptionE23UCalendarWallTimeOption);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25getCalendarTypeFromLocaleERKNS_6LocaleEPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25setMinimalDaysInFirstWeekEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25setRepeatedWallTimeOptionE23UCalendarWallTimeOption);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar28computeGregorianAndDOWFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar35handleGetExtendedYearFromWeekFieldsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3addENS0_11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setE19UCalendarDateFieldsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar4rollENS0_11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar5clearE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar6getNowEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar8completeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar8pinFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator10setLocalesERKNS_6LocaleES3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator11getKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator11setStrengthENS0_18ECollationStrengthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator12makeInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator15registerFactoryEPNS_15CollatorFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator15setReorderCodesEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator16getKeywordValuesEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator16registerInstanceEPS0_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator23getFunctionalEquivalentEPKcRKNS_6LocaleERaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator25getEquivalentReorderCodesEiPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator8getBoundEPKhi13UColBoundModejPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2E18UColAttributeValue18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRules14createInstanceEPKcaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRules14initCurrentEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRulesC2ERNS_11LocalMemoryIiEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnit14createInstanceENS0_15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitC2ENS0_15UTimeUnitFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone10getUnknownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone10setDefaultERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone11getCustomIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone12adoptDefaultEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone12getWindowsIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone13createDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone13parseCustomIDERKNS_13UnicodeStringERiS4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14createTimeZoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14formatCustomIDEiiiaRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone15getEquivalentIDERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16dereferOlsonLinkERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16getTZDataVersionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17getIDForWindowsIDERKNS_13UnicodeStringEPKcRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone18countEquivalentIDsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone18detectHostTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone20createCustomTimeZoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone27createTimeZoneIDEnumerationE19USystemTimeZoneTypePKcPKiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone6findIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone6getGMTEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone8loadRuleEPK15UResourceBundleRKNS_13UnicodeStringEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringEPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta10getShortIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta10getShortIDERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta13getMetazoneIDERKNS_13UnicodeStringEdRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14findMetaZoneIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14findTimeZoneIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14formatCustomIDEhhhaRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getCanonicalCountryERKNS_13UnicodeStringERS1_Pa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getMetazoneMappingsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getZoneIdByMetazoneERKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta20createCustomTimeZoneEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta22createMetazoneMappingsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta23getAvailableMetazoneIDsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta23getShortIDFromCanonicalEPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber11postProcessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber12isBetterThanERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber16setCharsConsumedERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumberC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl13SymbolMatcherC2ERKNS_13UnicodeStringENS_7unisets3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl14PercentMatcherC2ERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl15PermilleMatcherC2ERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl15PlusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16MinusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl10addMatcherERNS1_18NumberParseMatcherE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl18createSimpleParserERKNS_6LocaleERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl26createParserFromPropertiesERKNS_6number4impl23DecimalFormatPropertiesERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl17IgnorablesMatcherC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18ArraySeriesMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18ArraySeriesMatcherC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18NumberParseMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18NumberParseMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl19AffixPatternMatcher16fromAffixPatternERKNS_13UnicodeStringERNS1_26AffixTokenMatcherWarehouseEiPbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl19AffixPatternMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl23CombinedCurrencyMatcherC2ERKNS_6number4impl15CurrencySymbolsERKNS_20DecimalFormatSymbolsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse10ignorablesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse20nextCodePointMatcherEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse7percentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8currencyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8permilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8plusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse9minusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouseC2EPKNS1_26AffixTokenMatcherSetupDataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation25incTwoBytePrimaryByOffsetEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation26decTwoBytePrimaryByOneStepEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation27incThreeBytePrimaryByOffsetEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation28decThreeBytePrimaryByOneStepEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation30unassignedPrimaryFromCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation32getThreeBytePrimaryForOffsetDataEix);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet12parseScriptsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet19setScriptExtensionsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet3setE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet5UnionERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet5resetE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet6setAllEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet8resetAllEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet9intersectE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet9intersectERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone15createVTimeZoneERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone15setLastModifiedEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone19createVTimeZoneByIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone32createVTimeZoneFromBasicTimeZoneERKNS_13BasicTimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone4loadERNS_9VTZReaderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone5parseER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone8setTZURLERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11getCalendarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat15getNumberFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat17isCalendarLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat19getBooleanAttributeE27UDateFormatBooleanAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat9isLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610GenderInfo13getListGenderEPK7UGenderiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable23populateDecimalQuantityERNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable7getLongER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getArrayERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getInt64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getDoubleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getObjectEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getStringERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9isNumericEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611FormattableeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit10getSubtypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit8getIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUniteqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules11getKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules15getKeywordOtherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules15rulesForKeywordERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectERKNS_13IFixedDecimalE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectERKNS_6number15FormattedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules9isKeywordERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRuleseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap12getChildNodeEPNS_13CharacterNodeEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap6searchEPNS_13CharacterNodeERKNS_13UnicodeStringEiiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap6searchERKNS_13UnicodeStringEiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat10getFormatsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat11getClosuresERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat9getLimitsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey9compareToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey9compareToERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKeyeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CurrencyUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CurrencyUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule12getRuleMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule15getDateRuleTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule15getTimeRuleTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule16getRuleDayOfWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule17getRuleDayOfMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule18getRuleMillisInDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule18getRuleWeekInMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRuleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRuleneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal10isInfiniteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal15hasIntegerValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal15isNanOrInfinityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal16getPluralOperandENS_13PluralOperandE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal28getVisibleFractionDigitCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal5isNaNEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat11getCurrencyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat14isGroupingUsedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat20getEffectiveCurrencyEPDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat23getMaximumIntegerDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat23getMinimumIntegerDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat24getMaximumFractionDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat24getMinimumFractionDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat21PluralSelectorAdapter6selectEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatERKNS_11FormattableEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat9parseTypeERKNS_13UnicodeStringEPKNS_6NFRuleERNS_11FormattableERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormatneERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher10groupCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher10requireEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11appendGroupEiP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11regionEnd64Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11regionStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher12getTimeLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher13getStackLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher13regionStart64Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher18hasAnchoringBoundsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher20hasTransparentBoundsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher3endER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher3endEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5end64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5end64EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEP5UTextRxR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEiP5UTextRxR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5inputEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5startER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5startEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher6hitEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7patternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7start64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7start64EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher8getInputEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher9inputTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher9regionEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern11dumpPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern11patternTextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern19groupNumberFromNameEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern19groupNumberFromNameERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5flagsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5splitEP5UTextPS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern6dumpOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7matcherER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7matcherERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7patternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPatterneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat6formatERKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormatneERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch10getPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch9safeCloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearcheqERKNS_14SearchIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule14isEquivalentToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule7getNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRuleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRuleneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone18getSimpleRulesNearEdRPNS_19InitialTimeZoneRuleERPNS_18AnnualTimeZoneRuleES6_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone21getTimeZoneRulesAfterEdRPNS_19InitialTimeZoneRuleERPNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone24hasEquivalentTransitionsERKS0_ddaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData11getSingleCEEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData12getFinalCE32Ej);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData14getScriptIndexEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData15getIndirectCE32Ej);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17addLowScriptRangeEPhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17makeReorderRangesEPKiiRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17makeReorderRangesEPKiiaRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData18addHighScriptRangeEPhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData18getGroupForPrimaryEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData20getEquivalentScriptsEiPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData22getLastPrimaryForGroupEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData23getFirstPrimaryForGroupEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat12getAttributeE22UNumberFormatAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat13getMultiplierEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat14getFormatWidthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat14getPadPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15fastFormatInt64ExRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15getGroupingSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat16fastFormatDoubleEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat16getCurrencyUsageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17doFastFormatInt32EibRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getCurrencyParserER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getNegativePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getNegativeSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getPositivePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getPositiveSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17isParseNoExponentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17isSignAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17toNumberFormatterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat18getMultiplierScaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat18toLocalizedPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20getRoundingIncrementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20isParseCaseSensitiveEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20isScientificNotationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat21getCurrencyPluralInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat21getPadCharacterStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23formatToDecimalQuantityERKNS_11FormattableERNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23formatToDecimalQuantityEdRNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24areSignificantDigitsUsedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getMinimumExponentDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getMinimumGroupingDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getSecondaryGroupingSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat25isExponentSignAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat27getMaximumSignificantDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat27getMinimumSignificantDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat29isDecimalPatternMatchRequiredEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat29isDecimalSeparatorAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat31isFormatFailIfMoreThanMaxDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat9getParserER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FieldPosition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FieldPosition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter20formatStringsToValueEPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_PNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_iRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter7format_EPKNS_13UnicodeStringEiRS1_iRiPNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat11getLocaleIDER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat13formatMeasureERKNS_7MeasureERKNS_12NumberFormatERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat13formatNumericEPKNS_11FormattableEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat14formatMeasuresEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat14getPluralRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat18getUnitDisplayNameERKNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat20formatMeasurePerUnitERKNS_7MeasureERKNS_11MeasureUnitERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat23formatMeasuresSlowTrackEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat23getNumberFormatInternalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat25getCurrencyFormatInternalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat9getLocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat10getFormatsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat14updateMetaDataERNS_17AppendableWrapperEiPNS_13FieldPositionEPKNS_11FormattableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat15getArgTypeCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat18getCachedFormatterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat18usesNamedArgumentsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat19createIntegerFormatERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat19findOtherSubMessageEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20getArgFromListByNameEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20getDefaultDateFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20nextTopLevelArgStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat22PluralSelectorProvider6selectEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat22getDefaultNumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat23formatComplexSubMessageEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat24findFirstPluralNumberArgEiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat33getLiteralStringUntilNextArgumentEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseEiRKNS_13UnicodeStringERNS_13ParsePositionERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_PNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperEPNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone19getHistoricalOffsetEdaiiRiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone20checkTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone23transitionTimeInSecondsEs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment11codePointAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment12getCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment19toTempUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment6charAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegmenteqERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames14getDisplayNameERKNS_13UnicodeStringE17UTimeZoneNameTypedRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames15getDisplayNamesERKNS_13UnicodeStringEPK17UTimeZoneNameTypeidPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection13getNameTypeAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getMetaZoneIDAtEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getTimeZoneIDAtEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection16getMatchLengthAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames23getExemplarLocationNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614CurrencyAmount17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614CurrencyAmount5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar8yearTypeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_14SharedCalendarEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_17SharedPluralRulesEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_18DateFmtBestPatternEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_18SharedNumberFormatEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_19CollationCacheEntryEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_22MeasureFormatCacheDataEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_23SharedDateFormatSymbolsEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_25RelativeDateTimeCacheDataEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator12getAttributeE16USearchAttribute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator14getMatchedTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator15getMatchedStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator16getBreakIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator16getMatchedLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator7getTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone20checkTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount11getTimeUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount16getTimeUnitFieldEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmounteqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat11parseZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13formatGenericERKNS_8TimeZoneEidRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13getGMTPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13getTimeZoneIDEPKNS_13TimeZoneNames19MatchInfoCollectionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat14formatSpecificERKNS_8TimeZoneE17UTimeZoneNameTypeS4_dRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16getGMTZeroFormatERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16getTimeZoneNamesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16parseShortZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat17parseOffsetFieldsERKNS_13UnicodeStringEiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18appendOffsetDigitsERNS_13UnicodeStringEih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18getGMTOffsetDigitsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat19formatOffsetISO8601EiaaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat19getGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat20getTZDBTimeZoneNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat21parseExemplarLocationERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat22formatExemplarLocationERKNS_8TimeZoneERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat22getDefaultParseOptionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23createTimeZoneForOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23getTimeZoneGenericNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetISO8601BasicEiaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24parseDefaultOffsetFieldsERKNS_13UnicodeStringEiDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat25parseAbuttingOffsetFieldsERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat25parseSingleLocalizedDigitERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat27formatOffsetISO8601ExtendedEiaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat28parseOffsetFieldsWithPatternERKNS_13UnicodeStringEiPNS_7UVectorEaRiS6_S6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat28parseOffsetShortLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat29formatOffsetShortLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat30parseOffsetDefaultLocalizedGMTERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat30parseOffsetLocalizedGMTPatternERKNS_13UnicodeStringEiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat35parseOffsetFieldWithLocalizedDigitsERKNS_13UnicodeStringEihhttRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEiP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat6formatE20UTimeZoneFormatStyleRKNS_8TimeZoneEdRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator10getElementEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator12getSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator12getTargetSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13countElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13createInverseER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositioniR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator14_transliterateERNS_11ReplaceableER14UTransPositionPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator18handleGetSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositiona);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositionaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21finishTransliterationERNS_11ReplaceableER14UTransPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator5getIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator7toRulesERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator9getFilterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex10initLabelsERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex13getRecordDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex13getRecordNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex9getBucketEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getBucketIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getBucketLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getInflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16createBucketListER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16getMaxLabelCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16getOverflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex17getUnderflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex18getBucketLabelTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex20getBucketRecordCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndexeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndexneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar11newMoonNearEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar12daysToMillisEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar12millisToDaysEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14majorSolarTermEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14winterSolsticeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar18isLeapMonthBetweenEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar19hasNoMajorSolarTermEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar20synodicMonthsBetweenEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23getFieldResolutionTableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar26getChineseCalZoneAstroCalcEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar30internalGetDefaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar34internalGetDefaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar7newYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615CollatorFactory7visibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar10monthStartEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14trueMonthStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar9yearStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem13isAlgorithmicEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem14getDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem7getNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem8getRadixEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder12ignorePrefixERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder12ignoreStringERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder14findCommonNodeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder24mergeCompositeIntoStringERKNS_13UnicodeStringEiiS3_RS1_S4_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder5isFCDERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights13lengthenRangeERNS0_11WeightRangeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights17incWeightByOffsetEjii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights9incWeightEji);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo15getBestSkeletonERKNS_13UnicodeStringERa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo15getDefaultOrderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo18getIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo26getFallbackIntervalPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfoeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat11countDigitsERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat11matchStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iS5_RNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat14checkIntSuffixERKNS_13UnicodeStringEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat15getSmpFmtLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat15skipUWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17getTimeZoneFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17zeroPaddingNumberEPKNS_12NumberFormatERNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18compareSimpleAffixERKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18isFieldUnitIgnoredE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18matchQuarterStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iRNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18toLocalizedPatternERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat20getDateFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat21matchDayPeriodStringsERKNS_13UnicodeStringEiPS2_iRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat21skipPatternWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat22getNumberFormatByIndexE16UDateFormatField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat23getNumberFormatForFieldEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat5parseERKNS_13UnicodeStringERNS_8CalendarERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat7_formatERNS_8CalendarERNS_13UnicodeStringERNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionEaPKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableEiRNS_13ParsePositionEaPKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8subParseERKNS_13UnicodeStringERiDsiaaPaS4_RNS_8CalendarEiPNS_13MessageFormatEP23UTimeZoneFormatTimeTypePi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8tzFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat9subFormatERNS_13UnicodeStringEDsi15UDisplayContextiRNS_20FieldPositionHandlerERNS_8CalendarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIterator11getDataCE32Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIterator25forbidSurrogateCodePointsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettings8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettings9reorderExEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettingseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getEraNamesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getQuartersERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getWeekdaysERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getWeekdaysERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols12getYearNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols13getNarrowErasERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getAmPmStringsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getShortMonthsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getZodiacNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getZoneStringsERiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols16getShortWeekdaysERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols20getLeapMonthPatternsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols20getLocalPatternCharsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols22getTimeSeparatorStringERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols7getErasERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getMonthsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getMonthsERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbolseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10isLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10yearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10yearLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11boundsCheckEi19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11monthLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11monthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14internalGetEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14isEquivalentToERKNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14validateFieldsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar18getGregorianChangeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter12getByVariantEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter6formatERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter7isValidEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getSortKeyEPKDsiPhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getSortKeyERKNS_13UnicodeStringEPhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getVersionEPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator11cloneBinaryEPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator12getAttributeE13UColAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator12writeSortKeyEPKDsiRNS_15SortKeyByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator13cloneRuleDataERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getMaxVariableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getTailoredSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getVariableTopER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14internalGetCEsERKNS_13UnicodeStringERNS_9UVector64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getCollationKeyEPKDsiRNS_12CollationKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getCollationKeyERKNS_13UnicodeStringERNS_12CollationKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getMaxExpansionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getReorderCodesEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator17initMaxExpansionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator18getDefaultSettingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19internalGetLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19setFastLatinOptionsERNS_17CollationSettingsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19writeIdenticalLevelEPKDsS2_RNS_15SortKeyByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator23internalAddContractionsEiRNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_17CharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator36internalGetContractionsAndExpansionsEPNS_10UnicodeSetES2_aR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareEPKDsiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareER13UCharIteratorS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8getRulesE14UColRuleOptionRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8isUnsafeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9doCompareEPKDsiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9doCompareEPKhiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollatoreqERKNS_8CollatorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone13completeConstER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone13getLocalDeltaEiiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone15findRuleInFinalEdaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getOffsetInternalEdaiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getTransitionTimeEPNS_10TransitionEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone8findNextEdaRdRPNS_12TimeZoneRuleES4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone8findPrevEdaRdRPNS_12TimeZoneRuleES4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZoneneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule10getEndYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule12getStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule14getStartInYearEiiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule7getRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer10Equatorial8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer7Horizon8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer8Ecliptic8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CollationTailoring13getUCAVersionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo14getPluralRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo24getCurrencyPluralPatternERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfoeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat10formatImplERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13formatToValueERKNS_12DateIntervalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13formatToValueERNS_8CalendarES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13getDateFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat14fallbackFormatERNS_8CalendarES2_aRNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat18formatIntervalImplERKNS_12DateIntervalERNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat19fallbackFormatRangeERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat19getDateIntervalInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatEPKNS_12DateIntervalERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatERNS_8CalendarES2_RNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition5getToEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition7getFromEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition7getTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransitioneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransitionneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser11skipCommentEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser14skipWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser9readWordsEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder10isAssignedEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder11getSingleCEEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder21getCE32FromOffsetCE32Eaij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder22isCompressibleLeadByteEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder24getLongPrimaryIfSingleCEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols28getPatternForCurrencySpacingE16UCurrencySpacingaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbolseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames13findBestMatchERKNS_13UnicodeStringEijRS1_R23UTimeZoneFormatTimeTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames14getDisplayNameERKNS_8TimeZoneE24UTimeZoneGenericNameTypedRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames22getGenericLocationNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNameseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements11findPrimaryEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements15getPrimaryAfterEjia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements16getPrimaryBeforeEja);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements16getTertiaryAfterEijj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements17getSecondaryAfterEij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements17getTertiaryBeforeEjjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements18getSecondaryBeforeEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements23lastCEWithPrimaryBeforeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements24getFirstSecTerForPrimaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements25firstCEWithPrimaryAtLeastEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements5findPEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FieldPositionIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat11findRuleSetERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat14getRuleSetNameEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat17getDefaultNaNRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat18createPluralFormatE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat21getDefaultRuleSetNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat22getDefaultInfinityRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat23getNumberOfRuleSetNamesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat27getRuleSetDisplayNameLocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat30adjustForCapitalizationContextEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat36getNumberOfRuleSetDisplayNameLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEiRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatExPNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatExRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatExRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule11getTimeTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule14getStartTimeAtEiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule15countStartTimesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule6getUTCEdii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621UTF8CollationIterator25forbidSurrogateCodePointsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621UTF8CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator12getTargetSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator17getTransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator18handleGetSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator19handleTransliterateERNS_11ReplaceableER14UTransPositiona);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator7toRulesERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder11codePointAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13containsFieldEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13contentEqualsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13toDebugStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder14codePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder15codePointBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder16getLastCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder17getFirstCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder19toTempUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder5charsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UIterCollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UTF16CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UTF16CollationIteratoreqERKNS_17CollationIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator13strengthOrderEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator15getMaxExpansionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIteratorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624ConstrainedFieldPosition12matchesFieldEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator10getDecimalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator12getSkeletonsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator15getTopBitNumberEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator15isCanonicalItemERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator16getBaseSkeletonsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getAppendItemNameE21UDateTimePatternField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getDateTimeFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator19getAppendItemFormatE21UDateTimePatternField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator19getFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator20isAvailableFormatSetERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator21getAppendFormatNumberEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator21getPatternForSkeletonERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator23getFieldAndWidthIndicesEPKcP23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGeneratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGeneratorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator11nextHasLcccEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator15previousHasTcccEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder11inSameGroupEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder12encodeTwoCEsExx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder9getMiniCEEx);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUIterCollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUTF16CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUTF16CollationIteratoreqERKNS_17CollationIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter10formatImplEd14UDateDirection17UDateRelativeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatNumericEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueE14UDateDirection17UDateAbsoluteUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd14UDateDirection17UDateRelativeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd21URelativeDateTimeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter14getFormatStyleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter15getNumberFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter16adjustForContextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter17formatNumericImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18combineDateAndTimeERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18formatAbsoluteImplE14UDateDirection17UDateAbsoluteUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18formatRelativeImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter20formatNumericToValueEd21URelativeDateTimeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter23checkNoAdjustForContextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter24getCapitalizationContextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatE14UDateDirection17UDateAbsoluteUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatEd14UDateDirection17UDateRelativeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter11MarkupStyle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter11MarkupStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625SimpleNumberFormatFactory15getSupportedIDsERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625SimpleNumberFormatFactory7visibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl16nextPositionImplERNS_24ConstrainedFieldPositionEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl20getAllFieldPositionsERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8trimBackEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl9trimFrontEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6633PluralAvailableLocalesEnumeration5countER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format11parseObjectERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666FormateqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666NoUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666NoUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region13getRegionCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region14getNumericCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region18getPreferredValuesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainedRegionsE11URegionTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainedRegionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainingRegionE11URegionType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainingRegionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region8containsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666RegioneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666RegionneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number12IntegerWidth5applyERNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number12IntegerWidtheqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber15toDecimalNumberERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber18getDecimalQuantityERNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17CurrencyPrecision12withCurrencyERKNS_12CurrencyUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17FractionPrecision13withMaxDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17FractionPrecision13withMinDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18IncrementPrecision15withMinFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18ScientificNotation21withMinExponentDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18ScientificNotation23withExponentSignDisplayE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange15getFirstDecimalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange16getSecondDecimalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange17getIdentityResultER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter10formatImplEPNS0_4impl20UFormattedNumberDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter11getCompiledEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12formatDoubleEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12getAffixImplEbbRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12getCallCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter13formatDecimalENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter15computeCompiledER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter21formatDecimalQuantityERKNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter8toFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter9formatIntExR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter10formatImplERNS0_4impl25UFormattedNumberRangeDataEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter12getFormatterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter22formatFormattableRangeERKNS_11FormattableES4_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier20formatAsPrefixSuffixERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper17isNumberingSystemEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper18getNumberingSystemEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper22isDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols10getIsoCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols10loadSymbolE14UCurrNameStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols13getPluralNameENS_14StandardPlural4FormER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols17getCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols21getIntlCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols23getNarrowCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10fitsInLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10isInfiniteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10isNegativeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity11checkHealthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity11getDigitPosEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity12getMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity13fractionCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity13toPlainStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity14toFractionLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity15hasIntegerValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity16getPluralOperandENS_13PluralOperandE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity18toScientificStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity22getPositionFingerprintEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity24getLowerDisplayMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity24getUpperDisplayMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity33fractionCountWithoutTrailingZerosEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity5isNaNEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity6signumEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity6toLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8getDigitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toDecNumERNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toDoubleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity9isZeroishEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantityeqERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo12getEndpointsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo15hasCurrencySignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo18containsSymbolTypeENS1_16AffixPatternTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo19positiveHasPlusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo20negativeHasMinusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo21hasNegativeSubpatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo6charAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo6lengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo7hasBodyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo9getStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier12needsPluralsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23DecimalFormatProperties29equalsDefaultExceptFastFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23DecimalFormatProperties7_equalsERKS2_b);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23MultiplierFormatHandler15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier11getModifierENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier13applyToMicrosERNS1_10MicroPropsERKNS1_15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl30CurrencySpacingEnabledModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat18getNumberFormatterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum10isNegativeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum6isZeroEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum8toStringERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6Padder11padAndApplyERKNS1_8ModifierES5_RNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper10getPrimaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper12getSecondaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper15groupAtPositionEiRKNS1_15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number5Scale17applyReciprocalToERNS0_4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number5Scale7applyToERNS0_4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number9Precision12withCurrencyERKNS_12CurrencyUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667Measure17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667Measure5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667MeasureeqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMaximumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMaximumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMinimumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMinimumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10newerFieldE19UCalendarDateFieldsS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11newestStampE19UCalendarDateFieldsS1_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar14getRelatedYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar14isEquivalentToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getActualHelperE19UCalendarDateFieldsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getLeastMaximumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getLeastMaximumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getTimeInMillisER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMinimumENS0_11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getBasicTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getDayOfWeekTypeE19UCalendarDaysOfWeekR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar17getFirstDayOfWeekER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar17getFirstDayOfWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar18getGreatestMinimumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar18getGreatestMinimumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar20getWeekendTransitionE19UCalendarDaysOfWeekR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar23getFieldResolutionTableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar24getSkippedWallTimeOptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar25getMinimalDaysInFirstWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar25getRepeatedWallTimeOptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar34getImmediatePreviousZoneTransitionEdPdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar3getE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar5afterERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar5isSetE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar6beforeERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar6equalsERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar8getLimitE19UCalendarDateFieldsNS0_10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isWeekendEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isWeekendEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CalendareqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator11getStrengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14getMaxVariableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14getTailoredSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14greaterOrEqualERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator15getReorderCodesEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator6equalsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareEPKDsiS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareER13UCharIteratorS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7greaterERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator9safeCloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CollatoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CollatorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules11getEraIndexEiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules12getStartDateEiRA3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules12getStartYearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit16getTimeUnitFieldEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone12hasSameRulesERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZoneeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber10seenNumberEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber19populateFormattableERNS_11FormattableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber7successEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber9getDoubleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher11postProcessERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher6getSetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl14PercentMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl14PercentMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PermilleMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PermilleMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PlusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PlusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16MinusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16MinusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl11parseGreedyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl13getParseFlagsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl21parseLongestRecursiveERNS_13StringSegmentERNS1_12ParsedNumberEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEbRNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEibRNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher10isFlexibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher3endEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher5beginEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl19AffixPatternMatcher10getPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl19AffixPatternMatchereqERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher13matchCurrencyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet10intersectsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet10nextSetBitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet12countMembersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet14displayScriptsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet4testE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet8containsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSeteqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone10beginRRULEERNS_9VTZWriterEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11appendUNTILERNS_9VTZWriterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeFooterERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeSimpleEdRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeSimpleEdRNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12endZonePropsERNS_9VTZWriterEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12writeHeadersERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14beginZonePropsERNS_9VTZWriterEaRKNS_13UnicodeStringEiidR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14writeFinalRuleERNS_9VTZWriterEaPKNS_18AnnualTimeZoneRuleEiidR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone15getLastModifiedERd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone19writeZonePropsByDOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone19writeZonePropsByDOWERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone20writeZonePropsByTimeERNS_9VTZWriterEaRKNS_13UnicodeStringEiidaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone27writeZonePropsByDOW_GEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone27writeZonePropsByDOW_LEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone31writeZonePropsByDOW_GEQ_DOM_subERNS_9VTZWriterEiiiidiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeEdRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeEdRNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone8getTZURLERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9writeZoneERNS_9VTZWriterERNS_13BasicTimeZoneEPNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZoneneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_N6icu_6612FixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_N6icu_6612FixedDecimalD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn4_NK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getFinalStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getFirstStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getNextStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getPreviousStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_isEquivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_formatMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_formatMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_parseMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_parseMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vformatMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vformatMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vparseMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vparseMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_add_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clearField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_equivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getCanonicalTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDayOfWeekType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDefaultTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getFieldDifference_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getGregorianChange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getHostTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getMillis_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getNow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTZDataVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneIDForWindowsID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneTransitionDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getWeekendTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getWindowsTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_inDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_isSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_isWeekend_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openCountryTimeZones_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openTimeZoneIDEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openTimeZones_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_roll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDateTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDefaultTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setGregorianChange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setMillis_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_constrainCategory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_constrainField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getCategory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getIndexes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getInt64IterationContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_matchesField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_setInt64IterationContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_setState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_cloneBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_closeElements_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_equal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getBound_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getContractionsAndExpansions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getContractions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getEquivalentReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getFunctionalEquivalent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywordValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getMaxExpansion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getMaxVariable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getRulesEx_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getShortDefinitionString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getSortKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getStrength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getTailoredSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getUCAVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getUnsafeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_greaterOrEqual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_greater_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_keyHashCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_mergeSortkeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_nextSortKeyPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_normalizeShortDefinitionString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openAvailableLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openElements_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openFromShortString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_prepareShortStringOpen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_primaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_restoreVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_secondaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setMaxVariable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setStrength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcollIter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcollUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcoll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_tertiaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_detectAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_detect_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_enableInputFilter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getAllDetectableCharsets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getConfidence_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getDetectableCharsets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_isInputFilterEnabled_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setDeclaredEncoding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setDetectableCharset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_adoptNumberFormatForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_adoptNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_applyPatternRelative_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_countSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatCalendarForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_get2DigitYearStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getBooleanAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getNumberFormatForField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_isLenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_parseCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_registerOpener_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_set2DigitYearStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setBooleanAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setLenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toCalendarDateField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPatternRelativeDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPatternRelativeTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_unregisterOpener_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_addPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getAppendItemFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getAppendItemName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBaseSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBestPatternWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBestPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getDateTimeFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getFieldDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getPatternForSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openBaseSkeletons_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openSkeletons_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_replaceFieldTypesWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_replaceFieldTypes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setAppendItemFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setAppendItemName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setDateTimeFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_formatToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getArrayItemByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getArrayLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDecNumChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_isNumeric_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmtval_getString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmtval_nextPosition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ugender_getInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ugender_getListGender_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_compareScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_deleteScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_equalsScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_hashScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_formatStringsToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getCLDRVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getDelimiter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getExemplarSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getLocaleDisplayPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getLocaleSeparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getMeasurementSystem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getNoSubstitute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getPaperSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_setNoSubstitute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_autoQuoteApostrophe_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_setLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_vformat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_vparse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDoubleCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDoubleForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatUFormattable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getDoubleAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getSymbol_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getTextAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDoubleCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseToUFormattable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setDoubleAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setSymbol_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setTextAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openForSkeletonAndLocaleWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openForSkeletonAndLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultGetAllFieldPositions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultNextFieldPosition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getDescription_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getRadix_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_isAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_openAvailableNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_openByName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_getKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_openForType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_selectFormatted_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_selectWithFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_select_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextClearStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextGetRounding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextGetStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextRestoreStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSaveStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetRounding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusFromStringQuiet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusQuiet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextStatusToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextTestSavedStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextTestStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextZeroStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAbs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAdd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberClassToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareSignal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareTotalMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareTotal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopyAbs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopyNegate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopySign_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberDivideInteger_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberDivide_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberExp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFMA_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromUInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberGetBCD_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberInvert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberIsNormal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberIsSubnormal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLog10_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLogB_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMaxMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMax_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMinMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMin_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMinus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMultiply_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextMinus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextPlus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextToward_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNormalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberOr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberPlus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberPower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberQuantize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberReduce_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRemainderNear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRemainder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRescale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRotate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSameQuantum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberScaleB_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSetBCD_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberShift_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSquareRoot_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSubtract_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToEngString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToIntegralExact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToIntegralValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToUInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberTrim_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberXor_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberZero_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_deleteConditionalCE32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendReplacementUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendReplacement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendTailUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendTail_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_end64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_end_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_find64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_findNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_find_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_flags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getFindProgressCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getMatchCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getStackLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getTimeLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupNumberFromCName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupNumberFromName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_group_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hasAnchoringBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hasTransparentBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hitEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_lookingAt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_lookingAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_matches64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_matches_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_openC_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_openUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_patternUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_pattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_refreshUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionEnd64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionStart64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceAllUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceFirstUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceFirst_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_requireEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_reset64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setFindProgressCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setMatchCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegion64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegionAndStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setStackLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setTimeLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_splitUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_split_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_start64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_start_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_useAnchoringBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_useTransparentBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_areEqual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_contains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainedRegionsOfType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainedRegions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainingRegionOfType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainingRegion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getPreferredValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionFromCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionFromNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_combineDateAndTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatNumericToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatNumeric_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_first_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_following_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_last_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_openFromCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_preceding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_searchBackwards_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_search_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusableUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusableUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2UnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_checkUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_checkUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_closeCheckResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultNumerics_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getInclusionSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getInclusionUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRecommendedSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRecommendedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getSkeletonUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openCheckResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openFromSource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_fromInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_getTimeScaleValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_toInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_countAvailableIDs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getAvailableID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getSourceSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getUnicodeID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openIDs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_register_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_setFilter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_stripRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_toRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transIncrementalUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transIncremental_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_trans_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_unregisterID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_unregister_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_countTransitionRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getLastModified_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getNextTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset2_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset3_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getPreviousTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getTZURL_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_hasSameRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_inDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_openData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_openID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setLastModified_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setTZURL_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_useDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_writeFromStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_writeSimple_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_write_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_isEquivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_adoptFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_adoptTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setTo_66);
-}
-// clang-format on
diff --git a/overriding/libicui18n/stubs_arm64.cc b/overriding/libicui18n/stubs_arm64.cc
deleted file mode 100644
index 53d248f..0000000
--- a/overriding/libicui18n/stubs_arm64.cc
+++ /dev/null
@@ -1,9001 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z34uspoof_getSkeletonUnicodeString_66PK13USpoofCheckerjRKN6icu_6613UnicodeStringERS3_P10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendar6ceToJDEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendar6jdToCEEiiRiS1_S1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CECalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat11setCalendarERKNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat13adoptCalendarEPNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat14createInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat14getBestPatternERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat15setNumberFormatERKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18createDateInstanceENS0_6EStyleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18createTimeInstanceENS0_6EStyleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat18setCalendarLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat19setBooleanAttributeE27UDateFormatBooleanAttributeaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonEPNS_8CalendarERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610DateFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo11getInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo12loadInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo18getNeutralInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo21getMaleTaintsInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfo23getMixedNeutralInstanceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610GenderInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable10adoptArrayEPS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable11adoptObjectEPNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable11adoptStringEPNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16getDecimalNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable16setDecimalNumberENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable20adoptDecimalQuantityEPNS_6number4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable21internalGetCharStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7setDateEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable7setLongEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable8setArrayEPKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable8setInt64El);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9setDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Formattable9setStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EPNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2EdNS0_6ISDATEE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2El);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611FormattableaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createAcreER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createByteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createGramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createKnotER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createMoleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createPintER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createVoltER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createWattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createWeekER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10createYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCelsiusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getFurlongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getGigabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getHectareEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getKilobitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getMegabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getPercentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getTerabitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10getThermUsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit10initNoUnitEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createCaratER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createDunamER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createHertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createJouleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createKaratER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createLiterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createMonthER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createOunceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPixelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createPoundER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createQuartER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11createStoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getAcreFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getGigabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getGigawattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilobyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilogramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getKilowattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMegabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMegawattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getMillibarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getPermilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getPetabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getTeaspoonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit11getTerabyteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createAmpereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createBarrelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createBushelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDaltonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDecadeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createDegreeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createFathomER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createGForceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createGallonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createInchHgER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createKelvinER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createMinuteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createNewtonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createParsecER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createPascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createRadianER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12createSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getArcMinuteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getArcSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getAvailableEPKcPS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getAvailableEPS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCubicYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getCupMetricEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDayPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDeciliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getDecimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getEarthMassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getGigahertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilohertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilojouleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getLightYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegahertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegaliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMegapixelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMetricTonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMicrogramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMilligramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getMilliwattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getNanometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getOunceTroyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPermyriadEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPicometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getPoundFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12getSolarMassEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit12initCurrencyEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCelsiusER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createCenturyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createFurlongER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createGigabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createHectareER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createKilobitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createMegabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createPercentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createTerabitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13createThermUsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getAtmosphereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCentiliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getCubicMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getDotPerInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getFahrenheitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getFluidOunceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getHectoliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getHorsepowerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getIndexCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getKilopascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMegapascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMicrometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMilliliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getMillimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getNanosecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getPintMetricEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getPoundForceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getSquareYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getTablespoonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getWeekPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit13getYearPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createAcreFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createGigabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createGigawattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilobyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilogramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createKilowattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMegabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMegawattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createMillibarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createPermilleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createPetabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createTeaspoonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14createTerabyteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getFoodcalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getHectopascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getKilocalorieEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMicrosecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMilePerHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMilliampereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMillisecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getMonthPersonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getNewtonMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getSolarRadiusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit14getSquareMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createArcMinuteER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createArcSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCubicYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createCupMetricER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDayPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDeciliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createDecimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createEarthMassER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createGigahertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilohertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilojouleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createLightYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegahertzER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegaliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMegapixelER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMetricTonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMicrogramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMilligramER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createMilliwattER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createNanometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createOunceTroyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPermyriadER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPicometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createPoundFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15createSolarMassER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getElectronvoltEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getKilowattHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getNauticalMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit15getPixelPerInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createAtmosphereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCentiliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createCubicMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createDotPerInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createFahrenheitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createFluidOunceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createHectoliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createHorsepowerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createKilopascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMegapascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMicrometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMilliliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createMillimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createNanosecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createPintMetricER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createPoundForceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareFootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createSquareYardER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createTablespoonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createWeekPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16createYearPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16getMilePerGallonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createFoodcalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createHectopascalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createKilocalorieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMicrosecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMilePerHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMilliampereER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMillisecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createMonthPersonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createNewtonMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createSolarRadiusER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17createSquareMeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getAvailableTypesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getCubicKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getGallonImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getMeterPerSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit17getPartPerMillionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createElectronvoltER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createKilowattHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createNauticalMileER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18createPixelPerInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getCubicCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getRevolutionAngleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getSolarLuminosityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18getSquareKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit18resolveUnitPerUnitERKS0_S2_Pb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19createMilePerGallonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getAstronomicalUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getDotPerCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getKilometerPerHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getMileScandinavianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit19getSquareCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createCubicKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createGallonImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createMeterPerSecondER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20createPartPerMillionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20getLiterPerKilometerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit20getMillimolePerLiterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createCubicCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createRevolutionAngleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createSolarLuminosityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21createSquareKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getBritishThermalUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getFluidOunceImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getGenericTemperatureEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getPixelPerCentimeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit21getPoundPerSquareInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createAstronomicalUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createDotPerCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createKilometerPerHourER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createMileScandinavianER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22createSquareCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit22getMillimeterOfMercuryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit23createLiterPerKilometerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit23createMillimolePerLiterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createBritishThermalUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createFluidOunceImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createGenericTemperatureER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createPixelPerCentimeterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24createPoundPerSquareInchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getLiterPer100KilometersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMeterPerSecondSquaredEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMilePerGallonImperialEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit24getMilligramPerDeciliterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit25createMillimeterOfMercuryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createLiterPer100KilometersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMeterPerSecondSquaredER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMilePerGallonImperialER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit27createMilligramPerDeciliterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit33internalGetIndexForTypeAndSubtypeEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit5getEmEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit5setToEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6createEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getBarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getBitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getCupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getLuxEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getOhmEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit6getTonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getAcreEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getByteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getFootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getGramEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getHourEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getInchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getKnotEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getMileEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getMoleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getPintEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getVoltEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getWattEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getYardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit7getYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8createEmER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getCaratEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getDunamEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getHertzEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getJouleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getKaratEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getLiterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getMeterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getOunceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPixelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getPoundEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getQuartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8getStoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit8initTimeEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createBarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createBitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createCupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createDayER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createLuxER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createOhmER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9createTonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getAmpereEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getBarrelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getBushelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDaltonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDecadeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getDegreeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getFathomEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getGForceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getGallonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getInchHgEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getKelvinEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getMinuteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getNewtonEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getParsecEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getPascalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getRadianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnit9getSecondEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MeasureUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules10getSamplesERKNS_13UnicodeStringEPdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules11createRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules17internalForLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules18createDefaultRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getAllKeywordValuesERKNS_13UnicodeStringEPdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getAvailableLocalesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules19getRuleFromResourceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules20createSharedInstanceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules21getUniqueKeywordValueERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611PluralRulesaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap12addChildNodeEPNS_13CharacterNodeEDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap3putEPKDsPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap3putERKNS_13UnicodeStringEPvRNS_12ZNStringPoolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap7putImplERKNS_13UnicodeStringEPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap9buildTrieER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMap9growNodesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapC2EaPFvPvE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611TextTrieMapD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat13parseArgumentERKNS_14MessagePatternEiRKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat14findSubMessageERKNS_14MessagePatternEid);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat25matchStringUntilLimitPartERKNS_14MessagePatternEiiRKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormat4dtosEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2EPKdPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2EPKdPKaPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ChoiceFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey10reallocateEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKey9setLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2EPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CollationKeyaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ENS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ERKNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CurrencyUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiaiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleC2EiiiiNS0_12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateTimeRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal19getFractionalDigitsEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal26adjustForMinFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal4initEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal4initEdil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal8decimalsEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimal9quickInitEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Edi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Edil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612FixedDecimalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat11setCurrencyEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15registerFactoryEPNS_19NumberFormatFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15setGroupingUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat15setRoundingModeENS0_13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat16isStyleSupportedE18UNumberFormatStyle);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat19setParseIntegerOnlyEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat20createSharedInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat21createPercentInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat21createPercentInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22createCurrencyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22createCurrencyInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat22internalCreateInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat23setMaximumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat23setMinimumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24createScientificInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24createScientificInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24setMaximumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormat24setMinimumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612NumberFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat11copyObjectsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14PluralSelectorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14PluralSelectorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat14findSubMessageERKNS_14MessagePatternEiRKNS0_14PluralSelectorEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat15setNumberFormatEPKNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapter5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat21PluralSelectorAdapterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat4initEPKNS_11PluralRulesE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PluralFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10compileSetEPNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10nextCharLLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile10peekCharLLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11blockTopLocEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11fixLiteralsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile11literalCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile12allocateDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile13scanNamedCharEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile13scanPosixPropEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14doParseActionsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14matchStartTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14maxMatchLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile14minMatchLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile15compileIntervalEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile16handleCloseParenEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile17allocateStackDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile20createSetForPropertyERKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile21compileInlineIntervalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile27findCaseInsensitiveStartersEiPNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile5errorE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7buildOpEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7compileEP5UTextR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile7setEvalEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8appendOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8appendOpEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8insertOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8nextCharERNS0_16RegexPatternCharE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile8scanPropEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile9setPushOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompile9stripNOPsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileC2EPNS_12RegexPatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexCompileD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10appendTailEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10appendTailERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10replaceAllEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10replaceAllERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher10resetStackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12MatchChunkAtEiaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12replaceFirstEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12replaceFirstERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher12setTimeLimitEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher13IncrementTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher13setStackLimitEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher14findUsingChunkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher14isWordBoundaryEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher15isUWordBoundaryEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16getMatchCallbackERPFaPKviERS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16refreshInputTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher16setMatchCallbackEPFaPKviES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher17appendReplacementEP5UTextS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher17appendReplacementERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher18useAnchoringBoundsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher19isChunkWordBoundaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher19resetPreserveRegionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher20useTransparentBoundsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher23getFindProgressCallbackERPFaPKvlERS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher23setFindProgressCallbackEPFaPKvlES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4findEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5init2EP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetEP5UText);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5splitEP5UTextPS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher6regionEllR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher6regionElllR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7MatchAtElaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7matchesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher7matchesElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher8setTraceEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher9lookingAtER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcher9lookingAtElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EP5UTextS2_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EP5UTextjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2EPKNS_12RegexPatternE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringES3_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern19initNamedCaptureMapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern3zapEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileEP5UTextjR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7matchesEP5UTextS2_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPattern7matchesERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612RegexPatternaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat14findSubMessageERKNS_14MessagePatternEiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SelectFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10handleNextEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10handlePrevEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch10setPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch11setCollatorEPNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearch9setOffsetEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorEPNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorERKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_PNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_RKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612StringSearchaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleC2ERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612TimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool3getEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool3getERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool5adoptEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPool6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPoolC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ZNStringPoolD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BasicTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallback11needToWriteENS_9Collation5LevelE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallbackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys13LevelCallbackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationKeys26writeSortKeyUpToQuaternaryERNS_17CollationIteratorEPKaRKNS_17CollationSettingsERNS_15SortKeyByteSinkENS_9Collation5LevelERNS0_13LevelCallbackEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot11getSettingsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot17getRootCacheEntryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot4loadER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot7getDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613CollationRoot7getRootER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DangiCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat11setCurrencyEPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat11setCurrencyEPKDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12setAttributeE22UNumberFormatAttributeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat12touchNoErrorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat13setMultiplierEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat14setFormatWidthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat14setPadPositionENS0_12EPadPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setGroupingSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setGroupingUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setPadCharacterERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat15setupFastFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16setCurrencyUsageE14UCurrencyUsageP10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat16setParseAllInputE27UNumberFormatAttributeValue);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setNegativePrefixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setNegativeSuffixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setPositivePrefixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat17setPositiveSuffixERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setMultiplierScaleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setParseNoExponentEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat18setSignAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat19fieldPositionHelperERKNS_6number15FormattedNumberERNS_13FieldPositionEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat19setParseIntegerOnlyEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat20setRoundingIncrementEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setCurrencyPluralInfoERKNS_18CurrencyPluralInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setParseCaseSensitiveEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat21setScientificNotationEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23adoptCurrencyPluralInfoEPNS_18CurrencyPluralInfoE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setMaximumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat23setMinimumIntegerDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMaximumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumExponentDigitsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumFractionDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setMinimumGroupingDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setPropertiesFromPatternERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setSecondaryGroupingSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat24setSignificantDigitsUsedEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat26setExponentSignAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27fieldPositionIteratorHelperERKNS_6number15FormattedNumberEPNS_21FieldPositionIteratorEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27setMaximumSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat27setMinimumSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat30setDecimalPatternMatchRequiredEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat30setDecimalSeparatorAlwaysShownEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat32setFormatFailIfMoreThanMaxDigitsEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormat5touchER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2EPKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsE18UNumberFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613DecimalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPosition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPositionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FieldPositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613FormattedListaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613IFixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613IFixedDecimalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter14initializeHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter16ListPatternsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter16ListPatternsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter21getListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatter22loadListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2EPKNS_18ListFormatInternalE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2ERKNS_14ListFormatDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ListFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat17adoptNumberFormatEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat17initMeasureFormatERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat20createCurrencyFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat20createCurrencyFormatERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormat22setMeasureFormatLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MeasureFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat10getArgNameEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat10setFormatsEPPKNS_6FormatEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11adoptFormatERKNS_13UnicodeStringEPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11adoptFormatEiPNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11copyObjectsERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat11findKeywordERKNS_13UnicodeStringEPKPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12adoptFormatsEPPNS_6FormatEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringE29UMessagePatternApostropheModeP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12equalFormatsEPKvS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat12resetPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat14argNameMatchesEiRKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat14getFormatNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat16allocateArgTypesEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat17setArgStartFormatEiPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat19autoQuoteApostropheERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat20cacheExplicitFormatsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProvider5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderC2ERKS0_11UPluralType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat22PluralSelectorProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat23createAppropriateFormatERNS_13UnicodeStringES2_RNS_11Formattable4TypeER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat23setCustomArgStartFormatEiPNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat6formatERKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9getFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setFormatERKNS_13UnicodeStringERKNS_6FormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setFormatEiRKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormat9setLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613MessageFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone14constructEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone19initTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone20clearTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZone21deleteTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneC2EPK15UResourceBundleS3_RKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613OlsonTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment11resetLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment12adjustOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment15codePointsEqualEiib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment21getCommonPrefixLengthERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment23adjustOffsetByCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment23getPrefixLengthInternalERKNS_13UnicodeStringEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment28getCaseSensitivePrefixLengthERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment9setLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegment9setOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613StringSegmentC2ERKNS_13UnicodeStringEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames18createTZDBInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection11addMetaZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection7addZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollection7matchesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19MatchInfoCollectionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNames19loadAllDisplayNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613TimeZoneNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CopticCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmount16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2ERKNS_11FormattableENS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountC2EdNS_14ConstChar16PtrER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614CurrencyAmountaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614FormattedValueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614FormattedValueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar10isLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar11startOfYearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar12monthsInYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar22absoluteDayToDayOfWeekEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614HebrewCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614IndianCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator12setAttributeE16USearchAttribute21USearchAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator13setMatchStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator14setMatchLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator16setBreakIteratorEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator16setMatchNotFoundEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator4lastER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator5firstER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator9followingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIterator9precedingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERKNS_13UnicodeStringEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2ERNS_17CharacterIteratorEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SearchIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SharedCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SharedCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone11decodeRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone12setStartYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13compareToRuleEaaaaaiiNS0_5EModeEaaai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13decodeEndRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone13setDSTSavingsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone15decodeStartRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone19initTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone20clearTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone21deleteTransitionRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZone9constructEiaaaiNS0_8TimeModeEaaaiS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiNS0_8TimeModeEaaaiS4_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614SimpleTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural10getKeywordENS0_4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural15indexFromStringEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural15indexFromStringERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural25indexOrNegativeFromStringEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614StandardPlural25indexOrNegativeFromStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TaiwanCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmount16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2ERKNS_11FormattableENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountC2EdNS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitAmountaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15getTimeUnitNameENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15initDataMembersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat15setNumberFormatERKNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat16checkConsistencyE20UTimeUnitFormatStylePKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat19searchInLocaleChainE20UTimeUnitFormatStylePKcS3_NS_8TimeUnit15UTimeUnitFieldsERKNS_13UnicodeStringES3_PNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat21readFromCurrentLocaleE20UTimeUnitFormatStylePKcRKNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat5setupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat6createE20UTimeUnitFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleE20UTimeUnitFormatStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeUnitFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat11getTimeTypeE17UTimeZoneNameType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat12toCodePointsERKNS_13UnicodeStringEPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat13setGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat14initGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16setGMTZeroFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat16setTimeZoneNamesERKNS_13TimeZoneNamesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18adoptTimeZoneNamesEPNS_13TimeZoneNamesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18parseOffsetPatternERKNS_13UnicodeStringENS0_12OffsetFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat18setGMTOffsetDigitsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat19expandOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat19setGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat21initGMTOffsetPatternsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat21truncateOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat22parseAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionEDsNS0_12OffsetFieldsES6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat22setDefaultParseOptionsEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat27formatOffsetWithAsciiDigitsEiDsNS0_12OffsetFieldsES1_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat28checkAbuttingHoursAndMinutesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat30parseAbuttingAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionENS0_12OffsetFieldsES6_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormat7unquoteERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TimeZoneFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator10unregisterERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator11adoptFilterEPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator12orphanFilterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator13registerAliasERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14_registerAliasERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getAvailableIDEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15createFromRulesERKNS_13UnicodeStringES3_15UTransDirectionR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15getAvailableIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator15registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16_registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator16registerInstanceEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator17_registerInstanceEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator17countAvailableIDsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18getAvailableSourceEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator18initializeRegistryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19_getAvailableSourceEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19_getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19createBasicInstanceERKNS_13UnicodeStringEPS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator19getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator20_getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator21countAvailableSourcesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator21countAvailableTargetsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22_countAvailableSourcesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22_countAvailableTargetsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator22countAvailableVariantsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23_countAvailableVariantsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23_registerSpecialInverseERKNS_13UnicodeStringES3_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614Transliterator23setMaximumContextLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorC2ERKNS_13UnicodeStringEPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614TransliteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex10nextBucketER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex10nextRecordER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex11initBucketsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex12clearBucketsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex12clearRecordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14ImmutableIndexD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14ImmutableIndexD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getBucketCountER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14getRecordCountER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex14setInflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex16setMaxLabelCountEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex16setOverflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex17addIndexExemplarsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex17setUnderflowLabelERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19buildImmutableIndexER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19resetBucketIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex19resetRecordIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex20firstStringsInScriptER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex25addChineseIndexCharactersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex27internalResetBucketIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex4initEPKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketC2ERKNS_13UnicodeStringES4_25UAlphabeticIndexLabelType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6BucketD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6RecordC2ERKNS_13UnicodeStringEPKv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex6RecordD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addLabelsERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addLabelsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9addRecordERKNS_13UnicodeStringEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndex9separatedERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexC2EPNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615AlphabeticIndexD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar11offsetMonthEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar20computeChineseFieldsEiiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleEiPKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ChineseCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactory14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615CollatorFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar13civilLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar18setCalculationTypeENS0_16ECalculationTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar30initializeSystemDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar7isCivilEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendar7moonAgeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarC2ERKNS_6LocaleER10UErrorCodeNS0_16ECalculationTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615IslamicCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14createInstanceEiaRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem14setAlgorithmicEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem17getAvailableNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem20createInstanceByNameEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem7setDescERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem7setNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystem8setRadixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615NumberingSystemD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615PersianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615UnicodeReplacerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615UnicodeReplacerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BuddhistCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder10ceStrengthEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11addRelationEiRKNS_13UnicodeStringES3_S3_RPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11finalizeCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder11setCaseBitsERKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder13parseAndBuildERKNS_13UnicodeStringEPKhPNS_19CollationRuleParser8ImporterEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addIfDifferentERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addOnlyClosureERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder14addWithClosureERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder15makeTailoredCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17addTailCompositesERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17getWeight16BeforeEili);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder17insertNodeBetweenEiilR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder18countTailoredNodesEPKlii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder19closeOverCompositesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder20findOrInsertWeakNodeEijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder22findOrInsertNodeForCEsEiRPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder23getSpecialResetPositionERKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder23insertTailoredNodeAfterEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder25findOrInsertNodeForRootCEEliR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder26findOrInsertNodeForPrimaryEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder7sameCEsEPKliS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder8addResetEiRKNS_13UnicodeStringERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilder8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderC2EPKNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationCompare21compareUpToQuaternaryERNS_17CollationIteratorES2_RKNS_17CollationSettingsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights10nextWeightEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights12allocWeightsEjji);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights14initForPrimaryEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights15getWeightRangesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights15initForTertiaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights16initForSecondaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights25allocWeightsInShortRangesEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeights29allocWeightsInMinLengthRangesEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616CollationWeightsC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo13parseSkeletonERKNS_13UnicodeStringEPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo13stringNumericEiic);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo14initializeDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16DateIntervalSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16DateIntervalSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo18setIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo26setFallbackIntervalPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo28calendarFieldToIntervalIndexE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo28setIntervalPatternInternallyERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfo8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616DateIntervalInfoaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616EthiopicCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar13getCurrentEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616JapaneseCalendar18enableTentativeEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10NSOverride4freeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10NSOverrideD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10initializeERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12applyPatternERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12isSyntaxCharEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat12parsePatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat13adoptCalendarEPNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat13matchLiteralsERKNS_13UnicodeStringERiS3_S4_aaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16getLevelFromCharEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16isAtNumericFieldERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat16translatePatternERKNS_13UnicodeStringERS1_S3_S3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17adoptNumberFormatERKNS_13UnicodeStringEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat17setTimeZoneFormatERKNS_14TimeZoneFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18initializeCalendarEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18isFieldUnitIgnoredERKNS_13UnicodeStringE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat18set2DigitYearStartEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat19adoptTimeZoneFormatEPNS_14TimeZoneFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat20initNumberFormattersERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat20setDateFormatSymbolsERKNS_17DateFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat21processOverrideStringERKNS_6LocaleERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat22adoptDateFormatSymbolsEPNS_17DateFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat22isAfterNonNumericFieldERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24freeFastNumberFormattersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24initFastNumberFormattersER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat24initializeDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat26parseAmbiguousDatesAsAfterEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat27initializeBooleanAttributesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat9constructENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormat9isNumericEDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringEPNS_17DateFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_17DateFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616SimpleDateFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617AnyTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator10previousCEERNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator14nextCEFromCE32EPKNS_13CollationDataEijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator16appendNumericCEsEjaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator16previousCEUnsafeEiRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator17appendCEsFromCE32EPKNS_13CollationDataEijaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator17getCE32FromPrefixEPKNS_13CollationDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator18backwardNumSkippedEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator20nextSkippedCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator22getCE32FromBuilderDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23appendNumericSegmentCEsEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator23nextCE32FromContractionEPKNS_13CollationDataEjPKDsjiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator36nextCE32FromDiscontiguousContractionEPKNS_13CollationDataERNS_10UCharsTrieEjiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8CEBuffer20ensureAppendCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8CEBufferD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIterator8fetchCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings11setStrengthEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings12setCaseFirstE18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings13setReorderingERKNS_13CollationDataEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings14setMaxVariableEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings15aliasReorderingERKNS_13CollationDataEPKiiPKjiPKhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings15resetReorderingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings16setReorderArraysEPKiiPKjiPKhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings18copyReorderingFromERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings20setAlternateHandlingE18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings25reorderTableHasSplitBytesEPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettings7setFlagEi18UColAttributeValueiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CollationSettingsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11assignArrayERPNS_13UnicodeStringERiPKS1_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setEraNamesEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setQuartersEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols12arrayCompareEPKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols12setYearNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols13setNarrowErasEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14initializeDataERKNS_6LocaleEPKcR10UErrorCodea);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14isNumericFieldE16UDateFormatFieldi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setAmPmStringsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setShortMonthsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setZodiacNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols14setZoneStringsEPKPKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols15createForLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16getPatternUCharsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols16setShortWeekdaysEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols17createZoneStringsEPKPKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols18disposeZoneStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols19getPatternCharIndexEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20initZoneStringsArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20isNumericPatternCharEDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols20setLocalPatternCharsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols22setTimeSeparatorStringERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols7setErasEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols8copyDataERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2EPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DateFormatSymbolsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar11getEpochDayER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar13pinDayOfMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar14aggregateStampEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar17julianDayToMillisEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar17millisToJulianDayEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar18setGregorianChangeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar21handleGetExtendedYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar22computeJulianDayOfYearEaiRa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar22handleComputeJulianDayE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar35handleGetExtendedYearFromWeekFieldsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarC2EiiiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617GregorianCalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter11addIfAbsentEPKcRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter12selectPluralERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter15formatAndSelectEdRKNS_12NumberFormatERKNS_11PluralRulesERNS_22FormattedStringBuilderERNS_14StandardPlural4FormER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatter6formatERKNS_15SimpleFormatterERKNS_13UnicodeStringERS4_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617QuantityFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator10setLocalesERKNS_6LocaleES3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator12setAttributeE13UColAttribute18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14adoptTailoringEPNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator14setVariableTopEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator15setReorderCodesEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator20computeMaxExpansionsEPKNS_18CollationTailoringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollator22internalBuildTailoringERKNS_13UnicodeStringEi18UColAttributeValueP11UParseErrorPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2EPKNS_19CollationCacheEntryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2EPKhiPKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringE18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthE18UColAttributeValueR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER11UParseErrorRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedCollatoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone11deleteRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone17addTransitionRuleEPNS_12TimeZoneRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone17deleteTransitionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone8completeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZone9copyRulesEPNS_7UVectorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneC2ERKNS_13UnicodeStringEPNS_19InitialTimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617RuleBasedTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617SharedPluralRulesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617SharedPluralRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617double_conversion23DoubleToStringConverter13DoubleToAsciiEdNS1_8DtoaModeEiPciPbPiS5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiPNS_12DateTimeRuleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiRKNS_12DateTimeRuleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618AnnualTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10clearCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10getMoonAgeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer10getSunTimeEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11getMoonTimeERKNS0_7MoonAgeEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11getMoonTimeEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer11timeOfAngleERNS0_9AngleFuncEddda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12getJulianDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12getMoonPhaseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer12setJulianDayEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer13getSunRiseSetEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer14getMoonRiseSetEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer14getSunPositionERNS0_10EquatorialE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15SUMMER_SOLSTICEEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15WINTER_SOLSTICEEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getMoonPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getSunLongitudeEdRdS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer15getSunLongitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer16getJulianCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer16getLocalSiderealEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17eclipticObliquityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17eclipticToHorizonERNS0_7HorizonEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer17getSiderealOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialERKNS0_8EclipticE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEdd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer20getGreenwichSiderealEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7getTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7lstToUTEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer7setTimeEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer8NEW_MOONEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9AngleFuncD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9AngleFuncD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9CoordFuncD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9CoordFuncD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9FULL_MOONEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomer9riseOrSetERNS0_9CoordFuncEaddd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Ed);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Edd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CalendarAstronomerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin10getOptionsEPKNS_13CollationDataERKNS_17CollationSettingsEPti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin10lookupUTF8EPKtiPKhRii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin11compareUTF8EPKtS2_iPKhiS4_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin12compareUTF16EPKtS2_iPKDsiS4_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin13getTertiariesEjaj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin14getSecondariesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin15getQuaternariesEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin16lookupUTF8UnsafeEPKtiPKhRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin6lookupEPKti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin8getCasesEjaj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationFastLatin8nextPairEPKtijPKDsPKhRiS7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring10setVersionEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring15ensureOwnedDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoring15makeBaseVersionEPKhPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringC2EPKNS_17CollationSettingsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CollationTailoringD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo10deleteHashEPNS_9HashtableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo10initializeERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo14setPluralRulesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo24setCurrencyPluralPatternERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo26setupCurrencyPluralPatternERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo8initHashER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfo9setLocaleERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CurrencyPluralInfoaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateFmtBestPatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateFmtBestPatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat14setPatternInfoE19UCalendarDateFieldsPKNS_13UnicodeStringES4_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat16adjustFieldWidthERKNS_13UnicodeStringES3_S3_aRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat17initializePatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setFallbackPatternE19UCalendarDateFieldsRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsPKNS_13UnicodeStringES4_aPS2_S5_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat19getDateTimeSkeletonERKNS_13UnicodeStringERS1_S4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat19setDateIntervalInfoERKNS_16DateIntervalInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat21fieldExistsInSkeletonE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat21splitPatternInto2PartERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat22setSeparateDateTimePtnERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat29concatSingleDate2TimeIntervalERNS_13UnicodeStringERKS1_19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormat6createERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2ERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618DateIntervalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618NullTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618RelativeDateFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618SharedNumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618SharedNumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition5setToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7adoptToEPNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7setFromERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition7setTimeEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransition9adoptFromEPNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2EdRKNS_12TimeZoneRuleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618TimeZoneTransitionaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619BreakTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataReader12isAcceptableEPvPKcS3_PK9UDataInfo);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataReader4readEPKNS_18CollationTailoringEPKhiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter14writeTailoringERKNS_18CollationTailoringERKNS_17CollationSettingsEPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter5writeEaPKhRKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter8copyDataEPKiiPKvPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationDataWriter9writeBaseERKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser11parseStringEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser12isSyntaxCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser12parseSettingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser13getOnOffValueERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser13setParseErrorEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser14getReorderCodeEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser14parseRuleChainER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15parseReorderingERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15parseUnicodeSetEiRNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser15setErrorContextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseRelationStringsEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseSpecialPositionEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser20parseTailoringStringEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser21parseRelationOperatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser21parseResetAndPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser22parseStarredCharactersEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4Sink20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4Sink8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4SinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser4SinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringERNS_17CollationSettingsEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser8ImporterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParser8ImporterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParserC2EPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619CollationRuleParserD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleC2ERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619InitialTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619NumberFormatFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619NumberFormatFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorC2EPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619SharedBreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder10CEModifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder10CEModifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder11encodeOneCEElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12buildContextEPNS_15ConditionalCE32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12getJamoCE32sEPjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder12setDigitTagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13buildContextsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13buildMappingsERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder13clearContextsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder14addContextTrieEjRNS_17UCharsTrieBuilderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder15encodeExpansionEPKliR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder16copyFromBaseCE32EijaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder16initForTailoringEPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17encodeExpansion32EPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17encodeOneCEAsCE32El);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder17setLeadSurrogatesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder18addConditionalCE32ERKNS_13UnicodeStringEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder19buildFastLatinTableERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder20maybeSetPrimaryRangeEiijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder20suppressContractionsERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder28copyContractionsFromBaseCE32ERNS_13UnicodeStringEijPNS_15ConditionalCE32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder28setPrimaryRangeAndReturnNextEiijiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder3addERKNS_13UnicodeStringES3_PKliR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder5addCEElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder5buildERNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEPli);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringES3_Pli);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEiPli);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder7addCE32ERKNS_13UnicodeStringES3_jR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder7addCE32EjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder8copyFromERKS0_RKNS0_10CEModifierER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder8optimizeERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilder9encodeCEsEPKliR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CollationDataBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormat14createInstanceERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatC2ERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CompactDecimalFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols10initializeERKNS_6LocaleER10UErrorCodeaPKNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols10initializeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols24createWithLastResortDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbols28setPatternForCurrencySpacingE16UCurrencySpacingaRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleERKNS_15NumberingSystemER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620DecimalFormatSymbolsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620EscapeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandler8setShiftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandlerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620FieldPositionHandlerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620RemoveTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNames14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620TimeZoneGenericNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621CaseMapTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621DateFmtBestPatternKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621DateFmtBestPatternKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIterator4nextERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIterator7setDataEPNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FieldPositionIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621FormattedDateIntervalaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat10setContextE15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat15stripWhitespaceERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat17setDefaultRuleSetERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat18initDefaultRuleSetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameERKNS_13UnicodeStringERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameEiRKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat24initializeDefaultNaNRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat29initCapitalizationContextInfoERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat29initializeDefaultInfinityRuleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat30initializeDecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat4initERKNS_13UnicodeStringEPNS_16LocalizationInfoER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormat7disposeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ENS_15URBNFRuleSetTagERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringEPNS_16LocalizationInfoERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621RuleBasedNumberFormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRule14initStartTimesEPKdiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRule16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleC2ERKNS_13UnicodeStringEiiPKdiNS_12DateTimeRule12TimeRuleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621TimeArrayTimeZoneRuleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621UTF8CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator18setTransliteratorsEPKPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator19freeTransliteratorsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator20adoptTransliteratorsEPPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator27computeMaximumContextLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator4initERKNS_13UnicodeStringE15UTransDirectionaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator4initERNS_7UVectorE15UTransDirectionaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliterator7joinIDsEPKPNS_14TransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2EPKPNS_14TransliteratorEiPNS_13UnicodeFilterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringE15UTransDirectionPNS_13UnicodeFilterER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringERNS_7UVectorEPNS_13UnicodeFilterEiR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorEiR11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622CompoundTransliteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder15insertCodePointEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder15writeTerminatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder16prepareForInsertEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder22prepareForInsertHelperEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6appendERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6insertEiRKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6removeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilder6spliceEiiRKNS_13UnicodeStringEiihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622FormattedStringBuilderaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UIterCollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorC2ERKS0_PKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UTF16CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UnescapeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623LowercaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623RuleBasedTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623SharedDateFormatSymbolsD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623SharedDateFormatSymbolsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623TitlecaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UppercaseTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator15getMaxExpansionEPK10UHashtablei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator20computeMaxExpansionsEPKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIterator9setOffsetEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKNS_13UnicodeStringEPKNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKNS_17CharacterIteratorEPKNS_17RuleBasedCollatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624CollationElementIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition14constrainFieldEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition17constrainCategoryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition24setInt64IterationContextEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPosition8setStateEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPositionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ConstrainedFieldPositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10addPatternERKNS_13UnicodeStringEaRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10getBestRawERNS_15DateTimeMatcherEiPNS_12DistanceInfoER10UErrorCodePPKNS_11PtnSkeletonE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator10setDecimalERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator11addCLDRDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator11getSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13copyHashtableEPNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13getAppendNameE21UDateTimePatternFieldRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13getRedundantsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator13initHashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14addICUPatternsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringE28UDateTimePatternMatchOptionsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator15getBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16adjustFieldTypesERKNS_13UnicodeStringEPKNS_11PtnSkeletonEi28UDateTimePatternMatchOptions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16getBestAppendingEiiR10UErrorCode28UDateTimePatternMatchOptions);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17addCanonicalItemsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_28UDateTimePatternMatchOptionsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setAppendItemNameE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setDateTimeFormatERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17setDecimalSymbolsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator17staticGetSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator18setAvailableFormatERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19createEmptyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19setAppendItemFormatE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator19setFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidthRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator20getCalendarTypeToUseERKNS_6LocaleERNS_10CharStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21getAllowedHourFormatsERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator21staticGetBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator22addPatternWithSkeletonERKNS_13UnicodeStringEPS2_aRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator23consumeShortTimePatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator23setDateTimeFromCalendarERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator25mapSkeletonMetacharactersERKNS_13UnicodeStringEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator26getMutableFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator26loadAllowedHourFormatsDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator8initDataERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGenerator9hackTimesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624DateTimePatternGeneratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624FCDUTF8CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder10loadGroupsERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder11addUniqueCEElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder13encodeCharCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder14getCEsFromCE32ERKNS_13CollationDataEijR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder15encodeUniqueCEsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder18encodeContractionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder19addContractionEntryEillR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder25getCEsFromContractionCE32ERKNS_13CollationDataEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder6getCEsERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder7forDataERKNS_13CollationDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilder8resetCEsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625CollationFastLatinBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator23handleGetTrailSurrogateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUIterCollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator11nextSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator13nextCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator13resetToOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator15previousSegmentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator15switchToForwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator16switchToBackwardEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator17previousCodePointER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator18foundNULTerminatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIterator9normalizeEPKDsS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorC2ERKS0_PKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FCDUTF16CollationIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625FormattedRelativeDateTimeaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625NameUnicodeTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatter4initEPNS_12NumberFormatEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatE35UDateRelativeDateTimeFormatterStyle15UDisplayContextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625RelativeDateTimeFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter14createInstanceEPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter14getPreExponentERKNS_20DecimalFormatSymbolsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceEPNS_13DecimalFormatERKNS_13UnicodeStringES5_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceERKNS_6LocaleERKNS_13UnicodeStringES6_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceEPNS_13DecimalFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterC2EPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625ScientificNumberFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryC2ERKNS_6LocaleEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625SimpleNumberFormatFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6625UnicodeNameTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6627NormalizationTransliterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImpl12isIntOrGroupEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImpl14isNumericFieldEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplC2Eh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6631FormattedValueStringBuilderImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumeration5resetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6633PluralAvailableLocalesEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Format11syntaxErrorERKNS_13UnicodeStringEiR11UParseError);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Format12setLocaleIDsEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666FormataSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit4baseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit7percentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnit8permilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666NoUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region11getInstanceEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region11getInstanceEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region12getAvailableE11URegionTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region14loadRegionDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Region17cleanupRegionDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666RegionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidth10truncateAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidth10zeroFillToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number12IntegerWidthC2Essb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15FormattedNumberaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter10withLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number15NumberFormatter4withEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number18ScientificNotationC2Eabs18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20FormattedNumberRangeaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20NumberRangeFormatter10withLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number20NumberRangeFormatter4withEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatter13lnfMoveHelperEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatter5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EONS0_4impl10MacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_4impl10MacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number24LocalizedNumberFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number26UnlocalizedNumberFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number29LocalizedNumberRangeFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatteraSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number31UnlocalizedNumberRangeFormatteraSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils11replaceTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeEDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils12containsTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils14estimateLengthERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils15getFieldForTypeENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils18hasCurrencySymbolsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils19iterateWithConsumerERKNS_13UnicodeStringERNS1_13TokenConsumerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils23unescapedCodePointCountERKNS_13UnicodeStringERKNS1_14SymbolProviderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils32containsOnlySymbolsAndIgnorablesERKNS_13UnicodeStringERKNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils6escapeERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils7hasNextERKNS1_8AffixTagERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils8unescapeERKNS_13UnicodeStringERNS_22FormattedStringBuilderEiRKNS1_14SymbolProviderEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl10AffixUtils9nextTokenENS1_8AffixTagERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13ModifierStoreD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13ModifierStoreD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser18parseToPatternInfoERKNS_13UnicodeStringERNS1_17ParsedPatternInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser23patternInfoToPropertiesERNS1_23DecimalFormatPropertiesERNS1_17ParsedPatternInfoENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser25parseToExistingPropertiesERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl13PatternParser29parseToExistingPropertiesImplERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifier19formatTwoArgPatternERKNS_15SimpleFormatterERNS_22FormattedStringBuilderEiPiS8_hR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhbNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SimpleModifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper10doCopyFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper10doMoveFromEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper5setToEPKNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper5setToERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapper9doCleanupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperC2EOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperC2ERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperaSEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl14SymbolsWrapperaSERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10_setToLongEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10multiplyByERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity10shiftRightEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11appendDigitEaib);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11copyBcdFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11moveBcdFromERS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11popFromLeftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setDigitPosEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setToDecNumERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity11setToDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12_setToDecNumERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12readIntToBcdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity12setBcdToZeroEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13readLongToBcdEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13roundToNickelEi25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13setMinIntegerEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity13switchStorageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14copyFieldsFromERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14setMinFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity14setToDecNumberENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15adjustMagnitudeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15applyMaxIntegerEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity15roundToInfinityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16_setToDoubleFastEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToIncrementEd25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModebR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity18readDecNumberToBcdERKNS1_6DecNumE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity23convertToAccurateDoubleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity25readDoubleConversionToBcdEPKcii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity6negateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity7compactEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8divideByERKNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8setToIntEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity8truncateEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9_setToIntEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9setToLongEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantity9shiftLeftEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2EOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2ERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityaSEOS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl15DecimalQuantityaSERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo11ParserState4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo11ParserState4peekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo12consumeAffixERNS1_9EndpointsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo13consumeFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumeLiteralER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumePaddingE24UNumberFormatPadPositionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo14consumePatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo15consumeExponentER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo17consumeSubpatternER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo20consumeIntegerFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo21consumeFractionFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl17ParsedPatternInfo22getLengthFromEndpointsERKNS1_9EndpointsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils16convertLocalizedERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils19escapePaddingStringENS_13UnicodeStringERS3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils23ignoreRoundingIncrementEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils25propertiesToPatternStringERKNS1_23DecimalFormatPropertiesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18PatternStringUtils26patternInfoToStringBuilderERKNS1_20AffixPatternProviderEbNS1_6SignumE18UNumberSignDisplayNS_14StandardPlural4FormEbRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18ScientificModifier3setEiPKNS1_17ScientificHandlerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl18ScientificModifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl19MicroPropsGeneratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl19MicroPropsGeneratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl20AffixPatternProviderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl20AffixPatternProviderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl21AdoptingModifierStoreD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl21AdoptingModifierStoreD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier10addToChainEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier10setSymbolsEPKNS_20DecimalFormatSymbolsEPKNS1_15CurrencySymbolsE16UNumberUnitWidthPKNS_11PluralRulesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12insertPrefixERNS_22FormattedStringBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12insertSuffixERNS_22FormattedStringBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier12prepareAffixEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier14setPatternInfoEPKNS1_20AffixPatternProviderEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier15createImmutableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier19setNumberPropertiesENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier20setPatternAttributesE18UNumberSignDisplayb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier22createConstantModifierER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifier23createImmutableAndChainEPKNS1_19MicroPropsGeneratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl22MutablePatternModifierC2Eb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatProperties10getDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatProperties5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23DecimalFormatPropertiesC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl23MultiplierFormatHandler11setAndChainERKNS0_5ScaleEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl24ImmutablePatternModifierC2EPNS1_21AdoptingModifierStoreEPKNS_11PluralRulesEPKNS1_19MicroPropsGeneratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier13getUnicodeSetERKNS_20DecimalFormatSymbolsENS2_9EPositionENS2_6EAffixER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier15getInsertStringERKNS_20DecimalFormatSymbolsENS2_6EAffixER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier20applyCurrencySpacingERNS_22FormattedStringBuilderEiiiiRKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifier25applyCurrencySpacingAffixERNS_22FormattedStringBuilderEiNS2_6EAffixERKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl30CurrencySpacingEnabledModifierC2ERKNS_22FormattedStringBuilderES5_bbRKNS_20DecimalFormatSymbolsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormat16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatC2ERKNS0_24LocalizedNumberFormatterERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum10multiplyByERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEPKhiibR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum5setToEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum6_setToEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum8divideByERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNum9normalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNumC2ERKS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6DecNumC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder10codePointsEii24UNumberFormatPadPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6Padder4noneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6PadderC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl6PadderC2Eii24UNumberFormatPadPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper11forStrategyE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl7Grouper13setLocaleDataERKNS1_17ParsedPatternInfoERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8Modifier10ParametersC2EPKNS1_13ModifierStoreENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8Modifier10ParametersC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8ModifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number4impl8ModifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale10powerOfTenEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale21byDoubleAndPowerOfTenEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale4noneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale8byDoubleEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5Scale9byDecimalENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleC2EiPNS0_4impl6DecNumE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number5ScaleaSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation10scientificEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation11compactLongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation11engineeringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation12compactShortEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number8Notation6simpleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision11maxFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision11minFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision13fixedFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision14minMaxFractionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision17constructCurrencyE14UCurrencyUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision17constructFractionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision18constructIncrementEdi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20constructSignificantEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20maxSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision20minSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision22fixedSignificantDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision23minMaxSignificantDigitsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision28constructFractionSignificantERKNS0_17FractionPrecisionEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision7integerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision8currencyE14UCurrencyUsage);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision9incrementEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666number9Precision9unlimitedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667Measure16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2ERKNS_11FormattableEPNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667MeasureaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10setLenientEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10updateTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar10weekNumberEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11computeTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11getLocalDOWEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11internalSetENS0_11EDateFieldsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11setTimeZoneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar11setWeekDataERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar12makeInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13adoptTimeZoneEPNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13computeFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13resolveFieldsEPA12_A8_Ki);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14orphanTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14setRelatedYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar14validateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15fieldDifferenceEd19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15fieldDifferenceEdNS0_11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar15setTimeInMillisEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16computeJulianDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16prepareGetActualE19UCalendarDateFieldsaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar16recalculateStampEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17computeWeekFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17computeZoneOffsetEddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar17setFirstDayOfWeekE19UCalendarDaysOfWeek);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar18computeMillisInDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar19handleComputeFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar20getDefaultDayInMonthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar20julianDayToDayOfWeekEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar21getDefaultMonthInYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar22computeGregorianFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar22handleComputeJulianDayE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar24setSkippedWallTimeOptionE23UCalendarWallTimeOption);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25getCalendarTypeFromLocaleERKNS_6LocaleEPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25setMinimalDaysInFirstWeekEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar25setRepeatedWallTimeOptionE23UCalendarWallTimeOption);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar28computeGregorianAndDOWFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar35handleGetExtendedYearFromWeekFieldsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3addE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3addENS0_11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setE19UCalendarDateFieldsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar3setEiiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar4rollENS0_11EDateFieldsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar5clearE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar6getNowEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar8completeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Calendar8pinFieldE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendarD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CalendaraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator10setLocalesERKNS_6LocaleES3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator11getKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator11setStrengthENS0_18ECollationStrengthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator12makeInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator15registerFactoryEPNS_15CollatorFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator15setReorderCodesEPKiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator16getKeywordValuesEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator16registerInstanceEPS0_RKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator23getFunctionalEquivalentEPKcRKNS_6LocaleERaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator25getEquivalentReorderCodesEiPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668Collator8getBoundEPKhi13UColBoundModejPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2E18UColAttributeValue18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668CollatorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRules14createInstanceEPKcaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRules14initCurrentEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRulesC2ERNS_11LocalMemoryIiEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668EraRulesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnit14createInstanceENS0_15UTimeUnitFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnit16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitC2ENS0_15UTimeUnitFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeUnitaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone10getUnknownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone10setDefaultERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone11getCustomIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone12adoptDefaultEPS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone12getWindowsIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone13createDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone13parseCustomIDERKNS_13UnicodeStringERiS4_S4_S4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14createTimeZoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14formatCustomIDEiiiaRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone15getEquivalentIDERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16dereferOlsonLinkERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone16getTZDataVersionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17createEnumerationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone17getIDForWindowsIDERKNS_13UnicodeStringEPKcRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone18countEquivalentIDsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone18detectHostTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone20createCustomTimeZoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone27createTimeZoneIDEnumerationE19USystemTimeZoneTypePKcPKiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone6findIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone6getGMTEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone8loadRuleEPK15UResourceBundleRKNS_13UnicodeStringEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringEPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668TimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta10getShortIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta10getShortIDERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta13getMetazoneIDERKNS_13UnicodeStringEdRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14findMetaZoneIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14findTimeZoneIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta14formatCustomIDEhhhaRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getCanonicalCountryERKNS_13UnicodeStringERS1_Pa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getMetazoneMappingsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta19getZoneIdByMetazoneERKNS_13UnicodeStringES3_RS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta20createCustomTimeZoneEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta22createMetazoneMappingsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta23getAvailableMetazoneIDsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ZoneMeta23getShortIDFromCanonicalEPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber11postProcessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber12isBetterThanERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber16setCharsConsumedERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumber5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl12ParsedNumberC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl13SymbolMatcherC2ERKNS_13UnicodeStringENS_7unisets3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl14PercentMatcherC2ERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl15PermilleMatcherC2ERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl15PlusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16MinusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl10addMatcherERNS1_18NumberParseMatcherE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl18createSimpleParserERKNS_6LocaleERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl26createParserFromPropertiesERKNS_6number4impl23DecimalFormatPropertiesERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImpl6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl16NumberParserImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl17IgnorablesMatcherC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18ArraySeriesMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18ArraySeriesMatcherC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18NumberParseMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl18NumberParseMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl19AffixPatternMatcher16fromAffixPatternERKNS_13UnicodeStringERNS1_26AffixTokenMatcherWarehouseEiPbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl19AffixPatternMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl23CombinedCurrencyMatcherC2ERKNS_6number4impl15CurrencySymbolsERKNS_20DecimalFormatSymbolsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse10ignorablesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse20nextCodePointMatcherEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse7percentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8currencyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8permilleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8plusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse9minusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668numparse4impl26AffixTokenMatcherWarehouseC2EPKNS1_26AffixTokenMatcherSetupDataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation25incTwoBytePrimaryByOffsetEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation26decTwoBytePrimaryByOneStepEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation27incThreeBytePrimaryByOffsetEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation28decThreeBytePrimaryByOneStepEjai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation30unassignedPrimaryFromCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669Collation32getThreeBytePrimaryForOffsetDataEil);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet12parseScriptsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet19setScriptExtensionsEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet3setE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet5UnionERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet5resetE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet6setAllEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet8resetAllEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet9intersectE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSet9intersectERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ScriptSetaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone12setRawOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone15createVTimeZoneERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone15setLastModifiedEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone19createVTimeZoneByIDERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone32createVTimeZoneFromBasicTimeZoneERKNS_13BasicTimeZoneER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone4loadERNS_9VTZReaderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone5parseER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZone8setTZURLERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669VTimeZoneaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CECalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11getCalendarEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat15getNumberFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat17isCalendarLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat19getBooleanAttributeE27UDateFormatBooleanAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormat9isLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610DateFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610GenderInfo13getListGenderEPK7UGenderiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable23populateDecimalQuantityERNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable7getLongER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getArrayERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable8getInt64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getDoubleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getObjectEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9getStringERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Formattable9isNumericEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611FormattableeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit10getSubtypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit8getIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUnit9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611MeasureUniteqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules11getKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules15getKeywordOtherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules15rulesForKeywordERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectERKNS_13IFixedDecimalE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectERKNS_6number15FormattedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules6selectEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRules9isKeywordERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611PluralRuleseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap12getChildNodeEPNS_13CharacterNodeEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap6searchEPNS_13CharacterNodeERKNS_13UnicodeStringEiiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap6searchERKNS_13UnicodeStringEiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611TextTrieMap7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat10getFormatsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat11getClosuresERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat9getLimitsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612ChoiceFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey9compareToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKey9compareToERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CollationKeyeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CurrencyUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612CurrencyUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule12getRuleMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule15getDateRuleTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule15getTimeRuleTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule16getRuleDayOfWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule17getRuleDayOfMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule18getRuleMillisInDayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule18getRuleWeekInMonthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRuleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateTimeRuleneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal10isInfiniteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal15hasIntegerValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal15isNanOrInfinityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal16getPluralOperandENS_13PluralOperandE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal28getVisibleFractionDigitCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612FixedDecimal5isNaNEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat11getCurrencyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat14isGroupingUsedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat20getEffectiveCurrencyEPDsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat23getMaximumIntegerDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat23getMinimumIntegerDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat24getMaximumFractionDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat24getMinimumFractionDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612NumberFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat21PluralSelectorAdapter6selectEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatERKNS_11FormattableEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormat9parseTypeERKNS_13UnicodeStringEPKNS_6NFRuleERNS_11FormattableERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612PluralFormatneERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher10groupCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher10requireEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11appendGroupEiP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11regionEnd64Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher11regionStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher12getTimeLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher13getStackLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher13regionStart64Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher18hasAnchoringBoundsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher20hasTransparentBoundsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher3endER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher3endEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5end64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5end64EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEP5UTextRlR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEiP5UTextRlR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5groupEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5inputEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5startER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher5startEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher6hitEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7patternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7start64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher7start64EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher8getInputEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher9inputTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexMatcher9regionEndEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern11dumpPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern11patternTextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern19groupNumberFromNameEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern19groupNumberFromNameERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5flagsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5splitEP5UTextPS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern6dumpOpEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7matcherER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7matcherERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPattern7patternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612RegexPatterneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormat6formatERKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SelectFormatneERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch10getPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearch9safeCloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612StringSearcheqERKNS_14SearchIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule14isEquivalentToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRule7getNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRuleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612TimeZoneRuleneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone18getSimpleRulesNearEdRPNS_19InitialTimeZoneRuleERPNS_18AnnualTimeZoneRuleES6_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone21getTimeZoneRulesAfterEdRPNS_19InitialTimeZoneRuleERPNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BasicTimeZone24hasEquivalentTransitionsERKS0_ddaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData11getSingleCEEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData12getFinalCE32Ej);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData14getScriptIndexEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData15getIndirectCE32Ej);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17addLowScriptRangeEPhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17makeReorderRangesEPKiiRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData17makeReorderRangesEPKiiaRNS_9UVector32ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData18addHighScriptRangeEPhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData18getGroupForPrimaryEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData20getEquivalentScriptsEiPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData22getLastPrimaryForGroupEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613CollationData23getFirstPrimaryForGroupEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat12getAttributeE22UNumberFormatAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat13getMultiplierEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat14getFormatWidthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat14getPadPositionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15fastFormatInt64ElRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15getGroupingSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat16fastFormatDoubleEdRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat16getCurrencyUsageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17doFastFormatInt32EibRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getCurrencyParserER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getNegativePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getNegativeSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getPositivePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17getPositiveSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17isParseNoExponentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17isSignAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat17toNumberFormatterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat18getMultiplierScaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat18toLocalizedPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20getRoundingIncrementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20isParseCaseSensitiveEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat20isScientificNotationEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat21getCurrencyPluralInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat21getPadCharacterStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23formatToDecimalQuantityERKNS_11FormattableERNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23formatToDecimalQuantityEdRNS_6number4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24areSignificantDigitsUsedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getMinimumExponentDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getMinimumGroupingDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat24getSecondaryGroupingSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat25isExponentSignAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat27getMaximumSignificantDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat27getMinimumSignificantDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat29isDecimalPatternMatchRequiredEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat29isDecimalSeparatorAlwaysShownEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat31isFormatFailIfMoreThanMaxDigitsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat9getParserER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613DecimalFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FieldPosition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FieldPosition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613FormattedList8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter20formatStringsToValueEPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_PNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_iRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ListFormatter7format_EPKNS_13UnicodeStringEiRS1_iRiPNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat11getLocaleIDER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat13formatMeasureERKNS_7MeasureERKNS_12NumberFormatERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat13formatNumericEPKNS_11FormattableEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat14formatMeasuresEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat14getPluralRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat18getUnitDisplayNameERKNS_11MeasureUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat20formatMeasurePerUnitERKNS_7MeasureERKNS_11MeasureUnitERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat23formatMeasuresSlowTrackEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat23getNumberFormatInternalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat25getCurrencyFormatInternalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormat9getLocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MeasureFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat10getFormatsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11DummyFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat14updateMetaDataERNS_17AppendableWrapperEiPNS_13FieldPositionEPKNS_11FormattableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat15getArgTypeCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat18getCachedFormatterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat18usesNamedArgumentsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat19createIntegerFormatERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat19findOtherSubMessageEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20getArgFromListByNameEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20getDefaultDateFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat20nextTopLevelArgStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat22PluralSelectorProvider6selectEPvdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat22getDefaultNumberFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat23formatComplexSubMessageEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat24findFirstPluralNumberArgEiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat33getLiteralStringUntilNextArgumentEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat5parseEiRKNS_13UnicodeStringERNS_13ParsePositionERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_PNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEPKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat6formatEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperEPNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613MessageFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone19getHistoricalOffsetEdaiiRiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone20checkTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone23transitionTimeInSecondsEs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613OlsonTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment10startsWithEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment11codePointAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment12getCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment19toTempUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment6charAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegment9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613StringSegmenteqERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames14getDisplayNameERKNS_13UnicodeStringE17UTimeZoneNameTypedRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames15getDisplayNamesERKNS_13UnicodeStringEPK17UTimeZoneNameTypeidPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection13getNameTypeAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getMetaZoneIDAtEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getTimeZoneIDAtEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection16getMatchLengthAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames19MatchInfoCollection4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613TimeZoneNames23getExemplarLocationNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614CurrencyAmount17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614CurrencyAmount5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614HebrewCalendar8yearTypeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614IndianCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_14SharedCalendarEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_17SharedPluralRulesEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_18DateFmtBestPatternEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_18SharedNumberFormatEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_19CollationCacheEntryEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_22MeasureFormatCacheDataEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_23SharedDateFormatSymbolsEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614LocaleCacheKeyINS_25RelativeDateTimeCacheDataEE12createObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator12getAttributeE16USearchAttribute);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator14getMatchedTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator15getMatchedStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator16getBreakIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator16getMatchedLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIterator7getTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SearchIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone20checkTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614SimpleTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount11getTimeUnitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount16getTimeUnitFieldEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmount5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitAmounteqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeUnitFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat11parseZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13formatGenericERKNS_8TimeZoneEidRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13getGMTPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat13getTimeZoneIDEPKNS_13TimeZoneNames19MatchInfoCollectionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat14formatSpecificERKNS_8TimeZoneE17UTimeZoneNameTypeS4_dRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16getGMTZeroFormatERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16getTimeZoneNamesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat16parseShortZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat17parseOffsetFieldsERKNS_13UnicodeStringEiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18appendOffsetDigitsERNS_13UnicodeStringEih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18getGMTOffsetDigitsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat19formatOffsetISO8601EiaaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat19getGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat20getTZDBTimeZoneNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat21parseExemplarLocationERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat22formatExemplarLocationERKNS_8TimeZoneERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat22getDefaultParseOptionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23createTimeZoneForOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23getTimeZoneGenericNamesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetISO8601BasicEiaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat24parseDefaultOffsetFieldsERKNS_13UnicodeStringEiDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat25parseAbuttingOffsetFieldsERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat25parseSingleLocalizedDigitERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat27formatOffsetISO8601ExtendedEiaaaRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat28parseOffsetFieldsWithPatternERKNS_13UnicodeStringEiPNS_7UVectorEaRiS6_S6_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat28parseOffsetShortLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat29formatOffsetShortLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat30parseOffsetDefaultLocalizedGMTERKNS_13UnicodeStringEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat30parseOffsetLocalizedGMTPatternERKNS_13UnicodeStringEiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat35parseOffsetFieldWithLocalizedDigitsERKNS_13UnicodeStringEihhttRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEiP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat6formatE20UTimeZoneFormatStyleRKNS_8TimeZoneEdRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614TimeZoneFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator10getElementEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator12getSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator12getTargetSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13countElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13createInverseER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositioniR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator14_transliterateERNS_11ReplaceableER14UTransPositionPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator18handleGetSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositiona);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositionaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator21finishTransliterationERNS_11ReplaceableER14UTransPosition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator5getIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator7toRulesERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614Transliterator9getFilterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex10initLabelsERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex13getRecordDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex13getRecordNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14ImmutableIndex9getBucketEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getBucketIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getBucketLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex14getInflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16createBucketListER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16getMaxLabelCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex16getOverflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex17getUnderflowLabelEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex18getBucketLabelTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndex20getBucketRecordCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndexeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615AlphabeticIndexneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar11newMoonNearEda);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar12daysToMillisEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar12millisToDaysEd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14majorSolarTermEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar14winterSolsticeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar18isLeapMonthBetweenEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar19hasNoMajorSolarTermEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar20synodicMonthsBetweenEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23getFieldResolutionTableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar26getChineseCalZoneAstroCalcEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar30internalGetDefaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar34internalGetDefaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ChineseCalendar7newYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615CollatorFactory7visibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar10monthStartEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar14trueMonthStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615IslamicCalendar9yearStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem13isAlgorithmicEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem14getDescriptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem7getNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615NumberingSystem8getRadixEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder12ignorePrefixERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder12ignoreStringERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder14findCommonNodeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder24mergeCompositeIntoStringERKNS_13UnicodeStringEiiS3_RS1_S4_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationBuilder5isFCDERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights13lengthenRangeERNS0_11WeightRangeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights17incWeightByOffsetEjii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616CollationWeights9incWeightEji);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo15getBestSkeletonERKNS_13UnicodeStringERa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo15getDefaultOrderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo18getIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo26getFallbackIntervalPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfo5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616DateIntervalInfoeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat11countDigitsERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat11matchStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iS5_RNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat14checkIntSuffixERKNS_13UnicodeStringEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat15getSmpFmtLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat15skipUWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17getTimeZoneFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat17zeroPaddingNumberEPKNS_12NumberFormatERNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18compareSimpleAffixERKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18isFieldUnitIgnoredE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18matchQuarterStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iRNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat18toLocalizedPatternERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat20getDateFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat21matchDayPeriodStringsERKNS_13UnicodeStringEiPS2_iRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat21skipPatternWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat22getNumberFormatByIndexE16UDateFormatField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat23getNumberFormatForFieldEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat5parseERKNS_13UnicodeStringERNS_8CalendarERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat7_formatERNS_8CalendarERNS_13UnicodeStringERNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionEaPKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableEiRNS_13ParsePositionEaPKNS_12NumberFormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8subParseERKNS_13UnicodeStringERiDsiaaPaS4_RNS_8CalendarEiPNS_13MessageFormatEP23UTimeZoneFormatTimeTypePi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat8tzFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat9subFormatERNS_13UnicodeStringEDsi15UDisplayContextiRNS_20FieldPositionHandlerERNS_8CalendarER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormat9toPatternERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616SimpleDateFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIterator11getDataCE32Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIterator25forbidSurrogateCodePointsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettings8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettings9reorderExEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CollationSettingseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getEraNamesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getQuartersERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getWeekdaysERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols11getWeekdaysERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols12getYearNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols13getNarrowErasERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getAmPmStringsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getShortMonthsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getZodiacNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols14getZoneStringsERiS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols16getShortWeekdaysERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols20getLeapMonthPatternsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols20getLocalPatternCharsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols22getTimeSeparatorStringERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols7getErasERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getMonthsERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbols9getMonthsERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617DateFormatSymbolseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10isLeapYearEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10yearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar10yearLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11boundsCheckEi19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11monthLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar11monthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14inDaylightTimeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14internalGetEraEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14isEquivalentToERKNS_8CalendarE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar14validateFieldsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar18getGregorianChangeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar18haveDefaultCenturyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar19defaultCenturyStartEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar23defaultCenturyStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar23handleComputeMonthStartEiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617GregorianCalendar7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter12getByVariantEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter6formatERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617QuantityFormatter7isValidEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getSortKeyEPKDsiPhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getSortKeyERKNS_13UnicodeStringEPhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator10getVersionEPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator11cloneBinaryEPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator12getAttributeE13UColAttributeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator12writeSortKeyEPKDsiRNS_15SortKeyByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator13cloneRuleDataERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getMaxVariableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getTailoredSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14getVariableTopER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator14internalGetCEsERKNS_13UnicodeStringERNS_9UVector64ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getCollationKeyEPKDsiRNS_12CollationKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getCollationKeyERKNS_13UnicodeStringERNS_12CollationKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getMaxExpansionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator15getReorderCodesEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator17initMaxExpansionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator18getDefaultSettingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19internalGetLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19setFastLatinOptionsERNS_17CollationSettingsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator19writeIdenticalLevelEPKDsS2_RNS_15SortKeyByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator23internalAddContractionsEiRNS_10UnicodeSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_17CharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator36internalGetContractionsAndExpansionsEPNS_10UnicodeSetES2_aR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareEPKDsiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareER13UCharIteratorS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8getRulesE14UColRuleOptionRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator8isUnsafeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9doCompareEPKDsiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9doCompareEPKhiS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedCollatoreqERKNS_8CollatorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone13completeConstER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone13getLocalDeltaEiiiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone15findRuleInFinalEdaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getOffsetInternalEdaiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone17getTransitionTimeEPNS_10TransitionEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone8findNextEdaRdRPNS_12TimeZoneRuleES4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone8findPrevEdaRdRPNS_12TimeZoneRuleES4_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617RuleBasedTimeZoneneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule10getEndYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule12getStartYearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule14getStartInYearEiiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRule7getRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618AnnualTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer10Equatorial8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer7Horizon8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CalendarAstronomer8Ecliptic8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CollationTailoring13getUCAVersionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo14getPluralRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo24getCurrencyPluralPatternERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfo9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618CurrencyPluralInfoeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat10formatImplERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13formatToValueERKNS_12DateIntervalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13formatToValueERNS_8CalendarES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat13getDateFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat14fallbackFormatERNS_8CalendarES2_aRNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat18formatIntervalImplERKNS_12DateIntervalERNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat19fallbackFormatRangeERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat19getDateIntervalInfoEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatEPKNS_12DateIntervalERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormat6formatERNS_8CalendarES2_RNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618DateIntervalFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition5getToEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition7getFromEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransition7getTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransitioneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618TimeZoneTransitionneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser11skipCommentEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser14skipWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619CollationRuleParser9readWordsEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619InitialTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder10isAssignedEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder11getSingleCEEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder21getCE32FromOffsetCE32Eaij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder22isCompressibleLeadByteEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CollationDataBuilder24getLongPrimaryIfSingleCEEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols28getPatternForCurrencySpacingE16UCurrencySpacingaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620DecimalFormatSymbolseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames13findBestMatchERKNS_13UnicodeStringEijRS1_R23UTimeZoneFormatTimeTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames14getDisplayNameERKNS_8TimeZoneE24UTimeZoneGenericNameTypedRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames22getGenericLocationNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNames5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6620TimeZoneGenericNameseqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements11findPrimaryEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements15getPrimaryAfterEjia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements16getPrimaryBeforeEja);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements16getTertiaryAfterEijj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements17getSecondaryAfterEij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements17getTertiaryBeforeEjjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements18getSecondaryBeforeEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements23lastCEWithPrimaryBeforeEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements24getFirstSecTerForPrimaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements25firstCEWithPrimaryAtLeastEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621CollationRootElements5findPEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FieldPositionIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621FormattedDateInterval8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat11findRuleSetERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat11getCollatorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat14getRuleSetNameEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat15getRoundingModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat17getDefaultNaNRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat18createPluralFormatE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat21getDefaultRuleSetNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat22getDefaultInfinityRuleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat23getNumberOfRuleSetNamesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat27getRuleSetDisplayNameLocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat30adjustForCapitalizationContextEiRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat36getNumberOfRuleSetDisplayNameLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEiRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatElPNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatElRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormat8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621RuleBasedNumberFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule11getTimeTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule12getNextStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule13getFinalStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule13getFirstStartEiiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule14getStartTimeAtEiRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule15countStartTimesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule16getPreviousStartEdiiaRd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRule6getUTCEdii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621TimeArrayTimeZoneRuleneERKNS_12TimeZoneRuleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621UTF8CollationIterator25forbidSurrogateCodePointsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6621UTF8CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator12getTargetSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator17getTransliteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator18handleGetSourceSetERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator19handleTransliterateERNS_11ReplaceableER14UTransPositiona);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator7toRulesERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622CompoundTransliterator8getCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder11codePointAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13containsFieldEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13contentEqualsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder13toDebugStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder14codePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder15codePointBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder16getLastCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder17getFirstCodePointEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder19toTempUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder5charsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622FormattedStringBuilder6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UIterCollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UTF16CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UTF16CollationIteratoreqERKNS_17CollationIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator13strengthOrderEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator15getMaxExpansionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIteratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624CollationElementIteratorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ConstrainedFieldPosition12matchesFieldEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator10getDecimalEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator12getSkeletonsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator15getTopBitNumberEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator15isCanonicalItemERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator16getBaseSkeletonsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getAppendItemNameE21UDateTimePatternField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getDateTimeFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator19getAppendItemFormatE21UDateTimePatternField);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator19getFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator20isAvailableFormatSetERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator21getAppendFormatNumberEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator21getPatternForSkeletonERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator23getFieldAndWidthIndicesEPKcP23UDateTimePGDisplayWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGenerator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGeneratoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624DateTimePatternGeneratorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator11nextHasLcccEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator15previousHasTcccEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624FCDUTF8CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder11inSameGroupEjj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder12encodeTwoCEsEll);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625CollationFastLatinBuilder9getMiniCEEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUIterCollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUTF16CollationIterator9getOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FCDUTF16CollationIteratoreqERKNS_17CollationIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625FormattedRelativeDateTime8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter10formatImplEd14UDateDirection17UDateRelativeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatNumericEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueE14UDateDirection17UDateAbsoluteUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd14UDateDirection17UDateRelativeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd21URelativeDateTimeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter14getFormatStyleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter15getNumberFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter16adjustForContextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter17formatNumericImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18combineDateAndTimeERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18formatAbsoluteImplE14UDateDirection17UDateAbsoluteUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter18formatRelativeImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter20formatNumericToValueEd21URelativeDateTimeUnitR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter23checkNoAdjustForContextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter24getCapitalizationContextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatE14UDateDirection17UDateAbsoluteUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatEd14UDateDirection17UDateRelativeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625RelativeDateTimeFormatter6formatEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter11MarkupStyle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter11MarkupStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625ScientificNumberFormatter6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625SimpleNumberFormatFactory15getSupportedIDsERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6625SimpleNumberFormatFactory7visibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl16nextPositionImplERNS_24ConstrainedFieldPositionEhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl20getAllFieldPositionsERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl8trimBackEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6631FormattedValueStringBuilderImpl9trimFrontEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6633PluralAvailableLocalesEnumeration5countER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format11parseObjectERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Format9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666FormateqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666NoUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666NoUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region13getRegionCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region14getNumericCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region18getPreferredValuesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainedRegionsE11URegionTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainedRegionsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainingRegionE11URegionType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region19getContainingRegionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Region8containsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666RegioneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666RegionneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number12IntegerWidth5applyERNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number12IntegerWidtheqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber15toDecimalNumberERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber18getDecimalQuantityERNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number15FormattedNumber8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17CurrencyPrecision12withCurrencyERKNS_12CurrencyUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17FractionPrecision13withMaxDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number17FractionPrecision13withMinDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18IncrementPrecision15withMinFractionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18ScientificNotation21withMinExponentDigitsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number18ScientificNotation23withExponentSignDisplayE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange12toTempStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange15getFirstDecimalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange16getSecondDecimalER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange17getIdentityResultER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange8appendToERNS_10AppendableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number20FormattedNumberRange8toStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter10formatImplEPNS0_4impl20UFormattedNumberDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter11getCompiledEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12formatDoubleEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12getAffixImplEbbRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter12getCallCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter13formatDecimalENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter15computeCompiledER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter21formatDecimalQuantityERKNS0_4impl15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter8toFormatER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number24LocalizedNumberFormatter9formatIntElR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter10formatImplERNS0_4impl25UFormattedNumberRangeDataEbR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter12getFormatterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number29LocalizedNumberRangeFormatter22formatFormattableRangeERKNS_11FormattableES4_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier20formatAsPrefixSuffixERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SimpleModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper17isNumberingSystemEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper18getNumberingSystemEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper22isDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl14SymbolsWrapper23getDecimalFormatSymbolsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols10getIsoCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols10loadSymbolE14UCurrNameStyleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols13getPluralNameENS_14StandardPlural4FormER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols17getCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols21getIntlCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15CurrencySymbols23getNarrowCurrencySymbolER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10fitsInLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10isInfiniteEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity10isNegativeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity11checkHealthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity11getDigitPosEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity12getMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity13fractionCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity13toPlainStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity14toFractionLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity15hasIntegerValueEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity16getPluralOperandENS_13PluralOperandE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity18toScientificStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity22getPositionFingerprintEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity24getLowerDisplayMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity24getUpperDisplayMagnitudeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity33fractionCountWithoutTrailingZerosEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity5isNaNEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity6signumEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity6toLongEb);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8getDigitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toDecNumERNS1_6DecNumER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toDoubleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantity9isZeroishEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl15DecimalQuantityeqERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo12getEndpointsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo15hasCurrencySignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo18containsSymbolTypeENS1_16AffixPatternTypeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo19positiveHasPlusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo20negativeHasMinusSignEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo21hasNegativeSubpatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo6charAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo6lengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo7hasBodyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl17ParsedPatternInfo9getStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl18ScientificModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl21ConstantAffixModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier12needsPluralsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier15toUnicodeStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23DecimalFormatProperties29equalsDefaultExceptFastFormatEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23DecimalFormatProperties7_equalsERKS2_b);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl23MultiplierFormatHandler15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier11getModifierENS1_6SignumENS_14StandardPlural4FormE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier13applyToMicrosERNS1_10MicroPropsERKNS1_15DecimalQuantityER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl24ImmutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl26ConstantMultiFieldModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl30CurrencySpacingEnabledModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat18getNumberFormatterEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormateqERKNS_6FormatE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum10isNegativeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum6isZeroEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6DecNum8toStringERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl6Padder11padAndApplyERKNS1_8ModifierES5_RNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper10getPrimaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper12getSecondaryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number4impl7Grouper15groupAtPositionEiRKNS1_15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number5Scale17applyReciprocalToERNS0_4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number5Scale7applyToERNS0_4impl15DecimalQuantityE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666number9Precision12withCurrencyERKNS_12CurrencyUnitER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667Measure17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667Measure5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667MeasureeqERKNS_7UObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMaximumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMaximumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMinimumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10getMinimumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar10newerFieldE19UCalendarDateFieldsS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11getTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar11newestStampE19UCalendarDateFieldsS1_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar14getRelatedYearER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar14isEquivalentToERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getActualHelperE19UCalendarDateFieldsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getLeastMaximumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getLeastMaximumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar15getTimeInMillisER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getActualMinimumENS0_11EDateFieldsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getBasicTimeZoneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar16getDayOfWeekTypeE19UCalendarDaysOfWeekR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar17getFirstDayOfWeekER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar17getFirstDayOfWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar18getGreatestMinimumE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar18getGreatestMinimumENS0_11EDateFieldsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar19handleGetYearLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar20getWeekendTransitionE19UCalendarDaysOfWeekR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar20handleGetMonthLengthEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar23getFieldResolutionTableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar24getSkippedWallTimeOptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar25getMinimalDaysInFirstWeekEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar25getRepeatedWallTimeOptionEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar34getImmediatePreviousZoneTransitionEdPdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar3getE19UCalendarDateFieldsR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar5afterERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar5isSetE19UCalendarDateFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar6beforeERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar6equalsERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar8getLimitE19UCalendarDateFieldsNS0_10ELimitTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isLenientEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isWeekendEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Calendar9isWeekendEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CalendareqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator11getStrengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14getMaxVariableEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14getTailoredSetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator14greaterOrEqualERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator15getReorderCodesEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator6equalsERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareEPKDsiS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareER13UCharIteratorS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator7greaterERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668Collator9safeCloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CollatoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668CollatorneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules11getEraIndexEiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules12getStartDateEiRA3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668EraRules12getStartYearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit16getTimeUnitFieldEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeUnit5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone12hasSameRulesERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone13getDSTSavingsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668TimeZoneeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber10seenNumberEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber19populateFormattableERNS_11FormattableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber7successEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl12ParsedNumber9getDoubleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher11postProcessERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SeriesMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher6getSetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl13SymbolMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl14PercentMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl14PercentMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PermilleMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PermilleMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PlusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl15PlusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16MinusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16MinusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl11parseGreedyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl13getParseFlagsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl21parseLongestRecursiveERNS_13StringSegmentERNS1_12ParsedNumberEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEbRNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEibRNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl16NumberParserImpl8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher10isDisabledERKNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher10isFlexibleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl17IgnorablesMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher3endEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher5beginEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher6lengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl18ArraySeriesMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl19AffixPatternMatcher10getPatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl19AffixPatternMatchereqERKS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher13matchCurrencyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher8toStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_668numparse4impl23CombinedCurrencyMatcher9smokeTestERKNS_13StringSegmentE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet10intersectsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet10nextSetBitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet12countMembersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet14displayScriptsERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet4testE11UScriptCodeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet8containsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSet8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ScriptSeteqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone10beginRRULEERNS_9VTZWriterEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11appendUNTILERNS_9VTZWriterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeFooterERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeSimpleEdRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone11writeSimpleEdRNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12endZonePropsERNS_9VTZWriterEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12getRawOffsetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12hasSameRulesERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone12writeHeadersERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14beginZonePropsERNS_9VTZWriterEaRKNS_13UnicodeStringEiidR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14inDaylightTimeEdR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone14writeFinalRuleERNS_9VTZWriterEaPKNS_18AnnualTimeZoneRuleEiidR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone15getLastModifiedERd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone15useDaylightTimeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone19writeZonePropsByDOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone19writeZonePropsByDOWERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone20countTransitionRulesER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone20writeZonePropsByTimeERNS_9VTZWriterEaRKNS_13UnicodeStringEiidaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone27writeZonePropsByDOW_GEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone27writeZonePropsByDOW_LEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone31writeZonePropsByDOW_GEQ_DOM_subERNS_9VTZWriterEiiiidiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeERNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeEdRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone5writeEdRNS_9VTZWriterER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone8getTZURLERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEhiiihiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9getOffsetEhiiihiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZone9writeZoneERNS_9VTZWriterERNS_13BasicTimeZoneEPNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZoneeqERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669VTimeZoneneERKNS_8TimeZoneE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNKR6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNO6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn16_NK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6612FixedDecimalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6612FixedDecimalD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getFinalStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getFirstStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getNextStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getPreviousStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_isEquivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(izrule_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_formatMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_formatMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_parseMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_parseMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vformatMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vformatMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vparseMessageWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_vparseMessage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_add_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clearField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_equivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getCanonicalTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDayOfWeekType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getDefaultTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getFieldDifference_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getGregorianChange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getHostTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getMillis_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getNow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTZDataVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneIDForWindowsID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getTimeZoneTransitionDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getWeekendTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_getWindowsTimeZoneID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_inDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_isSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_isWeekend_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openCountryTimeZones_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openTimeZoneIDEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_openTimeZones_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_roll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDateTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setDefaultTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setGregorianChange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setMillis_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_setTimeZone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucal_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_constrainCategory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_constrainField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getCategory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getIndexes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_getInt64IterationContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_matchesField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_setInt64IterationContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucfpos_setState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_cloneBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_closeElements_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_equal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getBound_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getContractionsAndExpansions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getContractions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getEquivalentReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getFunctionalEquivalent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywordValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getMaxExpansion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getMaxVariable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getRulesEx_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getShortDefinitionString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getSortKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getStrength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getTailoredSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getUCAVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getUnsafeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_greaterOrEqual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_greater_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_keyHashCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_mergeSortkeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_nextSortKeyPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_normalizeShortDefinitionString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openAvailableLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openElements_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openFromShortString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_openRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_prepareShortStringOpen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_primaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_restoreVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_secondaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setMaxVariable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setReorderCodes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setStrength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_setVariableTop_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcollIter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcollUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_strcoll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_tertiaryOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_detectAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_detect_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_enableInputFilter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getAllDetectableCharsets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getConfidence_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getDetectableCharsets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_getUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_isInputFilterEnabled_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setDeclaredEncoding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setDetectableCharset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucsdet_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_adoptNumberFormatForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_adoptNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_applyPatternRelative_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_countSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatCalendarForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_formatForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_get2DigitYearStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getBooleanAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getNumberFormatForField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_getSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_isLenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_parseCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_registerOpener_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_set2DigitYearStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setBooleanAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setCalendar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setLenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setNumberFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_setSymbols_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toCalendarDateField_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPatternRelativeDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPatternRelativeTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udat_unregisterOpener_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_addPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getAppendItemFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getAppendItemName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBaseSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBestPatternWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getBestPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getDateTimeFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getFieldDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getPatternForSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_getSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openBaseSkeletons_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_openSkeletons_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_replaceFieldTypesWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_replaceFieldTypes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setAppendItemFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setAppendItemName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setDateTimeFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udatpg_setDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_formatToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udtitvfmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufieldpositer_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getArrayItemByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getArrayLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDecNumChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_getUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_isNumeric_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmtval_getString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ufmtval_nextPosition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ugender_getInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ugender_getListGender_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_deleteScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_equalsScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashScriptSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_formatStringsToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulistfmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getCLDRVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getDelimiter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getExemplarSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getLocaleDisplayPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getLocaleSeparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getMeasurementSystem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getNoSubstitute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_getPaperSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocdata_setNoSubstitute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_autoQuoteApostrophe_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_setLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_vformat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umsg_vparse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDoubleCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDoubleForFields_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_formatUFormattable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getDoubleAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getSymbol_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_getTextAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDoubleCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parseToUFormattable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_parse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setDoubleAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setSymbol_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_setTextAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unum_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatDecimal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatDouble_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_formatInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openForSkeletonAndLocaleWithError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openForSkeletonAndLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultGetAllFieldPositions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultNextFieldPosition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumf_resultToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getDescription_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_getRadix_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_isAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_openAvailableNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_openByName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unumsys_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_getKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_openForType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_selectFormatted_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_selectWithFormat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uplrules_select_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextClearStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextGetRounding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextGetStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextRestoreStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSaveStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetRounding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusFromStringQuiet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatusQuiet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextSetStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextStatusToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextTestSavedStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextTestStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decContextZeroStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAbs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAdd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberAnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberClassToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareSignal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareTotalMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompareTotal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopyAbs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopyNegate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopySign_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberCopy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberDivideInteger_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberDivide_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberExp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFMA_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberFromUInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberGetBCD_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberInvert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberIsNormal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberIsSubnormal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLog10_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberLogB_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMaxMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMax_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMinMag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMin_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMinus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberMultiply_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextMinus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextPlus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNextToward_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberNormalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberOr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberPlus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberPower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberQuantize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberReduce_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRemainderNear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRemainder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRescale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberRotate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSameQuantum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberScaleB_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSetBCD_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberShift_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSquareRoot_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberSubtract_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToEngString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToIntegralExact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToIntegralValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberToUInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberTrim_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberXor_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_decNumberZero_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_deleteConditionalCE32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendReplacementUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendReplacement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendTailUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_appendTail_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_end64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_end_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_find64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_findNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_find_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_flags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getFindProgressCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getMatchCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getStackLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getTimeLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_getUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupNumberFromCName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupNumberFromName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_groupUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_group_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hasAnchoringBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hasTransparentBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_hitEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_lookingAt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_lookingAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_matches64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_matches_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_openC_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_openUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_patternUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_pattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_refreshUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionEnd64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionStart64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_regionStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceAllUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceFirstUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_replaceFirst_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_requireEnd_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_reset64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setFindProgressCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setMatchCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegion64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegionAndStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setRegion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setStackLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setTimeLimit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_setUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_splitUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_split_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_start64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_start_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_useAnchoringBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregex_useTransparentBounds_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_areEqual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_contains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainedRegionsOfType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainedRegions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainingRegionOfType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getContainingRegion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getPreferredValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionFromCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getRegionFromNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uregion_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_closeResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_combineDateAndTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatNumericToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatNumeric_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_formatToResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_openResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ureldatefmt_resultAsValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_first_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_following_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getMatchedText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_last_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_openFromCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_preceding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_searchBackwards_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_search_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setAttribute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setCollator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usearch_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusableUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusableUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_areConfusable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2UnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check2_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_checkUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_checkUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_check_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_closeCheckResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getAllowedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultNumerics_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getCheckResultRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getInclusionSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getInclusionUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRecommendedSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRecommendedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getSkeletonUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_getSkeleton_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openCheckResult_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_openFromSource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setAllowedUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setChecks_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_setRestrictionLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uspoof_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_fromInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_getTimeScaleValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utmscale_toInt64_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_countAvailableIDs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getAvailableID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getSourceSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_getUnicodeID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openIDs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_register_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_setFilter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_stripRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_toRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transIncrementalUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transIncremental_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_transUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_trans_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_unregisterID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrans_unregister_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_countTransitionRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getLastModified_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getNextTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset2_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset3_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getPreviousTransition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_getTZURL_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_hasSameRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_inDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_openData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_openID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setLastModified_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_setTZURL_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_useDaylightTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_writeFromStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_writeSimple_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(vzone_write_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getDSTSavings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_getRawOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(zrule_isEquivalentTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_adoptFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_adoptTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getDynamicClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getStaticClassID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_getTo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setFrom_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setTime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ztrans_setTo_66);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _Z34uspoof_getSkeletonUnicodeString_66PK13USpoofCheckerjRKN6icu_6613UnicodeStringERS3_P10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendar6ceToJDEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendar6jdToCEEiiRiS1_S1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610CECalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat11setCalendarERKNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat13adoptCalendarEPNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat14createInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat14getBestPatternERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat15setNumberFormatERKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18createDateInstanceENS0_6EStyleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18createTimeInstanceENS0_6EStyleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat18setCalendarLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat19setBooleanAttributeE27UDateFormatBooleanAttributeaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonEPNS_8CalendarERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat25createInstanceForSkeletonERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610DateFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo11getInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo12loadInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo18getNeutralInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo21getMaleTaintsInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfo23getMixedNeutralInstanceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6610GenderInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable10adoptArrayEPS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable11adoptObjectEPNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable11adoptStringEPNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16getDecimalNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable16setDecimalNumberENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable20adoptDecimalQuantityEPNS_6number4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable21internalGetCharStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7setDateEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable7setLongEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable8setArrayEPKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable8setInt64El);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9setDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611Formattable9setStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EPNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2EdNS0_6ISDATEE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2El);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611FormattableaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createAcreER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createByteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createGramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createKnotER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createMoleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createPintER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createVoltER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createWattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createWeekER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10createYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCelsiusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getFurlongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getGigabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getHectareEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getKilobitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getMegabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getPercentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getTerabitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10getThermUsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit10initNoUnitEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createCaratER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createDunamER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createHertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createJouleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createKaratER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createLiterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createMonthER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createOunceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPixelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createPoundER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createQuartER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11createStoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getAcreFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getGigabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getGigawattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilobyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilogramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getKilowattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMegabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMegawattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getMillibarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getPermilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getPetabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getTeaspoonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit11getTerabyteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createAmpereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createBarrelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createBushelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDaltonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDecadeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createDegreeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createFathomER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createGForceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createGallonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createInchHgER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createKelvinER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createMinuteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createNewtonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createParsecER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createPascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createRadianER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12createSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getArcMinuteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getArcSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getAvailableEPKcPS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getAvailableEPS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCubicYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getCupMetricEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDayPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDeciliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getDecimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getEarthMassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getGigahertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilohertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilojouleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getLightYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegahertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegaliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMegapixelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMetricTonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMicrogramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMilligramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getMilliwattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getNanometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getOunceTroyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPermyriadEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPicometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getPoundFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12getSolarMassEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit12initCurrencyEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCelsiusER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createCenturyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createFurlongER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createGigabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createHectareER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createKilobitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createMegabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createPercentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createTerabitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13createThermUsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getAtmosphereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCentiliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getCubicMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getDotPerInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getFahrenheitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getFluidOunceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getHectoliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getHorsepowerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getIndexCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getKilopascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMegapascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMicrometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMilliliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getMillimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getNanosecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getPintMetricEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getPoundForceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getSquareYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getTablespoonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getWeekPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit13getYearPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createAcreFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createGigabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createGigawattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilobyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilogramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createKilowattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMegabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMegawattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createMillibarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createPermilleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createPetabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createTeaspoonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14createTerabyteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getFoodcalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getHectopascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getKilocalorieEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMicrosecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMilePerHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMilliampereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMillisecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getMonthPersonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getNewtonMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getSolarRadiusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit14getSquareMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createArcMinuteER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createArcSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCubicYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createCupMetricER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDayPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDeciliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createDecimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createEarthMassER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createGigahertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilohertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilojouleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createLightYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegahertzER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegaliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMegapixelER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMetricTonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMicrogramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMilligramER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createMilliwattER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createNanometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createOunceTroyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPermyriadER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPicometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createPoundFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15createSolarMassER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getElectronvoltEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getKilowattHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getNauticalMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit15getPixelPerInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createAtmosphereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCentiliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createCubicMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createDotPerInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createFahrenheitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createFluidOunceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createHectoliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createHorsepowerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createKilopascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMegapascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMicrometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMilliliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createMillimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createNanosecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createPintMetricER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createPoundForceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareFootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createSquareYardER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createTablespoonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createWeekPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16createYearPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16getMilePerGallonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createFoodcalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createHectopascalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createKilocalorieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMicrosecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMilePerHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMilliampereER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMillisecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createMonthPersonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createNewtonMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createSolarRadiusER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17createSquareMeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getAvailableTypesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getCubicKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getGallonImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getMeterPerSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit17getPartPerMillionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createElectronvoltER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createKilowattHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createNauticalMileER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18createPixelPerInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getCubicCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getRevolutionAngleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getSolarLuminosityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18getSquareKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit18resolveUnitPerUnitERKS0_S2_Pb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19createMilePerGallonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getAstronomicalUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getDotPerCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getKilometerPerHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getMileScandinavianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit19getSquareCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createCubicKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createGallonImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createMeterPerSecondER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20createPartPerMillionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20getLiterPerKilometerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit20getMillimolePerLiterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createCubicCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createRevolutionAngleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createSolarLuminosityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21createSquareKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getBritishThermalUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getFluidOunceImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getGenericTemperatureEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getPixelPerCentimeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit21getPoundPerSquareInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createAstronomicalUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createDotPerCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createKilometerPerHourER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createMileScandinavianER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22createSquareCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit22getMillimeterOfMercuryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit23createLiterPerKilometerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit23createMillimolePerLiterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createBritishThermalUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createFluidOunceImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createGenericTemperatureER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createPixelPerCentimeterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24createPoundPerSquareInchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getLiterPer100KilometersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMeterPerSecondSquaredEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMilePerGallonImperialEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit24getMilligramPerDeciliterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit25createMillimeterOfMercuryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createLiterPer100KilometersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMeterPerSecondSquaredER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMilePerGallonImperialER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit27createMilligramPerDeciliterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit33internalGetIndexForTypeAndSubtypeEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit5getEmEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit5setToEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6createEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getBarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getBitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getCupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getLuxEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getOhmEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit6getTonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getAcreEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getByteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getFootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getGramEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getHourEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getInchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getKnotEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getMileEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getMoleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getPintEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getVoltEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getWattEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getYardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit7getYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8createEmER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getCaratEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getDunamEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getHertzEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getJouleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getKaratEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getLiterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getMeterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getOunceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPixelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getPoundEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getQuartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8getStoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit8initTimeEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createBarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createBitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createCupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createDayER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createLuxER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createOhmER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9createTonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getAmpereEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getBarrelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getBushelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDaltonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDecadeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getDegreeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getFathomEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getGForceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getGallonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getInchHgEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getKelvinEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getMinuteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getNewtonEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getParsecEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getPascalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getRadianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnit9getSecondEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611MeasureUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules10getSamplesERKNS_13UnicodeStringEPdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules11createRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules17internalForLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules18createDefaultRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getAllKeywordValuesERKNS_13UnicodeStringEPdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getAvailableLocalesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules19getRuleFromResourceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules20createSharedInstanceERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules21getUniqueKeywordValueERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRules9forLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611PluralRulesaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap12addChildNodeEPNS_13CharacterNodeEDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap3putEPKDsPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap3putERKNS_13UnicodeStringEPvRNS_12ZNStringPoolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap7putImplERKNS_13UnicodeStringEPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap9buildTrieER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMap9growNodesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapC2EaPFvPvE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6611TextTrieMapD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat10setChoicesEPKdPKaPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat13parseArgumentERKNS_14MessagePatternEiRKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat14findSubMessageERKNS_14MessagePatternEid);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat25matchStringUntilLimitPartERKNS_14MessagePatternEiiRKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormat4dtosEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2EPKdPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2EPKdPKaPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ChoiceFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey10reallocateEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKey9setLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2EPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CollationKeyaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ENS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ERKNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612CurrencyUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiaiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleC2EiiiiNS0_12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612DateTimeRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal19getFractionalDigitsEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal26adjustForMinFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal4initEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal4initEdil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal8decimalsEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimal9quickInitEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Edi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Edil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612FixedDecimalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat11setCurrencyEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat12makeInstanceERKNS_6LocaleE18UNumberFormatStyleaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15registerFactoryEPNS_19NumberFormatFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15setGroupingUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat15setRoundingModeENS0_13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat16isStyleSupportedE18UNumberFormatStyle);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat19setParseIntegerOnlyEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat20createSharedInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat21createPercentInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat21createPercentInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22createCurrencyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22createCurrencyInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat22internalCreateInstanceERKNS_6LocaleE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat23setMaximumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat23setMinimumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24createScientificInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24createScientificInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24setMaximumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormat24setMinimumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612NumberFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat11copyObjectsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14PluralSelectorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14PluralSelectorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat14findSubMessageERKNS_14MessagePatternEiRKNS0_14PluralSelectorEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat15setNumberFormatEPKNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapter5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat21PluralSelectorAdapterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat4initEPKNS_11PluralRulesE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_11PluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKNS_6LocaleERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612PluralFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10compileSetEPNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10nextCharLLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile10peekCharLLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11blockTopLocEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11fixLiteralsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile11literalCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile12allocateDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile13scanNamedCharEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile13scanPosixPropEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14doParseActionsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14matchStartTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14maxMatchLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile14minMatchLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile15compileIntervalEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile16handleCloseParenEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile17allocateStackDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile20createSetForPropertyERKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile21compileInlineIntervalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile27findCaseInsensitiveStartersEiPNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile5errorE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7buildOpEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7compileEP5UTextR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile7setEvalEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8appendOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8appendOpEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8insertOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8nextCharERNS0_16RegexPatternCharE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile8scanPropEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile9setPushOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompile9stripNOPsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileC2EPNS_12RegexPatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexCompileD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10appendTailEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10appendTailERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10replaceAllEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10replaceAllERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher10resetStackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12MatchChunkAtEiaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12replaceFirstEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12replaceFirstERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher12setTimeLimitEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher13IncrementTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher13setStackLimitEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher14findUsingChunkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher14isWordBoundaryEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher15isUWordBoundaryEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16getMatchCallbackERPFaPKviERS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16refreshInputTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher16setMatchCallbackEPFaPKviES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher17appendReplacementEP5UTextS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher17appendReplacementERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher18useAnchoringBoundsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher19isChunkWordBoundaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher19resetPreserveRegionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher20useTransparentBoundsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher23getFindProgressCallbackERPFaPKvlERS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher23setFindProgressCallbackEPFaPKvlES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4findEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5init2EP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetEP5UText);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5splitEP5UTextPS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher6regionEllR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher6regionElllR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7MatchAtElaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7matchesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher7matchesElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher8setTraceEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher9lookingAtER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcher9lookingAtElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EP5UTextS2_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EP5UTextjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2EPKNS_12RegexPatternE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringES3_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherC2ERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern19initNamedCaptureMapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern3zapEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileEP5UTextjR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7compileERKNS_13UnicodeStringEjR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7matchesEP5UTextS2_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPattern7matchesERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612RegexPatternaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat14findSubMessageERKNS_14MessagePatternEiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612SelectFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10handleNextEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10handlePrevEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch10setPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch11setCollatorEPNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearch9setOffsetEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorEPNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringERNS_17CharacterIteratorERKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_PNS_17RuleBasedCollatorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKNS_13UnicodeStringES3_RKNS_6LocaleEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612StringSearchaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleC2ERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612TimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool3getEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool3getERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool5adoptEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPool6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPoolC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6612ZNStringPoolD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613BasicTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallback11needToWriteENS_9Collation5LevelE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallbackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys13LevelCallbackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationKeys26writeSortKeyUpToQuaternaryERNS_17CollationIteratorEPKaRKNS_17CollationSettingsERNS_15SortKeyByteSinkENS_9Collation5LevelERNS0_13LevelCallbackEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot11getSettingsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot17getRootCacheEntryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot4loadER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot7getDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613CollationRoot7getRootER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DangiCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat11setCurrencyEPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat11setCurrencyEPKDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12setAttributeE22UNumberFormatAttributeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat12touchNoErrorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat13setMultiplierEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat14setFormatWidthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat14setPadPositionENS0_12EPadPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setGroupingSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setGroupingUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setPadCharacterERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat15setupFastFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16setCurrencyUsageE14UCurrencyUsageP10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat16setParseAllInputE27UNumberFormatAttributeValue);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setNegativePrefixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setNegativeSuffixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setPositivePrefixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat17setPositiveSuffixERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setMultiplierScaleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setParseNoExponentEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat18setSignAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat19fieldPositionHelperERKNS_6number15FormattedNumberERNS_13FieldPositionEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat19setParseIntegerOnlyEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat20setRoundingIncrementEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21applyLocalizedPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setCurrencyPluralInfoERKNS_18CurrencyPluralInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setParseCaseSensitiveEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat21setScientificNotationEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23adoptCurrencyPluralInfoEPNS_18CurrencyPluralInfoE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setMaximumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat23setMinimumIntegerDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMaximumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumExponentDigitsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumFractionDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setMinimumGroupingDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setPropertiesFromPatternERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setSecondaryGroupingSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat24setSignificantDigitsUsedEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat26setExponentSignAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27fieldPositionIteratorHelperERKNS_6number15FormattedNumberEPNS_21FieldPositionIteratorEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27setMaximumSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat27setMinimumSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat30setDecimalPatternMatchRequiredEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat30setDecimalSeparatorAlwaysShownEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat32setFormatFailIfMoreThanMaxDigitsEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormat5touchER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2EPKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsE18UNumberFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringEPNS_20DecimalFormatSymbolsER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613DecimalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPosition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPositionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FieldPositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613FormattedListaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613IFixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613IFixedDecimalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter14initializeHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter16ListPatternsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter16ListPatternsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter21getListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatter22loadListFormatInternalERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2EPKNS_18ListFormatInternalE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2ERKNS_14ListFormatDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613ListFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat17adoptNumberFormatEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat17initMeasureFormatERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat20createCurrencyFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat20createCurrencyFormatERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormat22setMeasureFormatLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKNS_6LocaleE19UMeasureFormatWidthR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MeasureFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat10getArgNameEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat10setFormatsEPPKNS_6FormatEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11adoptFormatERKNS_13UnicodeStringEPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11adoptFormatEiPNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11copyObjectsERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat11findKeywordERKNS_13UnicodeStringEPKPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12adoptFormatsEPPNS_6FormatEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringE29UMessagePatternApostropheModeP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12applyPatternERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12equalFormatsEPKvS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat12resetPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat14argNameMatchesEiRKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat14getFormatNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat16allocateArgTypesEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat17setArgStartFormatEiPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat19autoQuoteApostropheERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat20cacheExplicitFormatsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProvider5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderC2ERKS0_11UPluralType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat22PluralSelectorProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat23createAppropriateFormatERNS_13UnicodeStringES2_RNS_11Formattable4TypeER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat23setCustomArgStartFormatEiPNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat6formatERKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9getFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setFormatERKNS_13UnicodeStringERKNS_6FormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setFormatEiRKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormat9setLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613MessageFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone14constructEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone19initTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone20clearTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZone21deleteTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneC2EPK15UResourceBundleS3_RKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613OlsonTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment11resetLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment12adjustOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment15codePointsEqualEiib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment21getCommonPrefixLengthERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment23adjustOffsetByCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment23getPrefixLengthInternalERKNS_13UnicodeStringEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment28getCaseSensitivePrefixLengthERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment9setLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegment9setOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613StringSegmentC2ERKNS_13UnicodeStringEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames18createTZDBInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection11addMetaZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection7addZoneE17UTimeZoneNameTypeiRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollection7matchesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19MatchInfoCollectionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNames19loadAllDisplayNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6613TimeZoneNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CopticCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmount16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2ERKNS_11FormattableENS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountC2EdNS_14ConstChar16PtrER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614CurrencyAmountaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614FormattedValueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614FormattedValueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar10isLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar11startOfYearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar12monthsInYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar22absoluteDayToDayOfWeekEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614HebrewCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614IndianCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator12setAttributeE16USearchAttribute21USearchAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator13setMatchStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator14setMatchLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator16setBreakIteratorEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator16setMatchNotFoundEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator4lastER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator5firstER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator9followingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIterator9precedingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERKNS_13UnicodeStringEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2ERNS_17CharacterIteratorEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SearchIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SharedCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SharedCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone10setEndRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone11decodeRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartRuleEiiiiNS0_8TimeModeEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone12setStartYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13compareToRuleEaaaaaiiNS0_5EModeEaaai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13decodeEndRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone13setDSTSavingsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone15decodeStartRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone19initTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone20clearTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone21deleteTransitionRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZone9constructEiaaaiNS0_8TimeModeEaaaiS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiNS0_8TimeModeEaaaiS4_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneC2EiRKNS_13UnicodeStringEaaaiaaaiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614SimpleTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural10getKeywordENS0_4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural15indexFromStringEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural15indexFromStringERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural25indexOrNegativeFromStringEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614StandardPlural25indexOrNegativeFromStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TaiwanCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmount16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2ERKNS_11FormattableENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountC2EdNS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitAmountaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15getTimeUnitNameENS_8TimeUnit15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15initDataMembersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat15setNumberFormatERKNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat16checkConsistencyE20UTimeUnitFormatStylePKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat19searchInLocaleChainE20UTimeUnitFormatStylePKcS3_NS_8TimeUnit15UTimeUnitFieldsERKNS_13UnicodeStringES3_PNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat21readFromCurrentLocaleE20UTimeUnitFormatStylePKcRKNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat5setupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat6createE20UTimeUnitFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormat9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleE20UTimeUnitFormatStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeUnitFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat11getTimeTypeE17UTimeZoneNameType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat12toCodePointsERKNS_13UnicodeStringEPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat13setGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat14initGMTPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16setGMTZeroFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat16setTimeZoneNamesERKNS_13TimeZoneNamesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18adoptTimeZoneNamesEPNS_13TimeZoneNamesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18parseOffsetPatternERKNS_13UnicodeStringENS0_12OffsetFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat18setGMTOffsetDigitsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat19expandOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat19setGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat21initGMTOffsetPatternsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat21truncateOffsetPatternERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat22parseAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionEDsNS0_12OffsetFieldsES6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat22setDefaultParseOptionsEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat27formatOffsetWithAsciiDigitsEiDsNS0_12OffsetFieldsES1_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat28checkAbuttingHoursAndMinutesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat30parseAbuttingAsciiOffsetFieldsERKNS_13UnicodeStringERNS_13ParsePositionENS0_12OffsetFieldsES6_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormat7unquoteERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TimeZoneFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator10unregisterERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator11adoptFilterEPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator12orphanFilterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator13registerAliasERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14_registerAliasERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14createInstanceERKNS_13UnicodeStringE15UTransDirectionR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getAvailableIDEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator14getDisplayNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15createFromRulesERKNS_13UnicodeStringES3_15UTransDirectionR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15getAvailableIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator15registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16_registerFactoryERKNS_13UnicodeStringEPFPS0_S3_NS0_5TokenEES5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator16registerInstanceEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator17_registerInstanceEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator17countAvailableIDsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18getAvailableSourceEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator18initializeRegistryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19_getAvailableSourceEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19_getAvailableTargetEiRKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19createBasicInstanceERKNS_13UnicodeStringEPS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator19getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator20_getAvailableVariantEiRKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator21countAvailableSourcesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator21countAvailableTargetsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22_countAvailableSourcesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22_countAvailableTargetsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator22countAvailableVariantsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23_countAvailableVariantsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23_registerSpecialInverseERKNS_13UnicodeStringES3_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614Transliterator23setMaximumContextLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorC2ERKNS_13UnicodeStringEPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6614TransliteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex10nextBucketER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex10nextRecordER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex11initBucketsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex12clearBucketsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex12clearRecordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14ImmutableIndexD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14ImmutableIndexD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getBucketCountER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14getRecordCountER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex14setInflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex16setMaxLabelCountEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex16setOverflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex17addIndexExemplarsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex17setUnderflowLabelERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19buildImmutableIndexER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19resetBucketIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex19resetRecordIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex20firstStringsInScriptER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex25addChineseIndexCharactersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex27internalResetBucketIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex4initEPKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketC2ERKNS_13UnicodeStringES4_25UAlphabeticIndexLabelType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6BucketD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6RecordC2ERKNS_13UnicodeStringEPKv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex6RecordD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addLabelsERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addLabelsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9addRecordERKNS_13UnicodeStringEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndex9separatedERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexC2EPNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615AlphabeticIndexD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar11offsetMonthEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar20computeChineseFieldsEiiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar3addENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKNS_6LocaleEiPKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615ChineseCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactory14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615CollatorFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar13civilLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar18setCalculationTypeENS0_16ECalculationTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar30initializeSystemDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar7isCivilEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendar7moonAgeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarC2ERKNS_6LocaleER10UErrorCodeNS0_16ECalculationTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615IslamicCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14createInstanceEiaRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem14setAlgorithmicEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem17getAvailableNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem20createInstanceByNameEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem7setDescERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem7setNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystem8setRadixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615NumberingSystemD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615PersianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615UnicodeReplacerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6615UnicodeReplacerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616BuddhistCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder10ceStrengthEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11addRelationEiRKNS_13UnicodeStringES3_S3_RPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11finalizeCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder11setCaseBitsERKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder13parseAndBuildERKNS_13UnicodeStringEPKhPNS_19CollationRuleParser8ImporterEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addIfDifferentERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addOnlyClosureERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder14addWithClosureERKNS_13UnicodeStringES3_PKlijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder15makeTailoredCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17addTailCompositesERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17getWeight16BeforeEili);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder17insertNodeBetweenEiilR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder18countTailoredNodesEPKlii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder19closeOverCompositesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder20findOrInsertWeakNodeEijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder22findOrInsertNodeForCEsEiRPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder23getSpecialResetPositionERKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder23insertTailoredNodeAfterEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder25findOrInsertNodeForRootCEEliR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder26findOrInsertNodeForPrimaryEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder7sameCEsEPKliS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder8addResetEiRKNS_13UnicodeStringERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilder8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderC2EPKNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationCompare21compareUpToQuaternaryERNS_17CollationIteratorES2_RKNS_17CollationSettingsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights10nextWeightEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights12allocWeightsEjji);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights14initForPrimaryEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights15getWeightRangesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights15initForTertiaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights16initForSecondaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights25allocWeightsInShortRangesEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeights29allocWeightsInMinLengthRangesEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616CollationWeightsC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo13parseSkeletonERKNS_13UnicodeStringEPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo13stringNumericEiic);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo14initializeDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16DateIntervalSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16DateIntervalSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo18setIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo26setFallbackIntervalPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo28calendarFieldToIntervalIndexE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo28setIntervalPatternInternallyERKNS_13UnicodeStringE19UCalendarDateFieldsS3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfo8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616DateIntervalInfoaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616EthiopicCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar13getCurrentEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616JapaneseCalendar18enableTentativeEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10NSOverride4freeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10NSOverrideD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10initializeERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12applyPatternERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12isSyntaxCharEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat12parsePatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat13adoptCalendarEPNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat13matchLiteralsERKNS_13UnicodeStringERiS3_S4_aaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16getLevelFromCharEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16isAtNumericFieldERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat16translatePatternERKNS_13UnicodeStringERS1_S3_S3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17adoptNumberFormatEPNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17adoptNumberFormatERKNS_13UnicodeStringEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat17setTimeZoneFormatERKNS_14TimeZoneFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18initializeCalendarEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18isFieldUnitIgnoredERKNS_13UnicodeStringE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat18set2DigitYearStartEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat19adoptTimeZoneFormatEPNS_14TimeZoneFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat20initNumberFormattersERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat20setDateFormatSymbolsERKNS_17DateFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat21applyLocalizedPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat21processOverrideStringERKNS_6LocaleERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat22adoptDateFormatSymbolsEPNS_17DateFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat22isAfterNonNumericFieldERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24freeFastNumberFormattersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24initFastNumberFormattersER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat24initializeDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat26parseAmbiguousDatesAsAfterEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat27initializeBooleanAttributesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat9constructENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormat9isNumericEDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ENS_10DateFormat6EStyleES2_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringEPNS_17DateFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_17DateFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6616SimpleDateFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617AnyTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator10previousCEERNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator14nextCEFromCE32EPKNS_13CollationDataEijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator16appendNumericCEsEjaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator16previousCEUnsafeEiRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator17appendCEsFromCE32EPKNS_13CollationDataEijaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator17getCE32FromPrefixEPKNS_13CollationDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator18backwardNumSkippedEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator20nextSkippedCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator22getCE32FromBuilderDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23appendNumericSegmentCEsEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator23nextCE32FromContractionEPKNS_13CollationDataEjPKDsjiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator36nextCE32FromDiscontiguousContractionEPKNS_13CollationDataERNS_10UCharsTrieEjiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8CEBuffer20ensureAppendCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8CEBufferD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIterator8fetchCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings11setStrengthEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings12setCaseFirstE18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings13setReorderingERKNS_13CollationDataEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings14setMaxVariableEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings15aliasReorderingERKNS_13CollationDataEPKiiPKjiPKhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings15resetReorderingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings16setReorderArraysEPKiiPKjiPKhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings18copyReorderingFromERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings20setAlternateHandlingE18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings25reorderTableHasSplitBytesEPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettings7setFlagEi18UColAttributeValueiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617CollationSettingsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11assignArrayERPNS_13UnicodeStringERiPKS1_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setEraNamesEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setQuartersEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols11setWeekdaysEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols12arrayCompareEPKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols12setYearNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols13setNarrowErasEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14initializeDataERKNS_6LocaleEPKcR10UErrorCodea);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14isNumericFieldE16UDateFormatFieldi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setAmPmStringsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setShortMonthsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setZodiacNamesEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols14setZoneStringsEPKPKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols15createForLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16getPatternUCharsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols16setShortWeekdaysEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols17createZoneStringsEPKPKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols18disposeZoneStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols19getPatternCharIndexEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20initZoneStringsArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20isNumericPatternCharEDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols20setLocalPatternCharsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols22setTimeSeparatorStringERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols7setErasEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols8copyDataERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbols9setMonthsEPKNS_13UnicodeStringEiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2EPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617DateFormatSymbolsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar11getEpochDayER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar13pinDayOfMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar14aggregateStampEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar17julianDayToMillisEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar17millisToJulianDayEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar18setGregorianChangeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar21handleGetExtendedYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar22computeJulianDayOfYearEaiRa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar22handleComputeJulianDayE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar35handleGetExtendedYearFromWeekFieldsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendar4rollENS_8Calendar11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarC2EiiiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617GregorianCalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter11addIfAbsentEPKcRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter12selectPluralERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter15formatAndSelectEdRKNS_12NumberFormatERKNS_11PluralRulesERNS_22FormattedStringBuilderERNS_14StandardPlural4FormER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatter6formatERKNS_15SimpleFormatterERKNS_13UnicodeStringERS4_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617QuantityFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator10setLocalesERKNS_6LocaleES3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator12setAttributeE13UColAttribute18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14adoptTailoringEPNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator14setVariableTopEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator15setReorderCodesEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator20computeMaxExpansionsEPKNS_18CollationTailoringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollator22internalBuildTailoringERKNS_13UnicodeStringEi18UColAttributeValueP11UParseErrorPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2EPKNS_19CollationCacheEntryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2EPKhiPKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringE18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthE18UColAttributeValueR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringENS_8Collator18ECollationStrengthER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKNS_13UnicodeStringER11UParseErrorRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedCollatoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone11deleteRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone17addTransitionRuleEPNS_12TimeZoneRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone17deleteTransitionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone8completeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZone9copyRulesEPNS_7UVectorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneC2ERKNS_13UnicodeStringEPNS_19InitialTimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617RuleBasedTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617SharedPluralRulesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617SharedPluralRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6617double_conversion23DoubleToStringConverter13DoubleToAsciiEdNS1_8DtoaModeEiPciPbPiS5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiPNS_12DateTimeRuleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKNS_13UnicodeStringEiiRKNS_12DateTimeRuleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618AnnualTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10clearCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10getMoonAgeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer10getSunTimeEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11getMoonTimeERKNS0_7MoonAgeEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11getMoonTimeEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer11timeOfAngleERNS0_9AngleFuncEddda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12getJulianDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12getMoonPhaseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer12setJulianDayEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer13getSunRiseSetEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer14getMoonRiseSetEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer14getSunPositionERNS0_10EquatorialE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15SUMMER_SOLSTICEEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15WINTER_SOLSTICEEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getMoonPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getSunLongitudeEdRdS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer15getSunLongitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer16getJulianCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer16getLocalSiderealEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17eclipticObliquityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17eclipticToHorizonERNS0_7HorizonEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer17getSiderealOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialERKNS0_8EclipticE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20eclipticToEquatorialERNS0_10EquatorialEdd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer20getGreenwichSiderealEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7getTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7lstToUTEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer7setTimeEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer8NEW_MOONEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9AngleFuncD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9AngleFuncD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9CoordFuncD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9CoordFuncD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9FULL_MOONEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomer9riseOrSetERNS0_9CoordFuncEaddd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Ed);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Edd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CalendarAstronomerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin10getOptionsEPKNS_13CollationDataERKNS_17CollationSettingsEPti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin10lookupUTF8EPKtiPKhRii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin11compareUTF8EPKtS2_iPKhiS4_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin12compareUTF16EPKtS2_iPKDsiS4_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin13getTertiariesEjaj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin14getSecondariesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin15getQuaternariesEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin16lookupUTF8UnsafeEPKtiPKhRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin6lookupEPKti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin8getCasesEjaj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationFastLatin8nextPairEPKtijPKDsPKhRiS7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring10setVersionEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring15ensureOwnedDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoring15makeBaseVersionEPKhPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringC2EPKNS_17CollationSettingsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CollationTailoringD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo10deleteHashEPNS_9HashtableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo10initializeERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo14setPluralRulesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo24setCurrencyPluralPatternERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo26setupCurrencyPluralPatternERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo8copyHashEPKNS_9HashtableEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo8initHashER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfo9setLocaleERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618CurrencyPluralInfoaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateFmtBestPatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateFmtBestPatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14createInstanceERKNS_13UnicodeStringERKNS_6LocaleERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat14setPatternInfoE19UCalendarDateFieldsPKNS_13UnicodeStringES4_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat16adjustFieldWidthERKNS_13UnicodeStringES3_S3_aRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat17initializePatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setFallbackPatternE19UCalendarDateFieldsRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsPKNS_13UnicodeStringES4_aPS2_S5_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat18setIntervalPatternE19UCalendarDateFieldsRKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat19getDateTimeSkeletonERKNS_13UnicodeStringERS1_S4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat19setDateIntervalInfoERKNS_16DateIntervalInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat21fieldExistsInSkeletonE19UCalendarDateFieldsRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat21splitPatternInto2PartERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat22setSeparateDateTimePtnERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat29concatSingleDate2TimeIntervalERNS_13UnicodeStringERKS1_19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormat6createERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2ERKNS_6LocaleEPNS_16DateIntervalInfoEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618DateIntervalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618NullTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618RelativeDateFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618SharedNumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618SharedNumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition5setToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7adoptToEPNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7setFromERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition7setTimeEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransition9adoptFromEPNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2EdRKNS_12TimeZoneRuleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6618TimeZoneTransitionaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619BreakTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataReader12isAcceptableEPvPKcS3_PK9UDataInfo);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataReader4readEPKNS_18CollationTailoringEPKhiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter14writeTailoringERKNS_18CollationTailoringERKNS_17CollationSettingsEPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter5writeEaPKhRKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter8copyDataEPKiiPKvPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationDataWriter9writeBaseERKNS_13CollationDataERKNS_17CollationSettingsEPKviPiPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser11parseStringEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser12isSyntaxCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser12parseSettingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser13getOnOffValueERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser13setParseErrorEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser14getReorderCodeEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser14parseRuleChainER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15parseReorderingERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15parseUnicodeSetEiRNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser15setErrorContextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseRelationStringsEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseSpecialPositionEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser20parseTailoringStringEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser21parseRelationOperatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser21parseResetAndPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser22parseStarredCharactersEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4Sink20suppressContractionsERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4Sink8optimizeERKNS_10UnicodeSetERPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4SinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser4SinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser5parseERKNS_13UnicodeStringERNS_17CollationSettingsEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser8ImporterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParser8ImporterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParserC2EPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619CollationRuleParserD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleC2ERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619InitialTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619NumberFormatFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619NumberFormatFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorC2EPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6619SharedBreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder10CEModifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder10CEModifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder11encodeOneCEElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12buildContextEPNS_15ConditionalCE32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12getJamoCE32sEPjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder12setDigitTagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13buildContextsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13buildMappingsERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder13clearContextsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder14addContextTrieEjRNS_17UCharsTrieBuilderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder15encodeExpansionEPKliR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder16copyFromBaseCE32EijaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder16initForTailoringEPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17encodeExpansion32EPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17encodeOneCEAsCE32El);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder17setLeadSurrogatesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder18addConditionalCE32ERKNS_13UnicodeStringEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder19buildFastLatinTableERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder20maybeSetPrimaryRangeEiijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder20suppressContractionsERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder28copyContractionsFromBaseCE32ERNS_13UnicodeStringEijPNS_15ConditionalCE32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder28setPrimaryRangeAndReturnNextEiijiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder3addERKNS_13UnicodeStringES3_PKliR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder5addCEElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder5buildERNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEPli);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringES3_Pli);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder6getCEsERKNS_13UnicodeStringEiPli);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder7addCE32ERKNS_13UnicodeStringES3_jR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder7addCE32EjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder8copyFromERKS0_RKNS0_10CEModifierER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder8optimizeERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilder9encodeCEsEPKliR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CollationDataBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormat14createInstanceERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatC2ERKNS_6LocaleE19UNumberCompactStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620CompactDecimalFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols10initializeERKNS_6LocaleER10UErrorCodeaPKNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols10initializeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols24createWithLastResortDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbols28setPatternForCurrencySpacingE16UCurrencySpacingaRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKNS_6LocaleERKNS_15NumberingSystemER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620DecimalFormatSymbolsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620EscapeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandler8setShiftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandlerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620FieldPositionHandlerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620RemoveTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNames14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6620TimeZoneGenericNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621CaseMapTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621DateFmtBestPatternKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621DateFmtBestPatternKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIterator4nextERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIterator7setDataEPNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FieldPositionIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621FormattedDateIntervalaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat10setContextE15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat15setRoundingModeENS_12NumberFormat13ERoundingModeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat15stripWhitespaceERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat17setDefaultRuleSetERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat18initDefaultRuleSetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameERKNS_13UnicodeStringERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat21getRuleSetDisplayNameEiRKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat23setDecimalFormatSymbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat24initializeDefaultNaNRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat25adoptDecimalFormatSymbolsEPNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat29initCapitalizationContextInfoERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat29initializeDefaultInfinityRuleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat30initializeDecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat4initERKNS_13UnicodeStringEPNS_16LocalizationInfoER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormat7disposeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ENS_15URBNFRuleSetTagERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringEPNS_16LocalizationInfoERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringERKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_R11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKNS_13UnicodeStringES3_RKNS_6LocaleER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621RuleBasedNumberFormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRule14initStartTimesEPKdiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRule16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleC2ERKNS_13UnicodeStringEiiPKdiNS_12DateTimeRule12TimeRuleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621TimeArrayTimeZoneRuleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6621UTF8CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator18setTransliteratorsEPKPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator19freeTransliteratorsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator20adoptTransliteratorsEPPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator27computeMaximumContextLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator4initERKNS_13UnicodeStringE15UTransDirectionaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator4initERNS_7UVectorE15UTransDirectionaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliterator7joinIDsEPKPNS_14TransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2EPKPNS_14TransliteratorEiPNS_13UnicodeFilterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringE15UTransDirectionPNS_13UnicodeFilterER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKNS_13UnicodeStringERNS_7UVectorEPNS_13UnicodeFilterEiR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorC2ERNS_7UVectorEiR11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622CompoundTransliteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder15insertCodePointEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder15writeTerminatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder16prepareForInsertEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder22prepareForInsertHelperEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6appendERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKNS_13UnicodeStringEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6insertEiRKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6removeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilder6spliceEiiRKNS_13UnicodeStringEiihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622FormattedStringBuilderaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UIterCollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorC2ERKS0_PKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UTF16CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6622UnescapeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623LowercaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623RuleBasedTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623SharedDateFormatSymbolsD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623SharedDateFormatSymbolsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623TitlecaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6623UppercaseTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator15getMaxExpansionEPK10UHashtablei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator20computeMaxExpansionsEPKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator7setTextERNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIterator9setOffsetEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKNS_13UnicodeStringEPKNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKNS_17CharacterIteratorEPKNS_17RuleBasedCollatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624CollationElementIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition14constrainFieldEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition17constrainCategoryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition24setInt64IterationContextEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPosition8setStateEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPositionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624ConstrainedFieldPositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10addPatternERKNS_13UnicodeStringEaRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10getBestRawERNS_15DateTimeMatcherEiPNS_12DistanceInfoER10UErrorCodePPKNS_11PtnSkeletonE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator10setDecimalERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator11addCLDRDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator11getSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13copyHashtableEPNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13getAppendNameE21UDateTimePatternFieldRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13getRedundantsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator13initHashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14addICUPatternsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringE28UDateTimePatternMatchOptionsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator14getBestPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator15getBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16adjustFieldTypesERKNS_13UnicodeStringEPKNS_11PtnSkeletonEi28UDateTimePatternMatchOptions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16getBestAppendingEiiR10UErrorCode28UDateTimePatternMatchOptions);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17addCanonicalItemsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_28UDateTimePatternMatchOptionsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17replaceFieldTypesERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setAppendItemNameE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setDateTimeFormatERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17setDecimalSymbolsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator17staticGetSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator18setAvailableFormatERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19AppendItemNamesSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19createEmptyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19setAppendItemFormatE21UDateTimePatternFieldRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator19setFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidthRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20AvailableFormatsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator20getCalendarTypeToUseERKNS_6LocaleERNS_10CharStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21AppendItemFormatsSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21getAllowedHourFormatsERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator21staticGetBaseSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator22addPatternWithSkeletonERKNS_13UnicodeStringEPS2_aRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator23consumeShortTimePatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator23setDateTimeFromCalendarERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator25mapSkeletonMetacharactersERKNS_13UnicodeStringEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator26getMutableFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator26loadAllowedHourFormatsDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator8initDataERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGenerator9hackTimesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624DateTimePatternGeneratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6624FCDUTF8CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder10loadGroupsERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder11addUniqueCEElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder13encodeCharCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder14getCEsFromCE32ERKNS_13CollationDataEijR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder15encodeUniqueCEsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder18encodeContractionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder19addContractionEntryEillR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder25getCEsFromContractionCE32ERKNS_13CollationDataEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder6getCEsERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder7forDataERKNS_13CollationDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilder8resetCEsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625CollationFastLatinBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator23handleGetTrailSurrogateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIterator9normalizeERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUIterCollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator11nextSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator13nextCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator13resetToOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator14handleNextCE32ERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator15previousSegmentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator15switchToForwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator16switchToBackwardEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator17previousCodePointER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator18foundNULTerminatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator20forwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator21backwardNumCodePointsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIterator9normalizeEPKDsS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorC2ERKS0_PKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FCDUTF16CollationIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625FormattedRelativeDateTimeaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625NameUnicodeTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatter4initEPNS_12NumberFormatEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatE35UDateRelativeDateTimeFormatterStyle15UDisplayContextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleEPNS_12NumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625RelativeDateTimeFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter14createInstanceEPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter14getPreExponentERKNS_20DecimalFormatSymbolsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceEPNS_13DecimalFormatERKNS_13UnicodeStringES5_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter20createMarkupInstanceERKNS_6LocaleERKNS_13UnicodeStringES6_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceEPNS_13DecimalFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatter25createSuperscriptInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterC2EPNS_13DecimalFormatEPNS0_5StyleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625ScientificNumberFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryC2ERKNS_6LocaleEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625SimpleNumberFormatFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6625UnicodeNameTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6627NormalizationTransliterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImpl12isIntOrGroupEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImpl14isNumericFieldEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplC2Eh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6631FormattedValueStringBuilderImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumeration5resetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_6633PluralAvailableLocalesEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Format11syntaxErrorERKNS_13UnicodeStringEiR11UParseError);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Format12setLocaleIDsEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666FormataSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit4baseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit7percentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnit8permilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666NoUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region11getInstanceEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region11getInstanceEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region12getAvailableE11URegionTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region14loadRegionDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666Region17cleanupRegionDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666RegionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidth10truncateAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidth10zeroFillToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number12IntegerWidthC2Essb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15FormattedNumberaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter10withLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter11forSkeletonERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number15NumberFormatter4withEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number18ScientificNotationC2Eabs18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20FormattedNumberRangeaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20NumberRangeFormatter10withLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number20NumberRangeFormatter4withEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatter13lnfMoveHelperEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatter5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EONS0_4impl10MacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKNS0_4impl10MacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number24LocalizedNumberFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2EONS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2ERKNS0_23NumberFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number26UnlocalizedNumberFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EONS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKNS0_4impl15RangeMacroPropsERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number29LocalizedNumberRangeFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EONS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKNS0_28NumberRangeFormatterSettingsIS1_EE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatterC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatteraSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number31UnlocalizedNumberRangeFormatteraSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils11replaceTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeEDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils12containsTypeERKNS_13UnicodeStringENS1_16AffixPatternTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils14estimateLengthERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils15getFieldForTypeENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils18hasCurrencySymbolsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils19iterateWithConsumerERKNS_13UnicodeStringERNS1_13TokenConsumerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils23unescapedCodePointCountERKNS_13UnicodeStringERKNS1_14SymbolProviderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils32containsOnlySymbolsAndIgnorablesERKNS_13UnicodeStringERKNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils6escapeERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils7hasNextERKNS1_8AffixTagERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils8unescapeERKNS_13UnicodeStringERNS_22FormattedStringBuilderEiRKNS1_14SymbolProviderEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl10AffixUtils9nextTokenENS1_8AffixTagERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13ModifierStoreD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13ModifierStoreD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser17parseToPropertiesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser18parseToPatternInfoERKNS_13UnicodeStringERNS1_17ParsedPatternInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser23patternInfoToPropertiesERNS1_23DecimalFormatPropertiesERNS1_17ParsedPatternInfoENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser25parseToExistingPropertiesERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl13PatternParser29parseToExistingPropertiesImplERKNS_13UnicodeStringERNS1_23DecimalFormatPropertiesENS1_14IgnoreRoundingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifier19formatTwoArgPatternERKNS_15SimpleFormatterERNS_22FormattedStringBuilderEiPiS8_hR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2ERKNS_15SimpleFormatterEhbNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SimpleModifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper10doCopyFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper10doMoveFromEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper5setToEPKNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper5setToERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapper9doCleanupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperC2EOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperC2ERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperaSEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl14SymbolsWrapperaSERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15CurrencySymbolsC2ENS_12CurrencyUnitERKNS_6LocaleERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10_setToLongEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10multiplyByERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity10shiftRightEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11appendDigitEaib);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11copyBcdFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11moveBcdFromERS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11popFromLeftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setDigitPosEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setToDecNumERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity11setToDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12_setToDecNumERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12readIntToBcdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity12setBcdToZeroEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13readLongToBcdEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13roundToNickelEi25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13setMinIntegerEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity13switchStorageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14copyFieldsFromERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14ensureCapacityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14setMinFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity14setToDecNumberENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15adjustMagnitudeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15applyMaxIntegerEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity15roundToInfinityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16_setToDoubleFastEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToIncrementEd25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity16roundToMagnitudeEi25UNumberFormatRoundingModebR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity18readDecNumberToBcdERKNS1_6DecNumE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity23convertToAccurateDoubleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity25readDoubleConversionToBcdEPKcii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity6negateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity7compactEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8divideByERKNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8setToIntEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity8truncateEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9_setToIntEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9setToLongEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantity9shiftLeftEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2EOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2ERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityaSEOS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl15DecimalQuantityaSERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo11ParserState4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo11ParserState4peekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo12consumeAffixERNS1_9EndpointsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo13consumeFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumeLiteralER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumePaddingE24UNumberFormatPadPositionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo14consumePatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo15consumeExponentER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo17consumeSubpatternER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo20consumeIntegerFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo21consumeFractionFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl17ParsedPatternInfo22getLengthFromEndpointsERKNS1_9EndpointsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils16convertLocalizedERKNS_13UnicodeStringERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils19escapePaddingStringENS_13UnicodeStringERS3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils23ignoreRoundingIncrementEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils25propertiesToPatternStringERKNS1_23DecimalFormatPropertiesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18PatternStringUtils26patternInfoToStringBuilderERKNS1_20AffixPatternProviderEbNS1_6SignumE18UNumberSignDisplayNS_14StandardPlural4FormEbRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18ScientificModifier3setEiPKNS1_17ScientificHandlerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl18ScientificModifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl19MicroPropsGeneratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl19MicroPropsGeneratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl20AffixPatternProviderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl20AffixPatternProviderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl21AdoptingModifierStoreD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl21AdoptingModifierStoreD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier10addToChainEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier10setSymbolsEPKNS_20DecimalFormatSymbolsEPKNS1_15CurrencySymbolsE16UNumberUnitWidthPKNS_11PluralRulesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12insertPrefixERNS_22FormattedStringBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12insertSuffixERNS_22FormattedStringBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier12prepareAffixEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier14setPatternInfoEPKNS1_20AffixPatternProviderEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier15createImmutableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier19setNumberPropertiesENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier20setPatternAttributesE18UNumberSignDisplayb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier22createConstantModifierER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifier23createImmutableAndChainEPKNS1_19MicroPropsGeneratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl22MutablePatternModifierC2Eb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatProperties10getDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatProperties5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23DecimalFormatPropertiesC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl23MultiplierFormatHandler11setAndChainERKNS0_5ScaleEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl24ImmutablePatternModifierC2EPNS1_21AdoptingModifierStoreEPKNS_11PluralRulesEPKNS1_19MicroPropsGeneratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier13getUnicodeSetERKNS_20DecimalFormatSymbolsENS2_9EPositionENS2_6EAffixER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier15getInsertStringERKNS_20DecimalFormatSymbolsENS2_6EAffixER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier20applyCurrencySpacingERNS_22FormattedStringBuilderEiiiiRKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifier25applyCurrencySpacingAffixERNS_22FormattedStringBuilderEiNS2_6EAffixERKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl30CurrencySpacingEnabledModifierC2ERKNS_22FormattedStringBuilderES5_bbRKNS_20DecimalFormatSymbolsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormat16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatC2ERKNS0_24LocalizedNumberFormatterERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl32LocalizedNumberFormatterAsFormatD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum10multiplyByERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEPKhiibR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum5setToEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum6_setToEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum8divideByERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNum9normalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNumC2ERKS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6DecNumC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder10codePointsEii24UNumberFormatPadPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6Padder4noneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6PadderC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl6PadderC2Eii24UNumberFormatPadPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper11forStrategyE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper13forPropertiesERKNS1_23DecimalFormatPropertiesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl7Grouper13setLocaleDataERKNS1_17ParsedPatternInfoERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8Modifier10ParametersC2EPKNS1_13ModifierStoreENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8Modifier10ParametersC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8ModifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number4impl8ModifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale10powerOfTenEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale21byDoubleAndPowerOfTenEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale4noneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale8byDoubleEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5Scale9byDecimalENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleC2EiPNS0_4impl6DecNumE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number5ScaleaSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation10scientificEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation11compactLongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation11engineeringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation12compactShortEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number8Notation6simpleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision11maxFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision11minFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision13fixedFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision14minMaxFractionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision17constructCurrencyE14UCurrencyUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision17constructFractionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision18constructIncrementEdi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20constructSignificantEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20maxSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision20minSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision22fixedSignificantDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision23minMaxSignificantDigitsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision28constructFractionSignificantERKNS0_17FractionPrecisionEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision7integerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision8currencyE14UCurrencyUsage);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision9incrementEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_666number9Precision9unlimitedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667Measure16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2ERKNS_11FormattableEPNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_667MeasureaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10setLenientEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10updateTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar10weekNumberEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11computeTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11getLocalDOWEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11internalSetENS0_11EDateFieldsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11setTimeZoneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar11setWeekDataERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar12makeInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13adoptTimeZoneEPNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13computeFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13resolveFieldsEPA12_A8_Ki);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar13validateFieldE19UCalendarDateFieldsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceEPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14createInstanceERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14orphanTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14setRelatedYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar14validateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15fieldDifferenceEd19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15fieldDifferenceEdNS0_11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar15setTimeInMillisEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16computeJulianDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16prepareGetActualE19UCalendarDateFieldsaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar16recalculateStampEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17computeWeekFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17computeZoneOffsetEddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar17setFirstDayOfWeekE19UCalendarDaysOfWeek);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar18computeMillisInDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar19handleComputeFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar20getDefaultDayInMonthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar20julianDayToDayOfWeekEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar21getDefaultMonthInYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar22computeGregorianFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar22handleComputeJulianDayE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar24setSkippedWallTimeOptionE23UCalendarWallTimeOption);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25getCalendarTypeFromLocaleERKNS_6LocaleEPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25setMinimalDaysInFirstWeekEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar25setRepeatedWallTimeOptionE23UCalendarWallTimeOption);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar28computeGregorianAndDOWFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar35handleGetExtendedYearFromWeekFieldsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3addE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3addENS0_11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setE19UCalendarDateFieldsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar3setEiiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar4rollE19UCalendarDateFieldsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar4rollENS0_11EDateFieldsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar5clearE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar6getNowEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar8completeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Calendar8pinFieldE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2EPNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ERKNS_8TimeZoneERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendarD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CalendaraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator10setLocalesERKNS_6LocaleES3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator11getKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator11setStrengthENS0_18ECollationStrengthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator12makeInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator14setMaxVariableE15UColReorderCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator15registerFactoryEPNS_15CollatorFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator15setReorderCodesEPKiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator16getKeywordValuesEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator16registerInstanceEPS0_RKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator23getFunctionalEquivalentEPKcRKNS_6LocaleERaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator25getEquivalentReorderCodesEiPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator25getKeywordValuesForLocaleEPKcRKNS_6LocaleEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668Collator8getBoundEPKhi13UColBoundModejPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2E18UColAttributeValue18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668CollatorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRules14createInstanceEPKcaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRules14initCurrentEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRulesC2ERNS_11LocalMemoryIiEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668EraRulesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnit14createInstanceENS0_15UTimeUnitFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnit16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitC2ENS0_15UTimeUnitFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeUnitaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone10getUnknownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone10setDefaultERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone11getCustomIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone12adoptDefaultEPS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone12getWindowsIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone13createDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone13parseCustomIDERKNS_13UnicodeStringERiS4_S4_S4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14createTimeZoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14formatCustomIDEiiiaRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone15getEquivalentIDERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16dereferOlsonLinkERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone16getTZDataVersionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17createEnumerationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone17getIDForWindowsIDERKNS_13UnicodeStringEPKcRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone18countEquivalentIDsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone18detectHostTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone20createCustomTimeZoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone27createTimeZoneIDEnumerationE19USystemTimeZoneTypePKcPKiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone6findIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone6getGMTEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone8loadRuleEPK15UResourceBundleRKNS_13UnicodeStringEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringEPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZone9getRegionERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668TimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta10getShortIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta10getShortIDERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta13getMetazoneIDERKNS_13UnicodeStringEdRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14findMetaZoneIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14findTimeZoneIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta14formatCustomIDEhhhaRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta18getCanonicalCLDRIDERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getCanonicalCountryERKNS_13UnicodeStringERS1_Pa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getMetazoneMappingsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta19getZoneIdByMetazoneERKNS_13UnicodeStringES3_RS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta20createCustomTimeZoneEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta22createMetazoneMappingsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta23getAvailableMetazoneIDsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668ZoneMeta23getShortIDFromCanonicalEPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber11postProcessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber12isBetterThanERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber16setCharsConsumedERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumber5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl12ParsedNumberC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl13SymbolMatcherC2ERKNS_13UnicodeStringENS_7unisets3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl14PercentMatcherC2ERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl15PermilleMatcherC2ERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl15PlusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16MinusSignMatcherC2ERKNS_20DecimalFormatSymbolsEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl10addMatcherERNS1_18NumberParseMatcherE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl18createSimpleParserERKNS_6LocaleERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl26createParserFromPropertiesERKNS_6number4impl23DecimalFormatPropertiesERKNS_20DecimalFormatSymbolsEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImpl6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl16NumberParserImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl17IgnorablesMatcherC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18ArraySeriesMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18ArraySeriesMatcherC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18NumberParseMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl18NumberParseMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl19AffixPatternMatcher16fromAffixPatternERKNS_13UnicodeStringERNS1_26AffixTokenMatcherWarehouseEiPbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl19AffixPatternMatcherC2ERNS_15MaybeStackArrayIPKNS1_18NumberParseMatcherELi3EEEiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl23CombinedCurrencyMatcherC2ERKNS_6number4impl15CurrencySymbolsERKNS_20DecimalFormatSymbolsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse10ignorablesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse20nextCodePointMatcherEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse7percentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8currencyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8permilleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse8plusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouse9minusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_668numparse4impl26AffixTokenMatcherWarehouseC2EPKNS1_26AffixTokenMatcherSetupDataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation25incTwoBytePrimaryByOffsetEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation26decTwoBytePrimaryByOneStepEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation27incThreeBytePrimaryByOffsetEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation28decThreeBytePrimaryByOneStepEjai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation30unassignedPrimaryFromCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669Collation32getThreeBytePrimaryForOffsetDataEil);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet12parseScriptsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet19setScriptExtensionsEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet3setE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet5UnionERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet5resetE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet6setAllEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet8resetAllEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet9intersectE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSet9intersectERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669ScriptSetaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone12setRawOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone15createVTimeZoneERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone15setLastModifiedEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone19createVTimeZoneByIDERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone32createVTimeZoneFromBasicTimeZoneERKNS_13BasicTimeZoneER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone4loadERNS_9VTZReaderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone5parseER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZone8setTZURLERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZN6icu_669VTimeZoneaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610CECalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11getCalendarEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat15getNumberFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat17isCalendarLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat19getBooleanAttributeE27UDateFormatBooleanAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormat9isLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610DateFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6610GenderInfo13getListGenderEPK7UGenderiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable23populateDecimalQuantityERNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable7getLongER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getArrayERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable8getInt64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getDoubleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getObjectEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9getStringERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611Formattable9isNumericEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611FormattableeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit10getSubtypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit8getIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUnit9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611MeasureUniteqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules11getKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules15getKeywordOtherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules15rulesForKeywordERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectERKNS_13IFixedDecimalE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectERKNS_6number15FormattedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules6selectEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRules9isKeywordERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611PluralRuleseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap12getChildNodeEPNS_13CharacterNodeEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap6searchEPNS_13CharacterNodeERKNS_13UnicodeStringEiiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap6searchERKNS_13UnicodeStringEiPNS_30TextTrieMapSearchResultHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6611TextTrieMap7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat10getFormatsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat11getClosuresERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat9getLimitsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612ChoiceFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey9compareToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKey9compareToERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CollationKeyeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CurrencyUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612CurrencyUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule12getRuleMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule15getDateRuleTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule15getTimeRuleTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule16getRuleDayOfWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule17getRuleDayOfMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule18getRuleMillisInDayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule18getRuleWeekInMonthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRuleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612DateTimeRuleneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal10isInfiniteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal15hasIntegerValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal15isNanOrInfinityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal16getPluralOperandENS_13PluralOperandE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal28getVisibleFractionDigitCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612FixedDecimal5isNaNEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat10getContextE19UDisplayContextTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat11getCurrencyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat14isGroupingUsedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat20getEffectiveCurrencyEPDsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat23getMaximumIntegerDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat23getMinimumIntegerDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat24getMaximumFractionDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat24getMinimumFractionDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612NumberFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat21PluralSelectorAdapter6selectEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatERKNS_11FormattableEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormat9parseTypeERKNS_13UnicodeStringEPKNS_6NFRuleERNS_11FormattableERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612PluralFormatneERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher10groupCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher10requireEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11appendGroupEiP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11regionEnd64Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher11regionStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher12getTimeLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher13getStackLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher13regionStart64Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher18hasAnchoringBoundsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher20hasTransparentBoundsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher3endER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher3endEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5end64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5end64EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEP5UTextRlR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEiP5UTextRlR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5groupEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5inputEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5startER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher5startEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher6hitEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7patternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7start64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher7start64EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher8getInputEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher9inputTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexMatcher9regionEndEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern11dumpPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern11patternTextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern19groupNumberFromNameEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern19groupNumberFromNameERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5flagsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5splitEP5UTextPS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern5splitERKNS_13UnicodeStringEPS1_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern6dumpOpEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7matcherER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7matcherERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPattern7patternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612RegexPatterneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormat6formatERKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612SelectFormatneERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch10getPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearch9safeCloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612StringSearcheqERKNS_14SearchIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule14isEquivalentToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRule7getNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRuleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6612TimeZoneRuleneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone18getSimpleRulesNearEdRPNS_19InitialTimeZoneRuleERPNS_18AnnualTimeZoneRuleES6_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone21getTimeZoneRulesAfterEdRPNS_19InitialTimeZoneRuleERPNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613BasicTimeZone24hasEquivalentTransitionsERKS0_ddaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData11getSingleCEEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData12getFinalCE32Ej);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData14getScriptIndexEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData15getIndirectCE32Ej);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17addLowScriptRangeEPhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17makeReorderRangesEPKiiRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData17makeReorderRangesEPKiiaRNS_9UVector32ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData18addHighScriptRangeEPhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData18getGroupForPrimaryEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData20getEquivalentScriptsEiPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData22getLastPrimaryForGroupEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613CollationData23getFirstPrimaryForGroupEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat12getAttributeE22UNumberFormatAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat13getMultiplierEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat14getFormatWidthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat14getPadPositionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15fastFormatInt64ElRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15getGroupingSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat16fastFormatDoubleEdRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat16getCurrencyUsageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17doFastFormatInt32EibRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getCurrencyParserER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getNegativePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getNegativeSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getPositivePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17getPositiveSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17isParseNoExponentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17isSignAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat17toNumberFormatterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat18getMultiplierScaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat18toLocalizedPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20getRoundingIncrementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20isParseCaseSensitiveEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat20isScientificNotationEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat21getCurrencyPluralInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat21getPadCharacterStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23formatToDecimalQuantityERKNS_11FormattableERNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23formatToDecimalQuantityEdRNS_6number4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24areSignificantDigitsUsedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getMinimumExponentDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getMinimumGroupingDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat24getSecondaryGroupingSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat25isExponentSignAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat27getMaximumSignificantDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat27getMinimumSignificantDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat29isDecimalPatternMatchRequiredEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat29isDecimalSeparatorAlwaysShownEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat31isFormatFailIfMoreThanMaxDigitsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatENS_11StringPieceERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat9getParserER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613DecimalFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FieldPosition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FieldPosition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613FormattedList8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter20formatStringsToValueEPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_PNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter6formatEPKNS_13UnicodeStringEiRS1_iRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613ListFormatter7format_EPKNS_13UnicodeStringEiRS1_iRiPNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat11getLocaleIDER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat13formatMeasureERKNS_7MeasureERKNS_12NumberFormatERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat13formatNumericEPKNS_11FormattableEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat14formatMeasuresEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat14getPluralRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat18getUnitDisplayNameERKNS_11MeasureUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat20formatMeasurePerUnitERKNS_7MeasureERKNS_11MeasureUnitERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat23formatMeasuresSlowTrackEPKNS_7MeasureEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat23getNumberFormatInternalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat25getCurrencyFormatInternalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormat9getLocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MeasureFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat10getFormatsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11DummyFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat14updateMetaDataERNS_17AppendableWrapperEiPNS_13FieldPositionEPKNS_11FormattableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat15getArgTypeCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat18getCachedFormatterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat18usesNamedArgumentsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat19createIntegerFormatERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat19findOtherSubMessageEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20getArgFromListByNameEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20getDefaultDateFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat20nextTopLevelArgStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat22PluralSelectorProvider6selectEPvdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat22getDefaultNumberFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat23formatComplexSubMessageEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat24findFirstPluralNumberArgEiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat33getLiteralStringUntilNextArgumentEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERNS_13ParsePositionERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseERKNS_13UnicodeStringERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat5parseEiRKNS_13UnicodeStringERNS_13ParsePositionERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEPKNS_13UnicodeStringEiRS4_PNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_11FormattableEiRNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEPKNS_13UnicodeStringEPKNS_11FormattableEiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat6formatEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperEPNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613MessageFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone19getHistoricalOffsetEdaiiRiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone20checkTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone23transitionTimeInSecondsEs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613OlsonTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment10startsWithEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment11codePointAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment12getCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment19toTempUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment6charAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegment9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613StringSegmenteqERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames14getDisplayNameERKNS_13UnicodeStringE17UTimeZoneNameTypedRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames15getDisplayNamesERKNS_13UnicodeStringEPK17UTimeZoneNameTypeidPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection13getNameTypeAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getMetaZoneIDAtEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection15getTimeZoneIDAtEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection16getMatchLengthAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames19MatchInfoCollection4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6613TimeZoneNames23getExemplarLocationNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614CurrencyAmount17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614CurrencyAmount5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614HebrewCalendar8yearTypeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614IndianCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_14SharedCalendarEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_17SharedPluralRulesEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_18DateFmtBestPatternEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_18SharedNumberFormatEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_19CollationCacheEntryEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_22MeasureFormatCacheDataEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_23SharedDateFormatSymbolsEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614LocaleCacheKeyINS_25RelativeDateTimeCacheDataEE12createObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator12getAttributeE16USearchAttribute);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator14getMatchedTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator15getMatchedStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator16getBreakIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator16getMatchedLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIterator7getTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SearchIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone20checkTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZone9getOffsetEhiiihiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614SimpleTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount11getTimeUnitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount16getTimeUnitFieldEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmount5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitAmounteqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeUnitFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat11parseZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13formatGenericERKNS_8TimeZoneEidRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13getGMTPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat13getTimeZoneIDEPKNS_13TimeZoneNames19MatchInfoCollectionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat14formatSpecificERKNS_8TimeZoneE17UTimeZoneNameTypeS4_dRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16getGMTZeroFormatERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16getTimeZoneNamesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat16parseShortZoneIDERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat17parseOffsetFieldsERKNS_13UnicodeStringEiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18appendOffsetDigitsERNS_13UnicodeStringEih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18getGMTOffsetDigitsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat18parseOffsetISO8601ERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat19formatOffsetISO8601EiaaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat19getGMTOffsetPatternE35UTimeZoneFormatGMTOffsetPatternTypeRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat20getTZDBTimeZoneNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat21parseExemplarLocationERKNS_13UnicodeStringERNS_13ParsePositionERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat22formatExemplarLocationERKNS_8TimeZoneERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat22getDefaultParseOptionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23createTimeZoneForOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23getTimeZoneGenericNamesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat23parseOffsetLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionEaPa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetISO8601BasicEiaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24formatOffsetLocalizedGMTEiaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat24parseDefaultOffsetFieldsERKNS_13UnicodeStringEiDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat25parseAbuttingOffsetFieldsERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat25parseSingleLocalizedDigitERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat27formatOffsetISO8601ExtendedEiaaaRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat28parseOffsetFieldsWithPatternERKNS_13UnicodeStringEiPNS_7UVectorEaRiS6_S6_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat28parseOffsetShortLocalizedGMTERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat29formatOffsetShortLocalizedGMTEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat30parseOffsetDefaultLocalizedGMTERKNS_13UnicodeStringEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat30parseOffsetLocalizedGMTPatternERKNS_13UnicodeStringEiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat35parseOffsetFieldWithLocalizedDigitsERKNS_13UnicodeStringEihhttRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat5parseE20UTimeZoneFormatStyleRKNS_13UnicodeStringERNS_13ParsePositionEiP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat6formatE20UTimeZoneFormatStyleRKNS_8TimeZoneEdRNS_13UnicodeStringEP23UTimeZoneFormatTimeType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614TimeZoneFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator10getElementEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator12getSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator12getTargetSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13countElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13createInverseER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositionRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableER14UTransPositioniR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator13transliterateERNS_11ReplaceableEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator14_transliterateERNS_11ReplaceableER14UTransPositionPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator18handleGetSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositiona);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21filteredTransliterateERNS_11ReplaceableER14UTransPositionaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator21finishTransliterationERNS_11ReplaceableER14UTransPosition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator5getIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator7toRulesERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6614Transliterator9getFilterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex10initLabelsERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex13getRecordDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex13getRecordNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex14getBucketIndexERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14ImmutableIndex9getBucketEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getBucketIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getBucketLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex14getInflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16createBucketListER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16getMaxLabelCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex16getOverflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex17getUnderflowLabelEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex18getBucketLabelTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndex20getBucketRecordCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndexeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615AlphabeticIndexneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar11newMoonNearEda);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar12daysToMillisEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar12millisToDaysEd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14majorSolarTermEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar14winterSolsticeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar18isLeapMonthBetweenEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar19hasNoMajorSolarTermEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar20synodicMonthsBetweenEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23getFieldResolutionTableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar26getChineseCalZoneAstroCalcEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar30internalGetDefaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar34internalGetDefaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615ChineseCalendar7newYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615CollatorFactory7visibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar10monthStartEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar14trueMonthStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615IslamicCalendar9yearStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem13isAlgorithmicEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem14getDescriptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem7getNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6615NumberingSystem8getRadixEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder12ignorePrefixERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder12ignoreStringERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder14findCommonNodeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder24mergeCompositeIntoStringERKNS_13UnicodeStringEiiS3_RS1_S4_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationBuilder5isFCDERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights13lengthenRangeERNS0_11WeightRangeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights17incWeightByOffsetEjii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616CollationWeights9incWeightEji);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo15getBestSkeletonERKNS_13UnicodeStringERa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo15getDefaultOrderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo18getIntervalPatternERKNS_13UnicodeStringE19UCalendarDateFieldsRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo26getFallbackIntervalPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfo5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616DateIntervalInfoeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat11countDigitsERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat11matchStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iS5_RNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat14checkIntSuffixERKNS_13UnicodeStringEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat15getSmpFmtLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat15skipUWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17getTimeZoneFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat17zeroPaddingNumberEPKNS_12NumberFormatERNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18compareSimpleAffixERKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18isFieldUnitIgnoredE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18matchQuarterStringERKNS_13UnicodeStringEi19UCalendarDateFieldsPS2_iRNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat18toLocalizedPatternERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat20getDateFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat21matchDayPeriodStringsERKNS_13UnicodeStringEiPS2_iRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat21skipPatternWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat22getNumberFormatByIndexE16UDateFormatField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat23getNumberFormatForFieldEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat5parseERKNS_13UnicodeStringERNS_8CalendarERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat6formatERNS_8CalendarERNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat7_formatERNS_8CalendarERNS_13UnicodeStringERNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionEaPKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8parseIntERKNS_13UnicodeStringERNS_11FormattableEiRNS_13ParsePositionEaPKNS_12NumberFormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8subParseERKNS_13UnicodeStringERiDsiaaPaS4_RNS_8CalendarEiPNS_13MessageFormatEP23UTimeZoneFormatTimeTypePi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat8tzFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat9subFormatERNS_13UnicodeStringEDsi15UDisplayContextiRNS_20FieldPositionHandlerERNS_8CalendarER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormat9toPatternERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6616SimpleDateFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIterator11getDataCE32Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIterator25forbidSurrogateCodePointsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettings8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettings9reorderExEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617CollationSettingseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getEraNamesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getQuartersERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getWeekdaysERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols11getWeekdaysERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols12getYearNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols13getNarrowErasERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getAmPmStringsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getShortMonthsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getZodiacNamesERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols14getZoneStringsERiS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols16getShortWeekdaysERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols20getLeapMonthPatternsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols20getLocalPatternCharsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols22getTimeSeparatorStringERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols7getErasERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getMonthsERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbols9getMonthsERiNS0_13DtContextTypeENS0_11DtWidthTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617DateFormatSymbolseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10isLeapYearEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10yearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar10yearLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11boundsCheckEi19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11monthLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar11monthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14handleGetLimitE19UCalendarDateFieldsNS_8Calendar10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14inDaylightTimeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14internalGetEraEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14isEquivalentToERKNS_8CalendarE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar14validateFieldsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar16getActualMinimumENS_8Calendar11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar18getGregorianChangeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar18haveDefaultCenturyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar19defaultCenturyStartEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar23defaultCenturyStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar23handleComputeMonthStartEiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617GregorianCalendar7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter12getByVariantEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter6formatERKNS_11FormattableERKNS_12NumberFormatERKNS_11PluralRulesERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617QuantityFormatter7isValidEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getSortKeyEPKDsiPhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getSortKeyERKNS_13UnicodeStringEPhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator10getVersionEPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator11cloneBinaryEPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator12getAttributeE13UColAttributeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator12writeSortKeyEPKDsiRNS_15SortKeyByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator13cloneRuleDataERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getMaxVariableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getTailoredSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14getVariableTopER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator14internalGetCEsERKNS_13UnicodeStringERNS_9UVector64ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getCollationKeyEPKDsiRNS_12CollationKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getCollationKeyERKNS_13UnicodeStringERNS_12CollationKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getMaxExpansionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator15getReorderCodesEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator17initMaxExpansionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator18getDefaultSettingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19internalGetLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19setFastLatinOptionsERNS_17CollationSettingsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator19writeIdenticalLevelEPKDsS2_RNS_15SortKeyByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator23internalAddContractionsEiRNS_10UnicodeSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator30createCollationElementIteratorERKNS_17CharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator36internalGetContractionsAndExpansionsEPNS_10UnicodeSetES2_aR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareEPKDsiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareER13UCharIteratorS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator7compareERKNS_13UnicodeStringES3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8getRulesE14UColRuleOptionRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator8isUnsafeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9doCompareEPKDsiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9doCompareEPKhiS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedCollatoreqERKNS_8CollatorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone13completeConstER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone13getLocalDeltaEiiiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone15findRuleInFinalEdaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getOffsetInternalEdaiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone17getTransitionTimeEPNS_10TransitionEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone18getOffsetFromLocalEdiiRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone8findNextEdaRdRPNS_12TimeZoneRuleES4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone8findPrevEdaRdRPNS_12TimeZoneRuleES4_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6617RuleBasedTimeZoneneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule10getEndYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule12getStartYearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule14getStartInYearEiiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRule7getRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618AnnualTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer10Equatorial8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer7Horizon8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CalendarAstronomer8Ecliptic8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CollationTailoring13getUCAVersionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo14getPluralRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo24getCurrencyPluralPatternERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfo9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618CurrencyPluralInfoeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat10formatImplERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13formatToValueERKNS_12DateIntervalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13formatToValueERNS_8CalendarES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat13getDateFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat14fallbackFormatERNS_8CalendarES2_aRNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat18formatIntervalImplERKNS_12DateIntervalERNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat19fallbackFormatRangeERNS_8CalendarES2_RNS_13UnicodeStringERaRNS_20FieldPositionHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat19getDateIntervalInfoEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatEPKNS_12DateIntervalERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormat6formatERNS_8CalendarES2_RNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618DateIntervalFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition5getToEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition7getFromEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransition7getTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransitioneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6618TimeZoneTransitionneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser11skipCommentEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser14skipWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619CollationRuleParser9readWordsEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6619InitialTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder10isAssignedEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder11getSingleCEEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder21getCE32FromOffsetCE32Eaij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder22isCompressibleLeadByteEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CollationDataBuilder24getLongPrimaryIfSingleCEEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat13parseCurrencyERKNS_13UnicodeStringERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620CompactDecimalFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols28getPatternForCurrencySpacingE16UCurrencySpacingaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbols9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620DecimalFormatSymbolseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames13findBestMatchERKNS_13UnicodeStringEijRS1_R23UTimeZoneFormatTimeTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames14getDisplayNameERKNS_8TimeZoneE24UTimeZoneGenericNameTypedRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames22getGenericLocationNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNames5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6620TimeZoneGenericNameseqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements11findPrimaryEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements15getPrimaryAfterEjia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements16getPrimaryBeforeEja);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements16getTertiaryAfterEijj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements17getSecondaryAfterEij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements17getTertiaryBeforeEjjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements18getSecondaryBeforeEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements23lastCEWithPrimaryBeforeEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements24getFirstSecTerForPrimaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements25firstCEWithPrimaryAtLeastEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621CollationRootElements5findPEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FieldPositionIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621FormattedDateInterval8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat11findRuleSetERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat11getCollatorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat14getRuleSetNameEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat15getRoundingModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat17getDefaultNaNRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat18createPluralFormatE11UPluralTypeRKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat21getDefaultRuleSetNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat22getDefaultInfinityRuleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat23getNumberOfRuleSetNamesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat27getRuleSetDisplayNameLocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat30adjustForCapitalizationContextEiRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat36getNumberOfRuleSetDisplayNameLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat5parseERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatERKNS_6number4impl15DecimalQuantityERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEdRNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEiRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatEiRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatElPNS_9NFRuleSetERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatElRKNS_13UnicodeStringERS1_RNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat6formatElRNS_13UnicodeStringERNS_13FieldPositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormat8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621RuleBasedNumberFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule11getTimeTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule12getNextStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule13getFinalStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule13getFirstStartEiiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule14getStartTimeAtEiRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule14isEquivalentToERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule15countStartTimesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule16getPreviousStartEdiiaRd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRule6getUTCEdii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRuleeqERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621TimeArrayTimeZoneRuleneERKNS_12TimeZoneRuleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621UTF8CollationIterator25forbidSurrogateCodePointsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6621UTF8CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator12getTargetSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator17getTransliteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator18handleGetSourceSetERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator19handleTransliterateERNS_11ReplaceableER14UTransPositiona);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator7toRulesERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622CompoundTransliterator8getCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder11codePointAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13containsFieldEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13contentEqualsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder13toDebugStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder14codePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder15codePointBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder16getLastCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder17getFirstCodePointEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder19toTempUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder5charsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622FormattedStringBuilder6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UIterCollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UTF16CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6622UTF16CollationIteratoreqERKNS_17CollationIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator13strengthOrderEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator15getMaxExpansionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIteratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624CollationElementIteratorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624ConstrainedFieldPosition12matchesFieldEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator10getDecimalEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator12getSkeletonsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator15getTopBitNumberEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator15isCanonicalItemERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator16getBaseSkeletonsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getAppendItemNameE21UDateTimePatternField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getDateTimeFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator19getAppendItemFormatE21UDateTimePatternField);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator19getFieldDisplayNameE21UDateTimePatternField23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator20isAvailableFormatSetERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator21getAppendFormatNumberEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator21getPatternForSkeletonERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator23getFieldAndWidthIndicesEPKcP23UDateTimePGDisplayWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGenerator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGeneratoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624DateTimePatternGeneratorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator11nextHasLcccEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator15previousHasTcccEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6624FCDUTF8CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder11inSameGroupEjj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder12encodeTwoCEsEll);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625CollationFastLatinBuilder9getMiniCEEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUIterCollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUTF16CollationIterator9getOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FCDUTF16CollationIteratoreqERKNS_17CollationIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625FormattedRelativeDateTime8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter10formatImplEd14UDateDirection17UDateRelativeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatNumericEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueE14UDateDirection17UDateAbsoluteUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd14UDateDirection17UDateRelativeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter13formatToValueEd21URelativeDateTimeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter14getFormatStyleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter15getNumberFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter16adjustForContextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter17formatNumericImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18combineDateAndTimeERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18formatAbsoluteImplE14UDateDirection17UDateAbsoluteUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter18formatRelativeImplEd21URelativeDateTimeUnitRNS_29FormattedRelativeDateTimeDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter20formatNumericToValueEd21URelativeDateTimeUnitR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter23checkNoAdjustForContextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter24getCapitalizationContextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatE14UDateDirection17UDateAbsoluteUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatEd14UDateDirection17UDateRelativeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625RelativeDateTimeFormatter6formatEd21URelativeDateTimeUnitRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter11MarkupStyle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter11MarkupStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter16SuperscriptStyle6formatERKNS_13UnicodeStringERNS_21FieldPositionIteratorES4_RS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625ScientificNumberFormatter6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625SimpleNumberFormatFactory15getSupportedIDsERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6625SimpleNumberFormatFactory7visibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl16nextPositionImplERNS_24ConstrainedFieldPositionEhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl20getAllFieldPositionsERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl8trimBackEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6631FormattedValueStringBuilderImpl9trimFrontEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_6633PluralAvailableLocalesEnumeration5countER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format11parseObjectERKNS_13UnicodeStringERNS_11FormattableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format6formatERKNS_11FormattableERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Format9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666FormateqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666NoUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666NoUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region13getRegionCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region14getNumericCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region18getPreferredValuesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainedRegionsE11URegionTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainedRegionsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainingRegionE11URegionType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region19getContainingRegionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666Region8containsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666RegioneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666RegionneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number12IntegerWidth5applyERNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number12IntegerWidtheqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber15toDecimalNumberERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber18getDecimalQuantityERNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number15FormattedNumber8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17CurrencyPrecision12withCurrencyERKNS_12CurrencyUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17FractionPrecision13withMaxDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number17FractionPrecision13withMinDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18IncrementPrecision15withMinFractionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18ScientificNotation21withMinExponentDigitsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number18ScientificNotation23withExponentSignDisplayE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange12nextPositionERNS_24ConstrainedFieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange12toTempStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange15getFirstDecimalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange16getSecondDecimalER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange17getIdentityResultER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange17nextFieldPositionERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange20getAllFieldPositionsERNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange24getAllFieldPositionsImplERNS_28FieldPositionIteratorHandlerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange8appendToERNS_10AppendableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number20FormattedNumberRange8toStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE10toSkeletonER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter10formatImplEPNS0_4impl20UFormattedNumberDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter11getCompiledEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12formatDoubleEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12getAffixImplEbbRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter12getCallCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter13formatDecimalENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter15computeCompiledER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter21formatDecimalQuantityERKNS0_4impl15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter8toFormatER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number24LocalizedNumberFormatter9formatIntElR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter10formatImplERNS0_4impl25UFormattedNumberRangeDataEbR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter12getFormatterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number29LocalizedNumberRangeFormatter22formatFormattableRangeERKNS_11FormattableES4_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier20formatAsPrefixSuffixERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SimpleModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper17isNumberingSystemEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper18getNumberingSystemEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper22isDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl14SymbolsWrapper23getDecimalFormatSymbolsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols10getIsoCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols10loadSymbolE14UCurrNameStyleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols13getPluralNameENS_14StandardPlural4FormER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols17getCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols21getIntlCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15CurrencySymbols23getNarrowCurrencySymbolER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10fitsInLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10isInfiniteEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity10isNegativeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity11checkHealthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity11getDigitPosEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity12getMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity13fractionCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity13toPlainStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity14toFractionLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity15hasIntegerValueEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity16getPluralOperandENS_13PluralOperandE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity18toScientificStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity22getPositionFingerprintEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity24getLowerDisplayMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity24getUpperDisplayMagnitudeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity33fractionCountWithoutTrailingZerosEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity5isNaNEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity6signumEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity6toLongEb);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8getDigitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toDecNumERNS1_6DecNumER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toDoubleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantity9isZeroishEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl15DecimalQuantityeqERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo12getEndpointsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo15hasCurrencySignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo18containsSymbolTypeENS1_16AffixPatternTypeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo19positiveHasPlusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo20negativeHasMinusSignEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo21hasNegativeSubpatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo6charAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo6lengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo7hasBodyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl17ParsedPatternInfo9getStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl18ScientificModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl21ConstantAffixModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier12needsPluralsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier15toUnicodeStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23DecimalFormatProperties29equalsDefaultExceptFastFormatEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23DecimalFormatProperties7_equalsERKS2_b);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl23MultiplierFormatHandler15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier11getModifierENS1_6SignumENS_14StandardPlural4FormE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier13applyToMicrosERNS1_10MicroPropsERKNS1_15DecimalQuantityER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl24ImmutablePatternModifier15processQuantityERNS1_15DecimalQuantityERNS1_10MicroPropsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl26ConstantMultiFieldModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl30CurrencySpacingEnabledModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat11parseObjectERKNS_13UnicodeStringERNS_11FormattableERNS_13ParsePositionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat18getNumberFormatterEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringEPNS_21FieldPositionIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormat6formatERKNS_11FormattableERNS_13UnicodeStringERNS_13FieldPositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl32LocalizedNumberFormatterAsFormateqERKNS_6FormatE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum10isNegativeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum6isZeroEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6DecNum8toStringERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl6Padder11padAndApplyERKNS1_8ModifierES5_RNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper10getPrimaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper12getSecondaryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number4impl7Grouper15groupAtPositionEiRKNS1_15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number5Scale17applyReciprocalToERNS0_4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number5Scale7applyToERNS0_4impl15DecimalQuantityE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_666number9Precision12withCurrencyERKNS_12CurrencyUnitER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667Measure17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667Measure5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_667MeasureeqERKNS_7UObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMaximumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMaximumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMinimumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10getMinimumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar10newerFieldE19UCalendarDateFieldsS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11getTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar11newestStampE19UCalendarDateFieldsS1_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar14getRelatedYearER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar14isEquivalentToERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getActualHelperE19UCalendarDateFieldsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getLeastMaximumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getLeastMaximumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar15getTimeInMillisER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMaximumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMinimumE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getActualMinimumENS0_11EDateFieldsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getBasicTimeZoneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar16getDayOfWeekTypeE19UCalendarDaysOfWeekR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar17getFirstDayOfWeekER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar17getFirstDayOfWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar18getGreatestMinimumE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar18getGreatestMinimumENS0_11EDateFieldsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar19handleGetYearLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar20getWeekendTransitionE19UCalendarDaysOfWeekR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar20handleGetMonthLengthEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar23getFieldResolutionTableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar24getSkippedWallTimeOptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar25getMinimalDaysInFirstWeekEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar25getRepeatedWallTimeOptionEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar34getImmediatePreviousZoneTransitionEdPdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar3getE19UCalendarDateFieldsR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar5afterERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar5isSetE19UCalendarDateFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar6beforeERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar6equalsERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar8getLimitE19UCalendarDateFieldsNS0_10ELimitTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isLenientEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isWeekendEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Calendar9isWeekendEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CalendareqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator11compareUTF8ERKNS_11StringPieceES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator11getStrengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14getMaxVariableEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14getTailoredSetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator14greaterOrEqualERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator15getReorderCodesEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator19internalCompareUTF8EPKciS2_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator23internalNextSortKeyPartEP13UCharIteratorPjPhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator32internalGetShortDefinitionStringEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator6equalsERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareEPKDsiS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareER13UCharIteratorS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7compareERKNS_13UnicodeStringES3_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator7greaterERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668Collator9safeCloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CollatoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668CollatorneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules11getEraIndexEiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules12getStartDateEiRA3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668EraRules12getStartYearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit16getTimeUnitFieldEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeUnit5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone12hasSameRulesERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone13getDSTSavingsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone14getDisplayNameEaNS0_12EDisplayTypeERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668TimeZoneeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber10seenNumberEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber19populateFormattableERNS_11FormattableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber7successEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl12ParsedNumber9getDoubleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher11postProcessERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SeriesMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher6getSetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl13SymbolMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl14PercentMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl14PercentMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PermilleMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PermilleMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PlusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl15PlusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16MinusSignMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16MinusSignMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl11parseGreedyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl13getParseFlagsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl21parseLongestRecursiveERNS_13StringSegmentERNS1_12ParsedNumberEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEbRNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl5parseERKNS_13UnicodeStringEibRNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl16NumberParserImpl8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher10isDisabledERKNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher10isFlexibleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher6acceptERNS_13StringSegmentERNS1_12ParsedNumberE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl17IgnorablesMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher3endEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher5beginEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher6lengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl18ArraySeriesMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl19AffixPatternMatcher10getPatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl19AffixPatternMatchereqERKS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher13matchCurrencyERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher5matchERNS_13StringSegmentERNS1_12ParsedNumberER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher8toStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_668numparse4impl23CombinedCurrencyMatcher9smokeTestERKNS_13StringSegmentE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet10intersectsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet10nextSetBitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet12countMembersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet14displayScriptsERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet4testE11UScriptCodeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet8containsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSet8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669ScriptSeteqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone10beginRRULEERNS_9VTZWriterEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11appendUNTILERNS_9VTZWriterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeFooterERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeSimpleEdRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone11writeSimpleEdRNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12endZonePropsERNS_9VTZWriterEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12getRawOffsetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12hasSameRulesERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone12writeHeadersERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14beginZonePropsERNS_9VTZWriterEaRKNS_13UnicodeStringEiidR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14inDaylightTimeEdR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone14writeFinalRuleERNS_9VTZWriterEaPKNS_18AnnualTimeZoneRuleEiidR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone15getLastModifiedERd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone15useDaylightTimeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone16getTimeZoneRulesERPKNS_19InitialTimeZoneRuleEPPKNS_12TimeZoneRuleERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone17getNextTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone19writeZonePropsByDOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone19writeZonePropsByDOWERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone20countTransitionRulesER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone20writeZonePropsByTimeERNS_9VTZWriterEaRKNS_13UnicodeStringEiidaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone21getPreviousTransitionEdaRNS_18TimeZoneTransitionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone27writeZonePropsByDOW_GEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone27writeZonePropsByDOW_LEQ_DOMERNS_9VTZWriterEaRKNS_13UnicodeStringEiiiiiddR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone31writeZonePropsByDOW_GEQ_DOM_subERNS_9VTZWriterEiiiidiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeERNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeEdRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone5writeEdRNS_9VTZWriterER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone8getTZURLERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEdaRiS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEhiiihiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9getOffsetEhiiihiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZone9writeZoneERNS_9VTZWriterERNS_13BasicTimeZoneEPNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZoneeqERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNK6icu_669VTimeZoneneERKNS_8TimeZoneE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNKR6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_24LocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptPerUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12adoptSymbolsEPNS_15NumberingSystemE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12integerWidthERKNS0_12IntegerWidthE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE12roundingModeE25UNumberFormatRoundingMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4signE18UNumberSignDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE4unitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE5scaleERKNS0_5ScaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosEONS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE6macrosERKNS0_4impl10MacroPropsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7decimalE30UNumberDecimalSeparatorDisplay);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7paddingERKNS0_4impl6PadderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7perUnitERKNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE7symbolsERKNS_20DecimalFormatSymbolsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8groupingE23UNumberGroupingStrategy);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE8notationERKNS0_8NotationE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9adoptUnitEPNS_11MeasureUnitE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9precisionERKNS0_9PrecisionE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9thresholdEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number23NumberFormatterSettingsINS0_26UnlocalizedNumberFormatterEE9unitWidthE16UNumberUnitWidth);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number26UnlocalizedNumberFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_29LocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE16identityFallbackE28UNumberRangeIdentityFallback);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE19numberFormatterBothERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE20numberFormatterFirstERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondEONS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE21numberFormatterSecondERKNS0_26UnlocalizedNumberFormatterE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number28NumberRangeFormatterSettingsINS0_31UnlocalizedNumberRangeFormatterEE8collapseE20UNumberRangeCollapse);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZNO6icu_666number31UnlocalizedNumberRangeFormatter6localeERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn16_NK6icu_666number4impl22MutablePatternModifier9getSymbolENS1_16AffixPatternTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_N6icu_6612FixedDecimalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_N6icu_6612FixedDecimalD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier13containsFieldE19UNumberFormatFields);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier13getParametersERNS1_8Modifier10ParametersE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier15getPrefixLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier17getCodePointCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier22semanticallyEquivalentERKNS1_8ModifierE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier5applyERNS_22FormattedStringBuilderEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", _ZThn8_NK6icu_666number4impl22MutablePatternModifier8isStrongEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getFinalStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getFirstStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getNextStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getPreviousStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_isEquivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", izrule_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_formatMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_formatMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_parseMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_parseMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vformatMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vformatMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vparseMessageWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", u_vparseMessage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_add_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clearField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_equivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getCanonicalTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDayOfWeekType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getDefaultTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getFieldDifference_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getGregorianChange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getHostTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getMillis_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getNow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTZDataVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneIDForWindowsID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getTimeZoneTransitionDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getWeekendTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_getWindowsTimeZoneID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_inDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_isSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_isWeekend_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openCountryTimeZones_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openTimeZoneIDEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_openTimeZones_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_roll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDateTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setDefaultTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setGregorianChange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setMillis_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_setTimeZone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucal_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_constrainCategory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_constrainField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getCategory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getIndexes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_getInt64IterationContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_matchesField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_setInt64IterationContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucfpos_setState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_cloneBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_closeElements_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_equal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getBound_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getContractionsAndExpansions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getContractions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getEquivalentReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getFunctionalEquivalent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywordValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getMaxExpansion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getMaxVariable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getRulesEx_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getShortDefinitionString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getSortKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getStrength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getTailoredSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getUCAVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getUnsafeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_greaterOrEqual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_greater_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_keyHashCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_mergeSortkeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_nextSortKeyPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_normalizeShortDefinitionString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openAvailableLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openElements_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openFromShortString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_openRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_prepareShortStringOpen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_primaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_restoreVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_secondaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setMaxVariable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setReorderCodes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setStrength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_setVariableTop_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcollIter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcollUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_strcoll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucol_tertiaryOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_detectAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_detect_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_enableInputFilter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getAllDetectableCharsets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getConfidence_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getDetectableCharsets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_getUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_isInputFilterEnabled_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setDeclaredEncoding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setDetectableCharset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ucsdet_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_adoptNumberFormatForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_adoptNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_applyPatternRelative_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_countSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatCalendarForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_formatForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_get2DigitYearStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getBooleanAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getNumberFormatForField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_getSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_isLenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_parseCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_registerOpener_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_set2DigitYearStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setBooleanAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setCalendar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setLenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setNumberFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_setSymbols_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toCalendarDateField_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPatternRelativeDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPatternRelativeTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udat_unregisterOpener_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_addPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getAppendItemFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getAppendItemName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBaseSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBestPatternWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getBestPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getDateTimeFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getFieldDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getPatternForSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_getSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openBaseSkeletons_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_openSkeletons_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_replaceFieldTypesWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_replaceFieldTypes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setAppendItemFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setAppendItemName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setDateTimeFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udatpg_setDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_formatToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", udtitvfmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufieldpositer_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getArrayItemByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getArrayLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDecNumChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_getUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_isNumeric_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmtval_getString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ufmtval_nextPosition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ugender_getInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ugender_getListGender_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_compareScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_deleteScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_equalsScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uhash_hashScriptSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_formatStringsToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulistfmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getCLDRVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getDelimiter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getExemplarSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getLocaleDisplayPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getLocaleSeparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getMeasurementSystem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getNoSubstitute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_getPaperSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ulocdata_setNoSubstitute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_autoQuoteApostrophe_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_setLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_vformat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", umsg_vparse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDoubleCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDoubleForFields_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_formatUFormattable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getDoubleAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getSymbol_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_getTextAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDoubleCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parseToUFormattable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_parse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setDoubleAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setSymbol_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_setTextAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unum_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatDecimal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatDouble_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_formatInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openForSkeletonAndLocaleWithError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openForSkeletonAndLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultGetAllFieldPositions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultNextFieldPosition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumf_resultToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getDescription_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_getRadix_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_isAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_openAvailableNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_openByName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", unumsys_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_getKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_openForType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_selectFormatted_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_selectWithFormat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uplrules_select_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextClearStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextGetRounding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextGetStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextRestoreStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSaveStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetRounding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusFromStringQuiet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatusQuiet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextSetStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextStatusToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextTestSavedStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextTestStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decContextZeroStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAbs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAdd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberAnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberClassToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareSignal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareTotalMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompareTotal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopyAbs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopyNegate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopySign_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberCopy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberDivideInteger_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberDivide_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberExp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFMA_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberFromUInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberGetBCD_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberInvert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberIsNormal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberIsSubnormal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLog10_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberLogB_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMaxMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMax_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMinMag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMin_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMinus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberMultiply_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextMinus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextPlus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNextToward_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberNormalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberOr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberPlus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberPower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberQuantize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberReduce_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRemainderNear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRemainder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRescale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberRotate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSameQuantum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberScaleB_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSetBCD_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberShift_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSquareRoot_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberSubtract_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToEngString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToIntegralExact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToIntegralValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberToUInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberTrim_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberXor_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_decNumberZero_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uprv_deleteConditionalCE32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendReplacementUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendReplacement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendTailUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_appendTail_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_end64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_end_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_find64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_findNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_find_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_flags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getFindProgressCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getMatchCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getStackLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getTimeLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_getUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupNumberFromCName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupNumberFromName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_groupUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_group_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hasAnchoringBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hasTransparentBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_hitEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_lookingAt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_lookingAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_matches64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_matches_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_openC_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_openUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_patternUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_pattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_refreshUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionEnd64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionStart64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_regionStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceAllUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceFirstUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_replaceFirst_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_requireEnd_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_reset64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setFindProgressCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setMatchCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegion64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegionAndStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setRegion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setStackLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setTimeLimit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_setUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_splitUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_split_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_start64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_start_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_useAnchoringBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregex_useTransparentBounds_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_areEqual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_contains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainedRegionsOfType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainedRegions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainingRegionOfType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getContainingRegion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getPreferredValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionFromCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getRegionFromNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uregion_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_closeResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_combineDateAndTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatNumericToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatNumeric_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_formatToResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_openResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ureldatefmt_resultAsValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_first_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_following_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getMatchedText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_last_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_openFromCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_preceding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_searchBackwards_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_search_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setAttribute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setCollator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", usearch_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusableUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusableUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_areConfusable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2UnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check2_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_checkUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_checkUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_check_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_closeCheckResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getAllowedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultNumerics_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getCheckResultRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getInclusionSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getInclusionUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRecommendedSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRecommendedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getSkeletonUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_getSkeleton_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openCheckResult_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_openFromSource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setAllowedUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setChecks_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_setRestrictionLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", uspoof_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_fromInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_getTimeScaleValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utmscale_toInt64_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_countAvailableIDs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getAvailableID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getSourceSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_getUnicodeID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openIDs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_register_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_setFilter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_stripRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_toRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transIncrementalUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transIncremental_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_transUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_trans_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_unregisterID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", utrans_unregister_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_countTransitionRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getLastModified_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getNextTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset2_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset3_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getPreviousTransition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_getTZURL_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_hasSameRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_inDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_openData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_openID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setLastModified_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_setTZURL_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_useDaylightTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_writeFromStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_writeSimple_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", vzone_write_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getDSTSavings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_getRawOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", zrule_isEquivalentTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_adoptFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_adoptTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getDynamicClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getStaticClassID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_getTo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setFrom_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setTime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicui18n.so", ztrans_setTo_66);
-}
-// clang-format on
diff --git a/overriding/libicuuc/Android.bp b/overriding/libicuuc/Android.bp
deleted file mode 100644
index 39fe42c..0000000
--- a/overriding/libicuuc/Android.bp
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library {
-    defaults: ["native_bridge_stub_library_defaults"],
-    name: "libnative_bridge_guest_libicuuc",
-    overrides: ["libicuuc"],
-    stem: "libicuuc",
-    arch: {
-        arm: {
-            srcs: ["stubs_arm.cc"],
-        },
-        arm64: {
-            srcs: ["stubs_arm64.cc"],
-        },
-    },
-}
diff --git a/overriding/libicuuc/stubs_arm.cc b/overriding/libicuuc/stubs_arm.cc
deleted file mode 100644
index 6748f8d..0000000
--- a/overriding/libicuuc/stubs_arm.cc
+++ /dev/null
@@ -1,4645 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_int64ToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_integerToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_stringToInteger_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_toLowerCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_toUpperCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_ESCAPE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_SKIP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_STOP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_SUBSTITUTE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_ESCAPE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_SKIP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_STOP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_SUBSTITUTE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33uscript_getSampleUnicodeString_6611UScriptCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable12appendStringEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable15appendCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable15getAppendBufferEiiPDsiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable21reserveAppendCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610AppendableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610AppendableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString14appendPathPartENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString14ensureCapacityEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString15getAppendBufferEiiRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString20appendInvariantCharsEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString20appendInvariantCharsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString27ensureEndsWithFileSeparatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString6appendEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString6appendEcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString8copyFromERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString8truncateEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharStringC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharStringaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService11clearCachesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService17clearServiceCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService19createSimpleFactoryEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService21reInitializeFactoriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer10quickCheckERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer11clearBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer11concatenateERKNS_13UnicodeStringES3_RS1_18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer12isNormalizedERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer12setIndexOnlyEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer13nextNormalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer17previousNormalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7composeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setModeE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextENS_14ConstChar16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextERKNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9decomposeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9normalizeERKNS_13UnicodeStringE18UNormalizationModeiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9setOptionEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ENS_14ConstChar16PtrEi18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKNS_13UnicodeStringE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKNS_17CharacterIteratorE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610StringPair6createERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610StringPairC2ERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie10branchNextEPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie15findUniqueValueEPKDsaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie16nextForCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie17firstForCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie19getNextBranchUCharsEPKDsiRNS_10AppendableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie25findUniqueValueFromBranchEPKDsiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie4nextENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator10branchNextEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorC2ENS_14ConstChar16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorC2ERKS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8nextImplEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UStringSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UStringSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10createFromERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10setPatternEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11applyFilterEPFaiPvES1_PKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11exclusiveOrEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11getSingleCPERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11swapBuffersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringERKS1_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERNS_21RuleCharacterIteratorEPKNS_11SymbolTableERNS_13UnicodeStringEjMS0_FRS0_iEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12nextCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13complementAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13complementAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13createFromAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet14releasePatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet15allocateStringsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16removeAllStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16resemblesPatternERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet18applyPropertyAliasERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20applyPropertyPatternERKNS_13UnicodeStringERNS_13ParsePositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20applyPropertyPatternERNS_21RuleCharacterIteratorERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20ensureBufferCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet21applyIntPropertyValueE9UPropertyiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet23applyPatternIgnoreSpaceERKNS_13UnicodeStringERNS_13ParsePositionEPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet24resemblesPropertyPatternERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet24resemblesPropertyPatternERNS_21RuleCharacterIteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3setEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet4_addERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6addAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6addAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet7compactEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet8copyFromERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9closeOverEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9matchRestERKNS_11ReplaceableEiiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9removeAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9retainAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2EPKtiNS0_14ESerializationER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier11addListenerEPKNS_13EventListenerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier13notifyChangedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier14removeListenerEPKNS_13EventListenerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility11parseNumberERKNS_13UnicodeStringERia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendNumberERNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEPKNS_14UnicodeMatcherEaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringERKS1_aaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEiaaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parseIntegerERKNS_13UnicodeStringERii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringERKNS_11ReplaceableEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringEiiS3_Pi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility13isUnprintableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility14skipWhitespaceERKNS_13UnicodeStringERia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility17escapeUnprintableERNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility17parseAsciiIntegerERKNS_13UnicodeStringERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility22parseUnicodeIdentifierERKNS_13UnicodeStringERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility9parseCharERKNS_13UnicodeStringERiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611LocaleBased12setLocaleIDsEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611LocaleBased12setLocaleIDsERKNS_6LocaleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MessageImpl24appendReducedApostrophesERKNS_13UnicodeStringEiiRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MessageImpl33appendSubMessageWithoutSkipSyntaxERKNS_14MessagePatternEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer211getInstanceEPKcS2_19UNormalization2ModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer214getNFCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer214getNFDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer215getNFKCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer215getNFKDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer223getNFKCCasefoldInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer2D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer2D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ReplaceableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ReplaceableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPiece3setEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2ERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2ERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611SymbolTableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611SymbolTableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil12appendChangeEPKhS2_PKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil12appendChangeEiPKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil14appendTwoBytesEiRNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil15appendCodePointEiiRNS_8ByteSinkEPNS_5EditsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil15appendUnchangedEPKhS2_RNS_8ByteSinkEjPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil23appendNonEmptyUnchangedEPKhiRNS_8ByteSinkEjPNS_5EditsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CacheKeyBaseD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CacheKeyBaseD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateInterval16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalC2Edd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps12isIdentifierEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps12isWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipIdentifierEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipWhiteSpaceEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14trimWhiteSpaceEPKDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps20isSyntaxOrWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps8isSyntaxEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ResourceSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ResourceSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SharedObjectD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SharedObjectD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCache11getInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCache17setEvictionPolicyEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator12makeInstanceERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator13buildInstanceERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14createInstanceERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator16registerInstanceEPS0_RKNS_6LocaleE18UBreakIteratorTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator18createLineInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator18createWordInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19createTitleInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator22createSentenceInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator23createCharacterInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2ERKNS_6LocaleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListener16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListenerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListenerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey11parsePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey11parseSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey8fallbackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder10setVariantENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder11setLanguageENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder12setExtensionEcNS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder14setLanguageTagENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder15clearExtensionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder18copyExtensionsFromERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder23setUnicodeLocaleKeywordENS_11StringPieceES1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder25addUnicodeLocaleAttributeENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder28removeUnicodeLocaleAttributeENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder5buildER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setRegionENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setScriptENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder14setFavorSubtagE20ULocMatchFavorSubtag);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder16setDefaultLocaleEPKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder18addSupportedLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder19setSupportedLocalesERNS_6Locale8IteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder21clearSupportedLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder27ensureSupportedLocaleVectorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder27setDemotionPerDesiredLocaleE17ULocMatchDemotion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder33setSupportedLocalesFromListStringENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherC2ERKNS0_7BuilderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcheraSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility12isFallbackOfERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility18initLocaleFromNameERKNS_13UnicodeStringERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility18initNameFromLocaleERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility21canonicalLocaleStringEPKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility23getAvailableLocaleNamesERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePosition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePositionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase10toCategoryEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase10toCategoryERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase15getCategoryNameENS0_8CategoryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ResourceValueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ResourceValueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter7setDataEPKNS_23TransliterationRuleDataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString10padLeadingEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString11padTrailingEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString12fastCopyFromERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString13releaseBufferEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString14copyFieldsFromERS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString14findAndReplaceEiiRKS0_iiS2_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16doCodepageCreateEPKciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16doCodepageCreateEPKciS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString18cloneArrayIfNeededEiiaPPia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString19getTerminatedBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString20handleReplaceBetweenEiiRKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4copyEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4swapERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4trimEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString5setToEPDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString5setToEaNS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString6addRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString6appendEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7caseMapEijPNS_13BreakIteratorEPFiijS2_PDsiPKDsiPNS_5EditsER10UErrorCodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7replaceEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toLowerERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toLowerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toUpperERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toUpperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7unBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8allocateEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8copyFromERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8doAppendEPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8doAppendERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8foldCaseEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8fromUTF8ENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReplaceEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReplaceEiiRKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReverseEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9fromUTF32EPKii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9getBufferEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9removeRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9setCharAtEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9setToUTF8ENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciNS0_10EInvariantE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EaNS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2Eiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern10skipDoubleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern11copyStorageERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern11parseDoubleEiiaP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern12addLimitPartEi23UMessagePatternPartTypeiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern12parseMessageEiii22UMessagePatternArgTypeP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern13isArgTypeCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern13setParseErrorEP11UParseErrori);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14parseArgNumberERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14skipIdentifierEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14skipWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16addArgDoublePartEdiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseChoiceStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseChoiceStyleEiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parsePluralStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseSelectStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseSimpleStyleEiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern20validateArgumentNameERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern22inMessageFormatPatternEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern23inTopLevelChoiceMessageEi22UMessagePatternArgType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern24parsePluralOrSelectStyleE22UMessagePatternArgTypeiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern5parseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern7addPartE23UMessagePatternPartTypeiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isChoiceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isPluralEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isSelectEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8parseArgEiiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8preParseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern9isOrdinalEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern9postParseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2E29UMessagePatternApostropheModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13getNextStringEPPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13getNextStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13resetIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle15getWithFallbackEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle18constructForLocaleERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle7getNextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2EP15UResourceBundleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2EPKcRKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctor16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE12aliasInsteadEPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE13orphanOrCloneEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE17resetToStackArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE6resizeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEaSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEeqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEneERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2Impl4initEPKiPK7UCPTriePKtPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2Impl7combineEPKti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2ImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2ImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListener16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListenerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListenerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter22getTextWithNoArgumentsEPKDsiPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter27applyPatternMinMaxArgumentsERKNS_13UnicodeStringEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter6formatEPKDsiPKPKNS_13UnicodeStringERS3_S5_aPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder10buildBytesE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder12writeDeltaToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder16buildStringPieceE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17BTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17BTLinearMatchNodeC2EPKciPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17writeElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17writeValueAndTypeEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder18writeValueAndFinalEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder3addENS_11StringPieceEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5writeEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5writeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryC2EiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer10previousCCEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12appendZeroCCEPKDsS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12appendZeroCCEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12removeSuffixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12skipPreviousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer19appendSupplementaryEihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer4initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6appendEPKDsiahhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6insertEih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6removeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6resizeEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBufferC2ERKNS_15Normalizer2ImplERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616UnifiedCacheBaseD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616UnifiedCacheBaseD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator11cleanPiecesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator14getEquivalentsERKNS_13UnicodeStringERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator15getEquivalents2EPNS_9HashtableEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator7extractEPNS_9HashtableEiPKDsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator7permuteERNS_13UnicodeStringEaPNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator9getSourceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator9setSourceERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIterator12firstPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIterator14first32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Eiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617ICUServiceFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617ICUServiceFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration19ensureCharsCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration5snextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration5unextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration8setCharsEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder10equalNodesEPKvS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder12registerNodeEPNS0_4NodeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14BranchHeadNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14BranchHeadNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14FinalValueNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14ListBranchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14ListBranchNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15LinearMatchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15SplitBranchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15SplitBranchNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder17makeBranchSubNodeEiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder18registerFinalValueEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder18writeBranchSubNodeEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder20createCompactBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder20deleteCompactBuilderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder21IntermediateValueNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder21IntermediateValueNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder4Node19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder5buildE22UStringTrieBuildOptioniR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder8hashNodeEPKv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder8makeNodeEiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder9writeNodeEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder11buildUCharsE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder12writeDeltaToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder17writeElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder17writeValueAndTypeEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeC2EPKDsiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18buildUnicodeStringE22UStringTrieBuildOptionRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18writeValueAndFinalEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder3addERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5writeEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5writeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSink6AppendEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkC2EPNS_10CharStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleE16UDialectHandling);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleEP15UDisplayContexti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList14orphanLocaleAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList3addERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList4sortER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityListC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory10getNFCImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory11getInstanceE18UNormalizationModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory11getNFKCImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getFCCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getFCDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getNFKC_CFImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory15getNoopInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory7getImplEPKNS_11Normalizer2E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration16fromUEnumerationEP12UEnumerationR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration5resetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration5snextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationC2EP12UEnumeration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator5resetERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9getStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9loadRangeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9nextRangeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorC2ERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619FilteredNormalizer2D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619FilteredNormalizer2D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink5ResetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink6AppendEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSinkC2EPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620StackUResourceBundleC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620StackUResourceBundleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620umtx_initImplPreInitERNS_9UInitOnceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621umtx_initImplPostInitERNS_9UInitOnceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622BytesDictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622BytesDictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12addFollowingEiiNS1_20UpdatePositionValuesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12addPrecedingEiiNS1_20UpdatePositionValuesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12populateNearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache17populateFollowingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache17populatePrecedingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache4seekEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache5resetEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache6nextOLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9dumpCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9followingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9precedingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheC2EPS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10dumpTablesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10handleNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10isBoundaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator14getBinaryRulesERj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache18populateDictionaryEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9followingEiPiS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9precedingEiPiS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheC2EPS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16refreshInputTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator17createBufferCloneEPvRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator18handleSafePreviousEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator22getLanguageBreakEngineEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator7setTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator7setTextERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9adoptTextEPNS_17CharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9dumpCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9followingEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9precedingEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EP11UDataMemoryR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EPKhjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EPNS_14RBBIDataHeaderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_6LocaleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator10previous32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator10setIndex32Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator11hasPreviousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator11nextPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator12firstPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator13next32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator14first32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4moveEiNS_17CharacterIterator7EOriginE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6last32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6move32EiNS_17CharacterIterator7EOriginE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6next32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7first32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7setTextENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator8setIndexEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623FullCaseFoldingIterator4nextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623FullCaseFoldingIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator7setTextERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UCharsDictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UCharsDictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable12appendStringEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable14appendCodeUnitEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable15appendCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable15getAppendBufferEiiPDsiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable21reserveAppendCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder19createEmptyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder18suppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder20unsuppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder5buildEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664CStrC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664CStrD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNA19createUTS46InstanceEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNAD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNAD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits10addReplaceEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits12addUnchangedEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits14mergeAndAppendERKS0_S2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits6appendEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator10readLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator17updateNextIndexesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator21updatePreviousIndexesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator31destinationIndexFromSourceIndexEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator31sourceIndexFromDestinationIndexEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator4nextEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator6noNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator9findIndexEiaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8IteratorC2EPKtiaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9copyArrayERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9growArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9moveArrayERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getEnglishEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getGermanyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getItalianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10setDefaultERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale11getJapaneseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale12initBaseNameER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14createFromNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14forLanguageTagENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14getLocaleCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14setFromPOSIXIDEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15createCanonicalEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getCanadaFrenchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getISOCountriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getISOLanguagesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15minimizeSubtagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15setKeywordValueENS_11StringPieceES1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15setKeywordValueEPKcS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale16addLikelySubtagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale20getSimplifiedChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale21getTraditionalChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale22setUnicodeKeywordValueENS_11StringPieceES1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale4initEPKca);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale5getUKEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale5getUSEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale6getPRCEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale7getRootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8IteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getChinaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getItalyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getJapanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getKoreaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getCanadaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getFranceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getFrenchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getGermanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getKoreanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getLocaleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getTaiwanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2ENS0_11ELocaleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2EPKcS2_S2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UMutex7cleanupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UMutex8getMutexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack3popEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack4popiEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToLowerEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToLowerEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorENS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorES2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToUpperEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToUpperEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap4foldEjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toLowerEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toTitleEPKcjPNS_13BreakIteratorEPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toUpperEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap8utf8FoldEjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap8utf8FoldEjPKciPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorydaEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorydlEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorynaEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorynwEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UObjectD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UObjectD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10addElementEPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10addElementEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10setDeleterEPFvPvE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector11setComparerEPFa8UElementS1_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12setElementAtEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12setElementAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertE8UElementPFaS1_S1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertEPvPFa8UElementS2_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertEiPFa8UElementS1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector13removeElementEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector14ensureCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15insertElementAtEPviR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15insertElementAtEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15orphanElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15removeElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector17removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector19sortWithUComparatorEPFiPKvS2_S2_ES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector4sortEPFa8UElementS1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector5_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector5sortiER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector6assignERKS0_PFvP8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector7setSizeEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector9removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector9retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets3getENS0_3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSink5FlushEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie10branchNextEPKhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie11jumpByDeltaEPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie15findUniqueValueEPKhaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie18getNextBranchBytesEPKhiRNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie25findUniqueValueFromBranchEPKhiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie4nextEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie6appendERNS_8ByteSinkEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator10branchNextEPKhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator15truncateAndStopEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorC2EPKviR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorC2ERKS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8nextImplEPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie9readValueEPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCode5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCodeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCodeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey8fallbackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyC2ERKNS_13UnicodeStringES3_PS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3212setElementAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3212sortedInsertEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3214expandCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3214setMaxCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3215insertElementAtEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3215removeElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3216getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3217removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector325_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector326assignERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector327setSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector329removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector329retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32C2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32C2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32eqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6412setElementAtExi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6414expandCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6414setMaxCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6415insertElementAtExiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6416getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6417removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector645_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector646assignERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector647setSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64C2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64C2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64eqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_66eqERKNS_11StringPieceES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_66plERKNS_13UnicodeStringES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString11lastIndexOfEc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString8containsENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString9cloneDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService12getTimestampEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13handleDefaultERKNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14countFactoriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14notifyListenerERNS_13EventListenerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15acceptsListenerERKNS_13EventListenerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getVisibleIDMapER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService3getERKNS_13UnicodeStringEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService3getERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringEPKNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService7getNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService9isDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer10startIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8endIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8getIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8getUModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer9getOptionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610NormalizereqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610StringPair7isBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie13getNextUCharsERNS_10AppendableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie8Iterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet10_toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet10hasStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11containsAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11getRangeEndEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11stringsSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12spanBackUTF8EPKci17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13addMatchSetToERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13cloneAsThawedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13findCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13getRangeCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13getRangeStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet15stringsContainsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet16_generatePatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet17matchesIndexValueEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet4spanEPKDsi17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet6charAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet7indexOfEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8spanBackEPKDsi17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8spanUTF8EPKci17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9getStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9serializeEPtiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSeteqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611LocaleBased11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611LocaleBased9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer211composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer217getCombiningClassEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Replaceable11hasMetaDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Replaceable5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateInterval17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateInterval5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateIntervaleqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject11getRefCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject20deleteIfZeroRefCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject6addRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject9removeRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache10addHardRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11_inProgressEPK12UHashElement);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11_inProgressEPKNS_12SharedObjectE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11unusedCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache12_isEvictableEPK12UHashElement);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache12_nextElementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache13removeHardRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache13removeSoftRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache15_registerMasterEPKNS_12CacheKeyBaseEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache16autoEvictedCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache17_runEvictionSliceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache18_putIfAbsentAndGetERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache24handleUnreferencedObjectEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache27_computeCountOfItemsToEvictEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache4_getERKNS_12CacheKeyBaseERPKNS_12SharedObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache4_putEPK12UHashElementPKNS_12SharedObjectE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache5_pollERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache5flushEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache6_fetchEPK12UHashElementRPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache6_flushEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache7_putNewERKNS_12CacheKeyBaseEPKNS_12SharedObjectE10UErrorCodeRS7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache8keyCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator13getRuleStatusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613EventListener17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey11canonicalIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey12isFallbackOfERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey17currentDescriptorERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey5getIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey6prefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey9currentIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleBuilder11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher12getBestMatchERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher12getBestMatchERNS_6Locale8IteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher13internalMatchERKNS_6LocaleES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher16getBestSuppIndexENS_3LSREPNS_17LocaleLsrIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher18getBestMatchResultERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher18getBestMatchResultERNS_6Locale8IteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher25getBestMatchForListStringENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher6Result18makeResolvedLocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher7Builder11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher7Builder5buildER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ParsePosition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ParsePosition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceArray19internalGetResourceEPK12ResourceDatai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceArray8getValueEiRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceTable14getKeyAndValueEiRPKcRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceTable9findValueEPKcRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeFilter9toMatcherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString10doHashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString10unescapeAtERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11countChar32Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11getChar32AtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11hasMetaDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11lastIndexOfEPKDsiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11moveIndex32Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doCaseCompareEiiPKDsiij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doLastIndexOfEDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doLastIndexOfEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13tempSubStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14extractBetweenEiiRS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14getChar32LimitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14getChar32StartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString17hasMoreChar32ThanEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString23doCompareCodePointOrderEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString6toUTF8ERNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString6toUTF8EiiPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractENS_9Char16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEPciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPciNS0_10EInvariantE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPcj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPcjPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7indexOfEPKDsiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7toUTF32EPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8char32AtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8doEqualsERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8refCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8unescapeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doCompareEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doExtractEiiPDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doExtractEiiPciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doIndexOfEDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doIndexOfEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9getCharAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9getLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern15getNumericValueERKNS0_4PartE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern15getPluralOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern23autoQuoteApostropheDeepEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern4ParteqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePatterneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle10getVersionEPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle11getStringExEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle11getStringExEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle12getIntVectorERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle16getVersionNumberEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle3getEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle3getEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle6getIntER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle6getKeyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getUIntER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getBinaryERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614UnicodeFunctor10toReplacerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614UnicodeFunctor9toMatcherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE11getCapacityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE13getArrayLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE8getAliasEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EEixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl11composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl11composeUTF8EjaPKhS2_PNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl12addLcccCharsERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl13addCompositesEPKtRNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl13getCanonValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl14decomposeShortEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl14decomposeShortEPKhS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16composeAndAppendEPKDsS2_aaRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getCanonStartSetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getCanonStartSetEiRNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getDecompositionEiPDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16makeFCDAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl17addPropertyStartsEPK9USetAdderR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl17composeQuickCheckEPKDsS2_aP25UNormalizationCheckResult);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18decomposeAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19ensureCanonIterDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19findNextFCDBoundaryEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19getRawDecompositionEiPDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20findNextCompBoundaryEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20getFCD16FromNormDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKhS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21isCanonSegmentStarterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl22hasDecompBoundaryAfterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl23findPreviousFCDBoundaryEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl23hasDecompBoundaryBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl24findPreviousCompBoundaryEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl26addCanonIterPropertyStartsEPK9USetAdderR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl27makeCanonIterDataFromNorm16EiitRNS_13CanonIterDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl28norm16HasDecompBoundaryAfterEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl29norm16HasDecompBoundaryBeforeEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl30copyLowPrefixFromNulTerminatedEPKDsiPNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl7composeEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl7makeFCDEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_RNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEitRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9recomposeERNS_16ReorderingBufferEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ServiceListener17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter15formatAndAppendEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter16formatAndReplaceEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_S3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder14getElementUnitEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder15getElementValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder17BTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder17countElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder21getLimitOfLinearMatchEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder22getElementStringLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder23skipElementsBySomeUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder26indexOfElementWithNextUnitEiiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService22validateFallbackLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory10handlesKeyERKNS_13ICUServiceKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory15getSupportedIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ReorderingBuffer6equalsEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ReorderingBuffer6equalsEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CanonicalIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumeration5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumerationeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumerationneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14BranchHeadNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14FinalValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14ListBranchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder15LinearMatchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder15SplitBranchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder21IntermediateValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder4NodeeqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder9ValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder14getElementUnitEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder15getElementValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder17countElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder21getLimitOfLinearMatchEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder22getElementStringLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder23skipElementsBySomeUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder26indexOfElementWithNextUnitEiiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618LocalePriorityList8localeAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UStringEnumeration17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UStringEnumeration5countER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UnicodeSetIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer210quickCheckERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer211composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer212isNormalizedERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjPKciRNS_8ByteSinkEPNS_5EditsE17USetSpanConditionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216getDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216hasBoundaryAfterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217getCombiningClassEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217hasBoundaryBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217spanQuickCheckYesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_aR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer26appendERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer27isInertEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_17USetSpanConditionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher9transformEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator13getRuleStatusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator7getTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8getUTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIteratoreqERKNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator9current32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623UCharsDictionaryMatcher7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623UCharsDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory15getSupportedIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664CStrclEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA16nameToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA17labelToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA17nameToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA18labelToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_665Edits11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_665Edits8Iterator8toStringERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale11getBaseNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale13isRightToLeftEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale13toLanguageTagERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14createKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getDisplayNameERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getDisplayNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getISO3CountryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getISO3LanguageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getKeywordValueEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale16getDisplayScriptERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale16getDisplayScriptERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayCountryERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayCountryERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayVariantERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayVariantERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale18getDisplayLanguageERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale18getDisplayLanguageERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale21createUnicodeKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale22getUnicodeKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale7getLCIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666LocaleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666UStack17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666UStack6searchEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UObject17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector10elementAtiEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector11containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector12containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector6equalsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfE8UElementia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7toArrayEPPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector9elementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie12getNextBytesERNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie8Iterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie8Iterator9getStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ErrorCode13assertSuccessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ErrorCode9errorNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey11canonicalIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey12isFallbackOfERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey13currentLocaleERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey15canonicalLocaleERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey17currentDescriptorERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey4kindEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey6prefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey9currentIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3211containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3212containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3217getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector326equalsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector327indexOfEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector6417getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6610UnicodeSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6610UnicodeSetD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6613UnicodeFilterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_N6icu_6613UnicodeFilterD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_6610UnicodeSet13addMatchSetToERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_6610UnicodeSet17matchesIndexValueEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn4_NK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(locale_getKeywordsStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_countArrayItems_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getArrayItem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getBinaryNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getIntVectorNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getPublicType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getStringNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getTableItemByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getTableItemByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_read_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_UCharsToChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_austrcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_austrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_caseInsensitivePrefixMatch_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catclose_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catgets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catopen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charAge_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charDigitValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charFromName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charMirror_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charsToUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_cleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_countChar32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_digit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_enumCharNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_enumCharTypes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_errorName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_flushDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_foldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_forDigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getBidiPairedBracket_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getBinaryPropertySet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getCombiningClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDataDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDataVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getFC_NFKC_Closure_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getISOComment_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMaxValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMinValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getNumericValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyValueEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyValueName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getTimeZoneFilesDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getUnicodeVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_hasBinaryProperty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_init_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDIgnorable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isISOControl_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaIDPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaIDStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaSpaceChar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isMirrored_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUAlphabetic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isULowercase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUUppercase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUWhiteSpace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isWhitespace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isalnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isalpha_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isbase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isblank_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_iscntrl_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isdefined_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isdigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isgraph_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_islower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isprint_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_ispunct_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isspace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_istitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isxdigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memmove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memrchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memrchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_releaseDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setAtomicIncDecFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setDataDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setMemoryFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setMutexFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setTimeZoneFilesDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_shapeArabic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCaseCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCompareIter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFindFirst_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFindLast_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFoldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromJavaModifiedUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF32WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8Lenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromWCS_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strHasMoreChar32Than_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToJavaModifiedUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF32WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToWCS_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcspn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strlen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strpbrk_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrstr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strspn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strstr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strtok_r_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateUChar32s_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateWChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_tolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_totitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_uastrcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_uastrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_unescapeAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_unescape_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionFromUString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_countParagraphs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_countRuns_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getBaseDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getClassCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getCustomizedClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLevelAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLevels_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParaLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParagraphByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParagraph_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getProcessedLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getReorderingMode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getReorderingOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getResultLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_invertMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_isInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_isOrderParagraphsLTR_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_openSized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_orderParagraphsLTR_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_reorderLogical_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_reorderVisual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setClassCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setLine_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setPara_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setReorderingMode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setReorderingOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_writeReordered_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_writeReverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_transform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ublock_getCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_current_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_first_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_following_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getBinaryRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getRuleStatusVec_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getRuleStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_isBoundary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_last_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_openBinaryRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_openRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_preceding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_refreshUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_setUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_compareKeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_deleteKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_hashKeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_fold_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_getTypeOrIgnorable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_isCaseSensitive_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_isSoftDotted_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullFolding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_tolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_totitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_toTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8FoldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uchar_swapNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucln_cleanupOne_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucln_registerCleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteBytes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbToUWriteSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbToUWriteUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_compareNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_convertEx_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_convert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countStandards_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_createConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_detectUnicodeSignature_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_enableCleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fixFileSeparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_flushCache_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUCountPending_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAvailableName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getCCSID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getCanonicalName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getDefaultName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getFromUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getInvalidChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getInvalidUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getMaxCharSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getMinCharSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getNextUChar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getPlatform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStandardName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStandard_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStarters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getSubstChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getToUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_countKnownConverters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_getConverterName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_stripASCIIForCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_stripEBCDICForCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_isAmbiguous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_isFixedWidth_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_load_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openAllNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openCCSID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openPackage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openStandardNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_resetFromUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_resetToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setDefaultName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setFromUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setSubstChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setSubstString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setToUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_swapAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUCountPending_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_unload_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_usesFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_selectForString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_selectForUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_looksLikeCollationBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_swapInverseUCA_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucpmap_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucpmap_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getValueWidth_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalSmallIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalSmallU8Index_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalU8PrevIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_openFromBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_toBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_countCurrencies_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_forLocaleAndDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_forLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getDefaultFractionDigitsForUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getDefaultFractionDigits_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getPluralName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getRoundingIncrementForUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getRoundingIncrement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_isAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_openISOCurrencies_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_register_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_unregister_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_closeSwapper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getInfo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getMemory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getRawMemory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openChoice_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openSwapperForInputData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openSwapper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_printError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_readInt16_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_readInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setAppData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setCommonData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setFileAccess_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_swapDataHeader_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_swapInvStringBlock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udict_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_count_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_nextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openCharStringsEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openFromStringEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openUCharStringsEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_unextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_unext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareCaselessUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareIChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_count_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_deleteHashtable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_find_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_geti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashCaselessUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashIChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iget_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_igeti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_initSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_init_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iput_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iputi_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iremove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iremovei_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_nextElement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_openSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_put_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_puti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removeAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removeElement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_remove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removei_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyComparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyDeleter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyHasher_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setResizePolicy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setValueComparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setValueDeleter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_IDNToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_IDNToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_compare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToASCII_UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToUnicodeUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToASCII_UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToUnicodeUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_openUTS46_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_toASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_toUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_current32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_getState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_next32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_previous32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setCharacterIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setReplaceable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setUTF16BE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getDialectHandling_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_keyDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_keyValueDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_languageDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_localeDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_openForContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_regionDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_scriptCodeDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_scriptDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_variantDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_addItemBeginList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_addItemEndList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_close_keyword_values_iterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_containsString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_count_keyword_values_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_createEmptyList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_deleteList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getListFromEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getListSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_next_keyword_value_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_removeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_resetList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_reset_keyword_values_iterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_acceptLanguageFromHTTP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_acceptLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_addLikelySubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_canonicalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_forLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getBaseName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getCharacterOrientation_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getCountry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayCountry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayKeyword_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayScriptInContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayVariant_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISO3Country_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISO3Language_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISOCountries_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISOLanguages_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLineOrientation_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLocaleForLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getParent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getTableStringWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getVariant_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_isRightToLeft_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_minimizeSubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openAvailableByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openKeywordList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_setDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_setKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLegacyKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLegacyType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toUnicodeLocaleKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toUnicodeLocaleType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_addLikelySubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_forLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_getRegionForSupplementalData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_minimizeSubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_toLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umtx_lock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umtx_unlock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_buildImmutable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_fromUCPMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_fromUCPTrie_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_setRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_append_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_composePair_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getCombiningClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getDecomposition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFCInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFDInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKCCasefoldInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKCInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKDInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getRawDecomposition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_hasBoundaryAfter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_hasBoundaryBefore_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_isInert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_isNormalized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_normalizeSecondAndAppend_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_normalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_openFiltered_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_quickCheck_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_spanQuickCheckYes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_compare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_concatenate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_isNormalizedWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_isNormalized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_normalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_quickCheckWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_quickCheck_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_add32_overflow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_aestrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_asciitolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_calloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ceil_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareASCIIPropertyNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareEBCDICPropertyNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareInvEbcdicAsAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToLCIDPlatform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToPosix_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_deleteUObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dl_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dl_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dlsym_func_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_eastrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicFromAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicToAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicToLowercaseAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdictolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fabs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_floor_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmax_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmin_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmod_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_free_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getCharNameCharacters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getDefaultLocaleID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getMaxCharNameLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getNaN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getRawUTCtime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getStaticCurrencyName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getUTCtime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_int32Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isASCIILetter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInfinite_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInvariantString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInvariantUString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isNaN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isNegativeInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isPositiveInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_itou_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_log_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_malloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_maxMantissa_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_max_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_maximumPtr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_min_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_modf_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_mul32_overflow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_parseCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pathIsAbsolute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pow10_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_realloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_round_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_sortArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_stableBinarySearch_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strdup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_stricmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strndup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strnicmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_syntaxError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_timezone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_trunc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzname_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzname_clear_cache_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_uint16Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_uint32Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_cloneArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compactToUTrie2Handler_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compactToUTrie2WithRowIndexes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getRow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_setValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_countArrayItems_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_findResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_findSubResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getAllItemsWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByKeyWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getFunctionalEquivalent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getIntVector_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getKeywordValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocaleInternal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getNextResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getNextString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByKeyWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8StringByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8StringByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8String_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getValueWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionNumberInternal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionNumber_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_hasNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_initStackObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openAvailableLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openDirectFillIn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openDirect_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openFillIn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openNoDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_resetIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_breaksBetweenLetters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_closeRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getSampleString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getScriptExtensions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getShortName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_hasScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_isCased_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_isRightToLeft_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_nextRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_openRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_resetRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_setRunText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addAllCodePoints_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_add_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyIntPropertyValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyPropertyAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_charAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_clear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_cloneAsThawed_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_closeOver_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_compact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_complementAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_complement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsAllCodePoints_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsNone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsSome_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_contains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getItemCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getItem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedRangeCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_indexOf_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_isEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_isFrozen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openPatternOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeAllStrings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_remove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_resemblesPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_retainAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_retain_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_serializedContains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_setSerializedToOne_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_size_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanBackUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_span_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_openByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_prepare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashCharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashICharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashUCharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_char32At_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_copy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_current32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_extract_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_getNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_getPreviousNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_hasMetaData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_isLengthExpensive_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_isWritable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_moveIndex32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_nativeLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_next32From_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_next32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openCharacterIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openConstUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openReplaceable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_previous32From_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_previous32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_replace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_setNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_setup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_appendCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_back1SafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_nextCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_prevCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_data_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_entry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_exit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_functionName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_getFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_getLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_setFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_setLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_vformat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_cloneAsThawed_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_enumForLeadSurrogate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_enum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_fromUTrie_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_get32FromLeadSurrogateCodeUnit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_get32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_internalU8NextIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_internalU8PrevIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_isFrozen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_openDummy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_set32ForLeadSurrogateCodeUnit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_set32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_setRange32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_defaultGetFoldingOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_enum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_get32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_getData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_set32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_setRange32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_swapAnyVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_unserializeDummy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_unserialize_66);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6611StringPiece4nposE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6613ICUServiceKey16PREFIX_DELIMITERE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData14TRANSFORM_NONEE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData14TRIE_TYPE_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData15TRIE_HAS_VALUESE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData15TRIE_TYPE_BYTESE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData16TRIE_TYPE_UCHARSE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData19TRANSFORM_TYPE_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData21TRANSFORM_OFFSET_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData21TRANSFORM_TYPE_OFFSETE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_666UMutex9gListHeadE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(icudt66_dat);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(utf8_countTrailBytes_66);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_int64ToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_integerToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_stringToInteger_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_toLowerCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_toUpperCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_ESCAPE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_SKIP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_STOP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_SUBSTITUTE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_ESCAPE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_SKIP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_STOP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_SUBSTITUTE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _Z33uscript_getSampleUnicodeString_6611UScriptCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable12appendStringEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable15appendCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable15getAppendBufferEiiPDsiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable21reserveAppendCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610AppendableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610AppendableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString14appendPathPartENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString14ensureCapacityEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString15getAppendBufferEiiRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString20appendInvariantCharsEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString20appendInvariantCharsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString27ensureEndsWithFileSeparatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString6appendEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString6appendEcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString8copyFromERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString8truncateEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharStringC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharStringaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService11clearCachesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService17clearServiceCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService19createSimpleFactoryEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService21reInitializeFactoriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer10quickCheckERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer11clearBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer11concatenateERKNS_13UnicodeStringES3_RS1_18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer12isNormalizedERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer12setIndexOnlyEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer13nextNormalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer17previousNormalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7composeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setModeE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextENS_14ConstChar16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextERKNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9decomposeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9normalizeERKNS_13UnicodeStringE18UNormalizationModeiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9setOptionEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ENS_14ConstChar16PtrEi18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKNS_13UnicodeStringE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKNS_17CharacterIteratorE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610StringPair6createERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610StringPairC2ERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie10branchNextEPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie15findUniqueValueEPKDsaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie16nextForCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie17firstForCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie19getNextBranchUCharsEPKDsiRNS_10AppendableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie25findUniqueValueFromBranchEPKDsiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie4nextENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator10branchNextEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorC2ENS_14ConstChar16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorC2ERKS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8nextImplEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UStringSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UStringSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10createFromERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10setPatternEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11applyFilterEPFaiPvES1_PKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11exclusiveOrEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11getSingleCPERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11swapBuffersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringERKS1_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERNS_21RuleCharacterIteratorEPKNS_11SymbolTableERNS_13UnicodeStringEjMS0_FRS0_iEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12nextCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13complementAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13complementAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13createFromAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet14releasePatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet15allocateStringsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16removeAllStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16resemblesPatternERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet18applyPropertyAliasERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20applyPropertyPatternERKNS_13UnicodeStringERNS_13ParsePositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20applyPropertyPatternERNS_21RuleCharacterIteratorERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20ensureBufferCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet21applyIntPropertyValueE9UPropertyiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet23applyPatternIgnoreSpaceERKNS_13UnicodeStringERNS_13ParsePositionEPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet24resemblesPropertyPatternERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet24resemblesPropertyPatternERNS_21RuleCharacterIteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3setEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet4_addERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6addAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6addAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet7compactEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet8copyFromERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9closeOverEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9matchRestERKNS_11ReplaceableEiiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9removeAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9retainAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2EPKtiNS0_14ESerializationER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier11addListenerEPKNS_13EventListenerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier13notifyChangedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier14removeListenerEPKNS_13EventListenerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility11parseNumberERKNS_13UnicodeStringERia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendNumberERNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEPKNS_14UnicodeMatcherEaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringERKS1_aaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEiaaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parseIntegerERKNS_13UnicodeStringERii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringERKNS_11ReplaceableEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringEiiS3_Pi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility13isUnprintableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility14skipWhitespaceERKNS_13UnicodeStringERia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility17escapeUnprintableERNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility17parseAsciiIntegerERKNS_13UnicodeStringERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility22parseUnicodeIdentifierERKNS_13UnicodeStringERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility9parseCharERKNS_13UnicodeStringERiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611LocaleBased12setLocaleIDsEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611LocaleBased12setLocaleIDsERKNS_6LocaleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611MessageImpl24appendReducedApostrophesERKNS_13UnicodeStringEiiRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611MessageImpl33appendSubMessageWithoutSkipSyntaxERKNS_14MessagePatternEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer211getInstanceEPKcS2_19UNormalization2ModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer214getNFCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer214getNFDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer215getNFKCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer215getNFKDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer223getNFKCCasefoldInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer2D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer2D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ReplaceableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ReplaceableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPiece3setEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2ERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2ERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611SymbolTableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611SymbolTableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil12appendChangeEPKhS2_PKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil12appendChangeEiPKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil14appendTwoBytesEiRNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil15appendCodePointEiiRNS_8ByteSinkEPNS_5EditsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil15appendUnchangedEPKhS2_RNS_8ByteSinkEjPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil23appendNonEmptyUnchangedEPKhiRNS_8ByteSinkEjPNS_5EditsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612CacheKeyBaseD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612CacheKeyBaseD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateInterval16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalC2Edd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps12isIdentifierEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps12isWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipIdentifierEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipWhiteSpaceEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14trimWhiteSpaceEPKDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps20isSyntaxOrWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps8isSyntaxEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ResourceSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ResourceSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612SharedObjectD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612SharedObjectD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCache11getInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCache17setEvictionPolicyEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator12makeInstanceERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator13buildInstanceERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14createInstanceERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator16registerInstanceEPS0_RKNS_6LocaleE18UBreakIteratorTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator18createLineInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator18createWordInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19createTitleInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator22createSentenceInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator23createCharacterInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2ERKNS_6LocaleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListener16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListenerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListenerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey11parsePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey11parseSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey8fallbackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder10setVariantENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder11setLanguageENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder12setExtensionEcNS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder14setLanguageTagENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder15clearExtensionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder18copyExtensionsFromERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder23setUnicodeLocaleKeywordENS_11StringPieceES1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder25addUnicodeLocaleAttributeENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder28removeUnicodeLocaleAttributeENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder5buildER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setRegionENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setScriptENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder14setFavorSubtagE20ULocMatchFavorSubtag);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder16setDefaultLocaleEPKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder18addSupportedLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder19setSupportedLocalesERNS_6Locale8IteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder21clearSupportedLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder27ensureSupportedLocaleVectorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder27setDemotionPerDesiredLocaleE17ULocMatchDemotion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder33setSupportedLocalesFromListStringENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherC2ERKNS0_7BuilderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcheraSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility12isFallbackOfERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility18initLocaleFromNameERKNS_13UnicodeStringERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility18initNameFromLocaleERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility21canonicalLocaleStringEPKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility23getAvailableLocaleNamesERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePosition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePositionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase10toCategoryEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase10toCategoryERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase15getCategoryNameENS0_8CategoryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ResourceValueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ResourceValueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter7setDataEPKNS_23TransliterationRuleDataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString10padLeadingEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString11padTrailingEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString12fastCopyFromERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString13releaseBufferEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString14copyFieldsFromERS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString14findAndReplaceEiiRKS0_iiS2_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16doCodepageCreateEPKciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16doCodepageCreateEPKciS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString18cloneArrayIfNeededEiiaPPia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString19getTerminatedBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString20handleReplaceBetweenEiiRKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4copyEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4swapERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4trimEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString5setToEPDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString5setToEaNS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString6addRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString6appendEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7caseMapEijPNS_13BreakIteratorEPFiijS2_PDsiPKDsiPNS_5EditsER10UErrorCodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7replaceEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toLowerERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toLowerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toUpperERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toUpperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7unBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8allocateEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8copyFromERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8doAppendEPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8doAppendERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8foldCaseEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8fromUTF8ENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReplaceEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReplaceEiiRKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReverseEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9fromUTF32EPKii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9getBufferEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9removeRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9setCharAtEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9setToUTF8ENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciNS0_10EInvariantE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EaNS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2Eiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern10skipDoubleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern11copyStorageERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern11parseDoubleEiiaP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern12addLimitPartEi23UMessagePatternPartTypeiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern12parseMessageEiii22UMessagePatternArgTypeP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern13isArgTypeCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern13setParseErrorEP11UParseErrori);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14parseArgNumberERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14skipIdentifierEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14skipWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16addArgDoublePartEdiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseChoiceStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseChoiceStyleEiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parsePluralStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseSelectStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseSimpleStyleEiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern20validateArgumentNameERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern22inMessageFormatPatternEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern23inTopLevelChoiceMessageEi22UMessagePatternArgType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern24parsePluralOrSelectStyleE22UMessagePatternArgTypeiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern5parseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern7addPartE23UMessagePatternPartTypeiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isChoiceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isPluralEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isSelectEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8parseArgEiiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8preParseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern9isOrdinalEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern9postParseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2E29UMessagePatternApostropheModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13getNextStringEPPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13getNextStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13resetIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle15getWithFallbackEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle18constructForLocaleERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle7getNextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2EP15UResourceBundleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2EPKcRKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctor16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE12aliasInsteadEPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE13orphanOrCloneEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE17resetToStackArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE6resizeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEaSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEeqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEneERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2Impl4initEPKiPK7UCPTriePKtPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2Impl7combineEPKti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2ImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2ImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListener16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListenerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListenerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter22getTextWithNoArgumentsEPKDsiPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter27applyPatternMinMaxArgumentsERKNS_13UnicodeStringEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter6formatEPKDsiPKPKNS_13UnicodeStringERS3_S5_aPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder10buildBytesE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder12writeDeltaToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder16buildStringPieceE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17BTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17BTLinearMatchNodeC2EPKciPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17writeElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17writeValueAndTypeEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder18writeValueAndFinalEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder3addENS_11StringPieceEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5writeEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5writeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryC2EiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer10previousCCEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12appendZeroCCEPKDsS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12appendZeroCCEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12removeSuffixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12skipPreviousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer19appendSupplementaryEihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer4initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6appendEPKDsiahhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6insertEih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6removeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6resizeEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBufferC2ERKNS_15Normalizer2ImplERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616UnifiedCacheBaseD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616UnifiedCacheBaseD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator11cleanPiecesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator14getEquivalentsERKNS_13UnicodeStringERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator15getEquivalents2EPNS_9HashtableEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator7extractEPNS_9HashtableEiPKDsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator7permuteERNS_13UnicodeStringEaPNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator9getSourceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator9setSourceERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIterator12firstPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIterator14first32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Eiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617DictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617DictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617ICUServiceFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617ICUServiceFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration19ensureCharsCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration5snextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration5unextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration8setCharsEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder10equalNodesEPKvS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder12registerNodeEPNS0_4NodeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14BranchHeadNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14BranchHeadNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14FinalValueNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14ListBranchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14ListBranchNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15LinearMatchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15SplitBranchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15SplitBranchNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder17makeBranchSubNodeEiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder18registerFinalValueEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder18writeBranchSubNodeEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder20createCompactBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder20deleteCompactBuilderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder21IntermediateValueNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder21IntermediateValueNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder4Node19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder5buildE22UStringTrieBuildOptioniR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder8hashNodeEPKv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder8makeNodeEiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder9writeNodeEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder11buildUCharsE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder12writeDeltaToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder17writeElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder17writeValueAndTypeEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeC2EPKDsiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18buildUnicodeStringE22UStringTrieBuildOptionRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18writeValueAndFinalEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder3addERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5writeEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5writeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSink6AppendEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkC2EPNS_10CharStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleE16UDialectHandling);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleEP15UDisplayContexti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList14orphanLocaleAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList3addERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList4sortER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityListC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory10getNFCImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory11getInstanceE18UNormalizationModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory11getNFKCImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getFCCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getFCDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getNFKC_CFImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory15getNoopInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory7getImplEPKNS_11Normalizer2E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration16fromUEnumerationEP12UEnumerationR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration5resetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration5snextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationC2EP12UEnumeration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator5resetERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9getStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9loadRangeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9nextRangeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorC2ERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6619FilteredNormalizer2D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6619FilteredNormalizer2D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink5ResetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink6AppendEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSinkC2EPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620StackUResourceBundleC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620StackUResourceBundleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620umtx_initImplPreInitERNS_9UInitOnceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6621umtx_initImplPostInitERNS_9UInitOnceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622BytesDictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622BytesDictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12addFollowingEiiNS1_20UpdatePositionValuesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12addPrecedingEiiNS1_20UpdatePositionValuesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12populateNearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache17populateFollowingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache17populatePrecedingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache4seekEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache5resetEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache6nextOLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9dumpCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9followingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9precedingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheC2EPS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10dumpTablesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10handleNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10isBoundaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator14getBinaryRulesERj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache18populateDictionaryEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9followingEiPiS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9precedingEiPiS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheC2EPS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16refreshInputTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator17createBufferCloneEPvRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator18handleSafePreviousEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator22getLanguageBreakEngineEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator7setTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator7setTextERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9adoptTextEPNS_17CharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9dumpCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9followingEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9precedingEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EP11UDataMemoryR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EPKhjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EPNS_14RBBIDataHeaderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_6LocaleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator10previous32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator10setIndex32Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator11hasPreviousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator11nextPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator12firstPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator13next32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator14first32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4moveEiNS_17CharacterIterator7EOriginE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6last32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6move32EiNS_17CharacterIterator7EOriginE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6next32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7first32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7setTextENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator8setIndexEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623FullCaseFoldingIterator4nextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623FullCaseFoldingIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator7setTextERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UCharsDictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UCharsDictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable12appendStringEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable14appendCodeUnitEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable15appendCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable15getAppendBufferEiiPDsiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable21reserveAppendCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder19createEmptyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder18suppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder20unsuppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder5buildEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664CStrC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664CStrD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNA19createUTS46InstanceEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNAD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNAD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits10addReplaceEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits12addUnchangedEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits14mergeAndAppendERKS0_S2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits6appendEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator10readLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator17updateNextIndexesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator21updatePreviousIndexesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator31destinationIndexFromSourceIndexEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator31sourceIndexFromDestinationIndexEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator4nextEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator6noNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator9findIndexEiaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8IteratorC2EPKtiaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9copyArrayERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9growArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9moveArrayERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getEnglishEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getGermanyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getItalianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10setDefaultERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale11getJapaneseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale12initBaseNameER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14createFromNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14forLanguageTagENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14getLocaleCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14setFromPOSIXIDEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15createCanonicalEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getCanadaFrenchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getISOCountriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getISOLanguagesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15minimizeSubtagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15setKeywordValueENS_11StringPieceES1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15setKeywordValueEPKcS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale16addLikelySubtagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale20getSimplifiedChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale21getTraditionalChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale22setUnicodeKeywordValueENS_11StringPieceES1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale4initEPKca);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale5getUKEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale5getUSEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale6getPRCEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale7getRootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8IteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getChinaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getItalyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getJapanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getKoreaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getCanadaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getFranceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getFrenchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getGermanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getKoreanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getLocaleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getTaiwanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2ENS0_11ELocaleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2EPKcS2_S2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UMutex7cleanupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UMutex8getMutexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack3popEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack4popiEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToLowerEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToLowerEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorENS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorES2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToUpperEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToUpperEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap4foldEjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toLowerEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toTitleEPKcjPNS_13BreakIteratorEPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toUpperEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap8utf8FoldEjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap8utf8FoldEjPKciPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorydaEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorydlEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorynaEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorynwEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UObjectD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UObjectD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10addElementEPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10addElementEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10setDeleterEPFvPvE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector11setComparerEPFa8UElementS1_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12setElementAtEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12setElementAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertE8UElementPFaS1_S1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertEPvPFa8UElementS2_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertEiPFa8UElementS1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector13removeElementEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector14ensureCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15insertElementAtEPviR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15insertElementAtEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15orphanElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15removeElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector17removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector19sortWithUComparatorEPFiPKvS2_S2_ES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector4sortEPFa8UElementS1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector5_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector5sortiER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector6assignERKS0_PFvP8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector7setSizeEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector9removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector9retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets3getENS0_3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSink5FlushEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie10branchNextEPKhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie11jumpByDeltaEPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie15findUniqueValueEPKhaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie18getNextBranchBytesEPKhiRNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie25findUniqueValueFromBranchEPKhiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie4nextEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie6appendERNS_8ByteSinkEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator10branchNextEPKhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator15truncateAndStopEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorC2EPKviR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorC2ERKS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8nextImplEPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie9readValueEPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCode5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCodeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCodeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey8fallbackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyC2ERKNS_13UnicodeStringES3_PS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3212setElementAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3212sortedInsertEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3214expandCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3214setMaxCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3215insertElementAtEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3215removeElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3216getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3217removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector325_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector326assignERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector327setSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector329removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector329retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32C2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32C2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32eqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6412setElementAtExi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6414expandCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6414setMaxCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6415insertElementAtExiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6416getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6417removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector645_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector646assignERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector647setSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64C2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64C2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64eqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_66eqERKNS_11StringPieceES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_66plERKNS_13UnicodeStringES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString11lastIndexOfEc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString8containsENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString9cloneDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService12getTimestampEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13handleDefaultERKNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14countFactoriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14notifyListenerERNS_13EventListenerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15acceptsListenerERKNS_13EventListenerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getVisibleIDMapER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService3getERKNS_13UnicodeStringEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService3getERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringEPKNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService7getNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService9isDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer10startIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8endIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8getIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8getUModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer9getOptionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610NormalizereqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610StringPair7isBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie13getNextUCharsERNS_10AppendableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie8Iterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet10_toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet10hasStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11containsAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11getRangeEndEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11stringsSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12spanBackUTF8EPKci17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13addMatchSetToERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13cloneAsThawedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13findCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13getRangeCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13getRangeStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet15stringsContainsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet16_generatePatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet17matchesIndexValueEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet4spanEPKDsi17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet6charAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet7indexOfEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8spanBackEPKDsi17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8spanUTF8EPKci17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9getStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9serializeEPtiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSeteqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611LocaleBased11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611LocaleBased9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer211composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer217getCombiningClassEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Replaceable11hasMetaDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Replaceable5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateInterval17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateInterval5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateIntervaleqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject11getRefCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject20deleteIfZeroRefCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject6addRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject9removeRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache10addHardRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11_inProgressEPK12UHashElement);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11_inProgressEPKNS_12SharedObjectE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11unusedCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache12_isEvictableEPK12UHashElement);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache12_nextElementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache13removeHardRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache13removeSoftRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache15_registerMasterEPKNS_12CacheKeyBaseEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache16autoEvictedCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache17_runEvictionSliceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache18_putIfAbsentAndGetERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache24handleUnreferencedObjectEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache27_computeCountOfItemsToEvictEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache4_getERKNS_12CacheKeyBaseERPKNS_12SharedObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache4_putEPK12UHashElementPKNS_12SharedObjectE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache5_pollERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache5flushEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache6_fetchEPK12UHashElementRPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache6_flushEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache7_putNewERKNS_12CacheKeyBaseEPKNS_12SharedObjectE10UErrorCodeRS7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache8keyCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator13getRuleStatusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613EventListener17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey11canonicalIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey12isFallbackOfERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey17currentDescriptorERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey5getIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey6prefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey9currentIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleBuilder11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher12getBestMatchERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher12getBestMatchERNS_6Locale8IteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher13internalMatchERKNS_6LocaleES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher16getBestSuppIndexENS_3LSREPNS_17LocaleLsrIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher18getBestMatchResultERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher18getBestMatchResultERNS_6Locale8IteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher25getBestMatchForListStringENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher6Result18makeResolvedLocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher7Builder11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher7Builder5buildER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ParsePosition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ParsePosition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceArray19internalGetResourceEPK12ResourceDatai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceArray8getValueEiRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceTable14getKeyAndValueEiRPKcRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceTable9findValueEPKcRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeFilter9toMatcherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString10doHashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString10unescapeAtERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11countChar32Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11getChar32AtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11hasMetaDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11lastIndexOfEPKDsiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11moveIndex32Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doCaseCompareEiiPKDsiij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doLastIndexOfEDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doLastIndexOfEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13tempSubStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14extractBetweenEiiRS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14getChar32LimitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14getChar32StartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString17hasMoreChar32ThanEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString23doCompareCodePointOrderEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString6toUTF8ERNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString6toUTF8EiiPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractENS_9Char16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEPciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPciNS0_10EInvariantE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPcj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPcjPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7indexOfEPKDsiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7toUTF32EPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8char32AtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8doEqualsERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8refCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8unescapeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doCompareEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doExtractEiiPDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doExtractEiiPciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doIndexOfEDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doIndexOfEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9getCharAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9getLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern15getNumericValueERKNS0_4PartE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern15getPluralOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern23autoQuoteApostropheDeepEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern4ParteqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePatterneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle10getVersionEPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle11getStringExEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle11getStringExEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle12getIntVectorERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle16getVersionNumberEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle3getEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle3getEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle6getIntER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle6getKeyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getUIntER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getBinaryERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614UnicodeFunctor10toReplacerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614UnicodeFunctor9toMatcherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE11getCapacityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE13getArrayLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE8getAliasEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EEixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl11composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl11composeUTF8EjaPKhS2_PNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl12addLcccCharsERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl13addCompositesEPKtRNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl13getCanonValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl14decomposeShortEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl14decomposeShortEPKhS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16composeAndAppendEPKDsS2_aaRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getCanonStartSetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getCanonStartSetEiRNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getDecompositionEiPDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16makeFCDAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl17addPropertyStartsEPK9USetAdderR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl17composeQuickCheckEPKDsS2_aP25UNormalizationCheckResult);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18decomposeAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19ensureCanonIterDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19findNextFCDBoundaryEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19getRawDecompositionEiPDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20findNextCompBoundaryEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20getFCD16FromNormDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKhS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21isCanonSegmentStarterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl22hasDecompBoundaryAfterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl23findPreviousFCDBoundaryEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl23hasDecompBoundaryBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl24findPreviousCompBoundaryEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl26addCanonIterPropertyStartsEPK9USetAdderR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl27makeCanonIterDataFromNorm16EiitRNS_13CanonIterDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl28norm16HasDecompBoundaryAfterEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl29norm16HasDecompBoundaryBeforeEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl30copyLowPrefixFromNulTerminatedEPKDsiPNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl7composeEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl7makeFCDEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_RNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEitRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9recomposeERNS_16ReorderingBufferEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615ServiceListener17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter15formatAndAppendEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter16formatAndReplaceEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_S3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder14getElementUnitEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder15getElementValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder17BTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder17countElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder21getLimitOfLinearMatchEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder22getElementStringLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder23skipElementsBySomeUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder26indexOfElementWithNextUnitEiiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService22validateFallbackLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory10handlesKeyERKNS_13ICUServiceKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory15getSupportedIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ReorderingBuffer6equalsEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ReorderingBuffer6equalsEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617CanonicalIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumeration5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumerationeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumerationneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14BranchHeadNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14FinalValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14ListBranchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder15LinearMatchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder15SplitBranchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder21IntermediateValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder4NodeeqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder9ValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder14getElementUnitEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder15getElementValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder17countElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder21getLimitOfLinearMatchEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder22getElementStringLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder23skipElementsBySomeUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder26indexOfElementWithNextUnitEiiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618LocalePriorityList8localeAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UStringEnumeration17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UStringEnumeration5countER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UnicodeSetIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer210quickCheckERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer211composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer212isNormalizedERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjPKciRNS_8ByteSinkEPNS_5EditsE17USetSpanConditionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216getDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216hasBoundaryAfterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217getCombiningClassEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217hasBoundaryBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217spanQuickCheckYesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_aR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer26appendERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer27isInertEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_17USetSpanConditionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher9transformEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator13getRuleStatusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator7getTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8getUTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIteratoreqERKNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator9current32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623UCharsDictionaryMatcher7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623UCharsDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory15getSupportedIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664CStrclEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA16nameToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA17labelToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA17nameToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA18labelToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_665Edits11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_665Edits8Iterator8toStringERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale11getBaseNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale13isRightToLeftEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale13toLanguageTagERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14createKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getDisplayNameERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getDisplayNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getISO3CountryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getISO3LanguageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getKeywordValueEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale16getDisplayScriptERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale16getDisplayScriptERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayCountryERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayCountryERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayVariantERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayVariantERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale18getDisplayLanguageERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale18getDisplayLanguageERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale21createUnicodeKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale22getUnicodeKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale7getLCIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666LocaleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666UStack17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666UStack6searchEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UObject17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector10elementAtiEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector11containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector12containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector6equalsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfE8UElementia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7toArrayEPPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector9elementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie12getNextBytesERNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie8Iterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie8Iterator9getStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669ErrorCode13assertSuccessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669ErrorCode9errorNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey11canonicalIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey12isFallbackOfERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey13currentLocaleERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey15canonicalLocaleERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey17currentDescriptorERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey4kindEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey6prefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey9currentIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3211containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3212containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3217getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector326equalsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector327indexOfEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector6417getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6610UnicodeSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6610UnicodeSetD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6613UnicodeFilterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_N6icu_6613UnicodeFilterD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_NK6icu_6610UnicodeSet13addMatchSetToERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_NK6icu_6610UnicodeSet17matchesIndexValueEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn4_NK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", locale_getKeywordsStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_countArrayItems_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getArrayItem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getBinaryNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getIntVectorNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getPublicType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getStringNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getTableItemByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getTableItemByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_read_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_UCharsToChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_austrcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_austrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_caseInsensitivePrefixMatch_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catclose_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catgets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catopen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charAge_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charDigitValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charFromName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charMirror_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charsToUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_cleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_countChar32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_digit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_enumCharNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_enumCharTypes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_errorName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_flushDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_foldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_forDigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getBidiPairedBracket_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getBinaryPropertySet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getCombiningClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDataDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDataVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getFC_NFKC_Closure_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getISOComment_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMaxValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMinValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getNumericValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyValueEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyValueName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getTimeZoneFilesDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getUnicodeVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_hasBinaryProperty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_init_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDIgnorable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isISOControl_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaIDPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaIDStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaSpaceChar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isMirrored_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUAlphabetic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isULowercase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUUppercase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUWhiteSpace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isWhitespace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isalnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isalpha_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isbase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isblank_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_iscntrl_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isdefined_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isdigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isgraph_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_islower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isprint_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_ispunct_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isspace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_istitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isxdigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memmove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memrchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memrchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_releaseDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setAtomicIncDecFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setDataDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setMemoryFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setMutexFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setTimeZoneFilesDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_shapeArabic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCaseCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCompareIter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFindFirst_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFindLast_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFoldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromJavaModifiedUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF32WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8Lenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromWCS_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strHasMoreChar32Than_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToJavaModifiedUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF32WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToWCS_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcspn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strlen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strpbrk_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrstr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strspn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strstr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strtok_r_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateUChar32s_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateWChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_tolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_totitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_uastrcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_uastrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_unescapeAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_unescape_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionFromUString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_countParagraphs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_countRuns_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getBaseDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getClassCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getCustomizedClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLevelAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLevels_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParaLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParagraphByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParagraph_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getProcessedLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getReorderingMode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getReorderingOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getResultLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_invertMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_isInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_isOrderParagraphsLTR_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_openSized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_orderParagraphsLTR_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_reorderLogical_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_reorderVisual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setClassCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setLine_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setPara_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setReorderingMode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setReorderingOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_writeReordered_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_writeReverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_transform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ublock_getCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_current_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_first_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_following_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getBinaryRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getRuleStatusVec_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getRuleStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_isBoundary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_last_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_openBinaryRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_openRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_preceding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_refreshUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_setUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_compareKeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_deleteKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_hashKeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_fold_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_getTypeOrIgnorable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_isCaseSensitive_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_isSoftDotted_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullFolding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_tolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_totitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_toTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8FoldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uchar_swapNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucln_cleanupOne_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucln_registerCleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteBytes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbToUWriteSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbToUWriteUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_compareNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_convertEx_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_convert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countStandards_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_createConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_detectUnicodeSignature_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_enableCleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fixFileSeparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_flushCache_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUCountPending_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAvailableName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getCCSID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getCanonicalName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getDefaultName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getFromUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getInvalidChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getInvalidUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getMaxCharSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getMinCharSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getNextUChar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getPlatform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStandardName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStandard_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStarters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getSubstChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getToUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_countKnownConverters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_getConverterName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_stripASCIIForCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_stripEBCDICForCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_isAmbiguous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_isFixedWidth_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_load_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openAllNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openCCSID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openPackage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openStandardNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_resetFromUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_resetToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setDefaultName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setFromUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setSubstChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setSubstString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setToUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_swapAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUCountPending_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_unload_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_usesFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_selectForString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_selectForUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_looksLikeCollationBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_swapInverseUCA_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucpmap_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucpmap_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getValueWidth_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalSmallIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalSmallU8Index_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalU8PrevIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_openFromBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_toBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_countCurrencies_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_forLocaleAndDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_forLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getDefaultFractionDigitsForUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getDefaultFractionDigits_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getPluralName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getRoundingIncrementForUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getRoundingIncrement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_isAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_openISOCurrencies_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_register_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_unregister_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_closeSwapper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getInfo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getMemory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getRawMemory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openChoice_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openSwapperForInputData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openSwapper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_printError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_readInt16_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_readInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setAppData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setCommonData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setFileAccess_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_swapDataHeader_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_swapInvStringBlock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udict_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_count_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_nextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openCharStringsEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openFromStringEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openUCharStringsEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_unextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_unext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareCaselessUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareIChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_count_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_deleteHashtable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_find_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_geti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashCaselessUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashIChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iget_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_igeti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_initSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_init_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iput_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iputi_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iremove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iremovei_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_nextElement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_openSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_put_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_puti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removeAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removeElement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_remove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removei_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyComparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyDeleter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyHasher_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setResizePolicy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setValueComparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setValueDeleter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_IDNToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_IDNToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_compare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToASCII_UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToUnicodeUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToASCII_UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToUnicodeUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_openUTS46_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_toASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_toUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_current32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_getState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_next32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_previous32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setCharacterIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setReplaceable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setUTF16BE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getDialectHandling_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_keyDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_keyValueDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_languageDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_localeDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_openForContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_regionDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_scriptCodeDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_scriptDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_variantDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_addItemBeginList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_addItemEndList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_close_keyword_values_iterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_containsString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_count_keyword_values_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_createEmptyList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_deleteList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getListFromEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getListSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_next_keyword_value_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_removeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_resetList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_reset_keyword_values_iterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_acceptLanguageFromHTTP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_acceptLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_addLikelySubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_canonicalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_forLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getBaseName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getCharacterOrientation_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getCountry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayCountry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayKeyword_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayScriptInContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayVariant_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISO3Country_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISO3Language_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISOCountries_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISOLanguages_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLineOrientation_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLocaleForLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getParent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getTableStringWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getVariant_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_isRightToLeft_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_minimizeSubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openAvailableByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openKeywordList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_setDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_setKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLegacyKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLegacyType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toUnicodeLocaleKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toUnicodeLocaleType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_addLikelySubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_forLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_getRegionForSupplementalData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_minimizeSubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_toLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umtx_lock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umtx_unlock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_buildImmutable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_fromUCPMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_fromUCPTrie_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_setRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_append_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_composePair_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getCombiningClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getDecomposition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFCInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFDInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKCCasefoldInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKCInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKDInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getRawDecomposition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_hasBoundaryAfter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_hasBoundaryBefore_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_isInert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_isNormalized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_normalizeSecondAndAppend_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_normalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_openFiltered_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_quickCheck_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_spanQuickCheckYes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_compare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_concatenate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_isNormalizedWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_isNormalized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_normalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_quickCheckWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_quickCheck_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_add32_overflow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_aestrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_asciitolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_calloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ceil_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareASCIIPropertyNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareEBCDICPropertyNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareInvEbcdicAsAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToLCIDPlatform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToPosix_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_deleteUObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dl_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dl_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dlsym_func_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_eastrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicFromAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicToAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicToLowercaseAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdictolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fabs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_floor_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmax_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmin_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmod_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_free_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getCharNameCharacters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getDefaultLocaleID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getMaxCharNameLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getNaN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getRawUTCtime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getStaticCurrencyName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getUTCtime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_int32Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isASCIILetter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInfinite_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInvariantString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInvariantUString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isNaN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isNegativeInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isPositiveInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_itou_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_log_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_malloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_maxMantissa_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_max_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_maximumPtr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_min_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_modf_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_mul32_overflow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_parseCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pathIsAbsolute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pow10_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_realloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_round_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_sortArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_stableBinarySearch_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strdup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_stricmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strndup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strnicmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_syntaxError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_timezone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_trunc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzname_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzname_clear_cache_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_uint16Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_uint32Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_cloneArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compactToUTrie2Handler_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compactToUTrie2WithRowIndexes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getRow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_setValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_countArrayItems_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_findResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_findSubResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getAllItemsWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByKeyWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getFunctionalEquivalent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getIntVector_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getKeywordValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocaleInternal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getNextResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getNextString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByKeyWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8StringByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8StringByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8String_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getValueWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionNumberInternal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionNumber_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_hasNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_initStackObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openAvailableLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openDirectFillIn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openDirect_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openFillIn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openNoDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_resetIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_breaksBetweenLetters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_closeRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getSampleString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getScriptExtensions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getShortName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_hasScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_isCased_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_isRightToLeft_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_nextRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_openRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_resetRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_setRunText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addAllCodePoints_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_add_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyIntPropertyValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyPropertyAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_charAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_clear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_cloneAsThawed_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_closeOver_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_compact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_complementAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_complement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsAllCodePoints_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsNone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsSome_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_contains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getItemCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getItem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedRangeCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_indexOf_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_isEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_isFrozen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openPatternOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeAllStrings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_remove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_resemblesPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_retainAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_retain_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_serializedContains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_setSerializedToOne_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_size_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanBackUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_span_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_openByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_prepare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashCharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashICharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashUCharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_char32At_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_copy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_current32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_extract_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_getNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_getPreviousNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_hasMetaData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_isLengthExpensive_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_isWritable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_moveIndex32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_nativeLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_next32From_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_next32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openCharacterIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openConstUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openReplaceable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_previous32From_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_previous32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_replace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_setNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_setup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_appendCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_back1SafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_nextCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_prevCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_data_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_entry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_exit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_functionName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_getFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_getLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_setFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_setLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_vformat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_cloneAsThawed_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_enumForLeadSurrogate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_enum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_fromUTrie_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_get32FromLeadSurrogateCodeUnit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_get32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_internalU8NextIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_internalU8PrevIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_isFrozen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_openDummy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_set32ForLeadSurrogateCodeUnit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_set32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_setRange32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_defaultGetFoldingOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_enum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_get32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_getData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_set32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_setRange32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_swapAnyVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_unserializeDummy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_unserialize_66);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6611StringPiece4nposE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6613ICUServiceKey16PREFIX_DELIMITERE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData14TRANSFORM_NONEE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData14TRIE_TYPE_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData15TRIE_HAS_VALUESE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData15TRIE_TYPE_BYTESE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData16TRIE_TYPE_UCHARSE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData19TRANSFORM_TYPE_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData21TRANSFORM_OFFSET_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData21TRANSFORM_TYPE_OFFSETE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_666UMutex9gListHeadE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", icudt66_dat);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", utf8_countTrailBytes_66);
-}
-// clang-format on
diff --git a/overriding/libicuuc/stubs_arm64.cc b/overriding/libicuuc/stubs_arm64.cc
deleted file mode 100644
index 17dcf16..0000000
--- a/overriding/libicuuc/stubs_arm64.cc
+++ /dev/null
@@ -1,4645 +0,0 @@
-//
-// Copyright (C) 2020 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-// clang-format off
-#include "native_bridge_support/vdso/interceptable_functions.h"
-
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_int64ToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_integerToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_stringToInteger_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_toLowerCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(T_CString_toUpperCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_ESCAPE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_SKIP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_STOP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_FROM_U_CALLBACK_SUBSTITUTE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_ESCAPE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_SKIP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_STOP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(UCNV_TO_U_CALLBACK_SUBSTITUTE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_Z33uscript_getSampleUnicodeString_6611UScriptCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable12appendStringEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable15appendCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable15getAppendBufferEiiPDsiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Appendable21reserveAppendCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610AppendableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610AppendableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString14appendPathPartENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString14ensureCapacityEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString15getAppendBufferEiiRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString20appendInvariantCharsEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString20appendInvariantCharsERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString27ensureEndsWithFileSeparatorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString6appendEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString6appendEcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString8copyFromERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharString8truncateEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharStringC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610CharStringaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService11clearCachesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService17clearServiceCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService19createSimpleFactoryEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService21reInitializeFactoriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUService5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610ICUServiceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer10quickCheckERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer11clearBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer11concatenateERKNS_13UnicodeStringES3_RS1_18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer12isNormalizedERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer12setIndexOnlyEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer13nextNormalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer17previousNormalizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4initEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7composeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setModeE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextENS_14ConstChar16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer7setTextERKNS_17CharacterIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9decomposeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9normalizeERKNS_13UnicodeStringE18UNormalizationModeiRS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610Normalizer9setOptionEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ENS_14ConstChar16PtrEi18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKNS_13UnicodeStringE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKNS_17CharacterIteratorE18UNormalizationMode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610NormalizerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610StringPair6createERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610StringPairC2ERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie10branchNextEPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie15findUniqueValueEPKDsaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie16nextForCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie17firstForCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie19getNextBranchUCharsEPKDsiRNS_10AppendableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie25findUniqueValueFromBranchEPKDsiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie4nextENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator10branchNextEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8Iterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorC2ENS_14ConstChar16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorC2ERKS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrie8nextImplEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UCharsTrieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UStringSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UStringSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10complementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10createFromERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10setPatternEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11applyFilterEPFaiPvES1_PKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11exclusiveOrEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11getSingleCPERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet11swapBuffersEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringERKS1_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12applyPatternERNS_21RuleCharacterIteratorEPKNS_11SymbolTableERNS_13UnicodeStringEjMS0_FRS0_iEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet12nextCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13complementAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13complementAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet13createFromAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet14releasePatternEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet15allocateStringsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16removeAllStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet16resemblesPatternERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet18applyPropertyAliasERKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20applyPropertyPatternERKNS_13UnicodeStringERNS_13ParsePositionER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20applyPropertyPatternERNS_21RuleCharacterIteratorERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet20ensureBufferCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet21applyIntPropertyValueE9UPropertyiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet23applyPatternIgnoreSpaceERKNS_13UnicodeStringERNS_13ParsePositionEPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet24resemblesPropertyPatternERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet24resemblesPropertyPatternERNS_21RuleCharacterIteratorEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3addEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet3setEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet4_addERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6addAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6addAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6freezeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6removeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEPKiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet6retainEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet7compactEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet8copyFromERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9closeOverEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9matchRestERKNS_11ReplaceableEiiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9removeAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9retainAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSet9retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2EPKtiNS0_14ESerializationER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2ERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6610UnicodeSetaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier11addListenerEPKNS_13EventListenerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier13notifyChangedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifier14removeListenerEPKNS_13EventListenerER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICUNotifierD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility11parseNumberERKNS_13UnicodeStringERia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendNumberERNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEPKNS_14UnicodeMatcherEaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringERKS1_aaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEiaaS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parseIntegerERKNS_13UnicodeStringERii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringERKNS_11ReplaceableEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringEiiS3_Pi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility13isUnprintableEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility14skipWhitespaceERKNS_13UnicodeStringERia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility17escapeUnprintableERNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility17parseAsciiIntegerERKNS_13UnicodeStringERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility22parseUnicodeIdentifierERKNS_13UnicodeStringERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ICU_Utility9parseCharERKNS_13UnicodeStringERiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611LocaleBased12setLocaleIDsEPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611LocaleBased12setLocaleIDsERKNS_6LocaleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MessageImpl24appendReducedApostrophesERKNS_13UnicodeStringEiiRS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611MessageImpl33appendSubMessageWithoutSkipSyntaxERKNS_14MessagePatternEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer211getInstanceEPKcS2_19UNormalization2ModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer214getNFCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer214getNFDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer215getNFKCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer215getNFKDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer223getNFKCCasefoldInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer2D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611Normalizer2D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ReplaceableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611ReplaceableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPiece3setEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2ERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611StringPieceC2ERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611SymbolTableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6611SymbolTableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil12appendChangeEPKhS2_PKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil12appendChangeEiPKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil14appendTwoBytesEiRNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil15appendCodePointEiiRNS_8ByteSinkEPNS_5EditsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil15appendUnchangedEPKhS2_RNS_8ByteSinkEjPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ByteSinkUtil23appendNonEmptyUnchangedEPKhiRNS_8ByteSinkEjPNS_5EditsE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CacheKeyBaseD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612CacheKeyBaseD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateInterval16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalC2Edd);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612DateIntervalaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps12isIdentifierEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps12isWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipIdentifierEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipWhiteSpaceEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14skipWhiteSpaceERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps14trimWhiteSpaceEPKDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps20isSyntaxOrWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612PatternProps8isSyntaxEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ResourceSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612ResourceSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SharedObjectD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612SharedObjectD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCache11getInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCache17setEvictionPolicyEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6612UnifiedCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator10unregisterEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator12makeInstanceERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator13buildInstanceERKNS_6LocaleEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14createInstanceERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator16registerInstanceEPS0_RKNS_6LocaleE18UBreakIteratorTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator18createLineInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator18createWordInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19createTitleInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator22createSentenceInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIterator23createCharacterInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2ERKNS_6LocaleES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613BreakIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListener16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListenerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613EventListenerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey11parsePrefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey11parseSuffixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKey8fallbackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ICUServiceKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder10setVariantENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder11setLanguageENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder12setExtensionEcNS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder14setLanguageTagENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder15clearExtensionsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder18copyExtensionsFromERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder23setUnicodeLocaleKeywordENS_11StringPieceES1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder25addUnicodeLocaleAttributeENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder28removeUnicodeLocaleAttributeENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder5buildER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setRegionENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilder9setScriptENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher6ResultaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder14setFavorSubtagE20ULocMatchFavorSubtag);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder16setDefaultLocaleEPKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder18addSupportedLocaleERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder19setSupportedLocalesERNS_6Locale8IteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder21clearSupportedLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder27ensureSupportedLocaleVectorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder27setDemotionPerDesiredLocaleE17ULocMatchDemotion);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7Builder33setSupportedLocalesFromListStringENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcher7BuilderaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherC2ERKNS0_7BuilderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleMatcheraSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility12isFallbackOfERKNS_13UnicodeStringES3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility18initLocaleFromNameERKNS_13UnicodeStringERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility18initNameFromLocaleERKNS_6LocaleERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility21canonicalLocaleStringEPKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613LocaleUtility23getAvailableLocaleNamesERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePosition16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePositionD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ParsePositionD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase10toCategoryEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase10toCategoryERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613PluralMapBase15getCategoryNameENS0_8CategoryE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ResourceValueD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613ResourceValueD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613SimpleFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilter7setDataEPKNS_23TransliterationRuleDataE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeFilterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString10padLeadingEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString11padTrailingEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString12fastCopyFromERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString13releaseBufferEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString14copyFieldsFromERS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString14findAndReplaceEiiRKS0_iiS2_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16doCodepageCreateEPKciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16doCodepageCreateEPKciS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString18cloneArrayIfNeededEiiaPPia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString19getTerminatedBufferEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString20handleReplaceBetweenEiiRKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4copyEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4swapERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString4trimEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString5setToEPDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString5setToEaNS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString6addRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString6appendEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7caseMapEijPNS_13BreakIteratorEPFiijS2_PDsiPKDsiPNS_5EditsER10UErrorCodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7replaceEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toLowerERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toLowerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toUpperERKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7toUpperEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString7unBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8allocateEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8copyFromERKS0_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8doAppendEPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8doAppendERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8foldCaseEj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString8fromUTF8ENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReplaceEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReplaceEiiRKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9doReverseEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9fromUTF32EPKii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9getBufferEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9removeRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9setCharAtEiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeString9setToUTF8ENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKcS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciNS0_10EInvariantE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EPKciS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2ERKS0_ii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2EaNS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringC2Eiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6613UnicodeStringaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern10skipDoubleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern11copyStorageERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern11parseDoubleEiiaP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern12addLimitPartEi23UMessagePatternPartTypeiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern12parseMessageEiii22UMessagePatternArgTypeP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern13isArgTypeCharEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern13setParseErrorEP11UParseErrori);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14parseArgNumberERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14skipIdentifierEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern14skipWhiteSpaceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16addArgDoublePartEdiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseChoiceStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseChoiceStyleEiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parsePluralStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseSelectStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern16parseSimpleStyleEiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern20validateArgumentNameERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern22inMessageFormatPatternEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern23inTopLevelChoiceMessageEi22UMessagePatternArgType);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern24parsePluralOrSelectStyleE22UMessagePatternArgTypeiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern5parseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern7addPartE23UMessagePatternPartTypeiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isChoiceEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isPluralEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8isSelectEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8parseArgEiiiP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern8preParseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern9isOrdinalEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePattern9postParseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2E29UMessagePatternApostropheModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614MessagePatternaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13getNextStringEPPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13getNextStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle13resetIteratorEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle15getWithFallbackEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle18constructForLocaleERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundle7getNextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2EP15UResourceBundleR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2EPKcRKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614ResourceBundleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctor16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeFunctorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6614UnicodeMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE12aliasInsteadEPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE13orphanOrCloneEiRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE17resetToStackArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EE6resizeEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2EOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2ERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EED2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEaSEOS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEaSERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEeqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEixEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615MaybeStackArrayIcLi40EEneERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2Impl4initEPKiPK7UCPTriePKtPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2Impl7combineEPKti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2ImplD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615Normalizer2ImplD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListener16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListenerD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615ServiceListenerD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter22getTextWithNoArgumentsEPKDsiPii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter27applyPatternMinMaxArgumentsERKNS_13UnicodeStringEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatter6formatEPKDsiPKPKNS_13UnicodeStringERS3_S5_aPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatterD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6615SimpleFormatteraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder10buildBytesE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder12writeDeltaToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder16buildStringPieceE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17BTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17BTLinearMatchNodeC2EPKciPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17writeElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder17writeValueAndTypeEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder18writeValueAndFinalEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder3addENS_11StringPieceEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5clearEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5writeEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilder5writeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616BytesTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ICULocaleServiceD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryC2EiRKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616LocaleKeyFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer10previousCCEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12appendZeroCCEPKDsS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12appendZeroCCEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12removeSuffixEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer12skipPreviousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer19appendSupplementaryEihR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer4initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6appendEPKDsiahhR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6insertEih);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6removeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBuffer6resizeEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616ReorderingBufferC2ERKNS_15Normalizer2ImplERNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616UnifiedCacheBaseD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6616UnifiedCacheBaseD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator11cleanPiecesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator14getEquivalentsERKNS_13UnicodeStringERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator15getEquivalents2EPNS_9HashtableEPKDsiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator7extractEPNS_9HashtableEiPKDsiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator7permuteERNS_13UnicodeStringEaPNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator9getSourceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIterator9setSourceERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorC2ERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CanonicalIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIterator12firstPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIterator14first32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Eiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617CharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617DictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617ICUServiceFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617ICUServiceFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration19ensureCharsCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration5snextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration5unextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumeration8setCharsEPKciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder10equalNodesEPKvS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder12registerNodeEPNS0_4NodeER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14BranchHeadNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14BranchHeadNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14FinalValueNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14ListBranchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder14ListBranchNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15LinearMatchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15SplitBranchNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder15SplitBranchNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder17makeBranchSubNodeEiiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder18registerFinalValueEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder18writeBranchSubNodeEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder20createCompactBuilderEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder20deleteCompactBuilderEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder21IntermediateValueNode19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder21IntermediateValueNode5writeERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder4Node19markRightEdgesFirstEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder5buildE22UStringTrieBuildOptioniR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder8hashNodeEPKv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder8makeNodeEiiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilder9writeNodeEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617StringTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder11buildUCharsE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder12writeDeltaToEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder14ensureCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder17writeElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder17writeValueAndTypeEaii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeC2EPKDsiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18buildUnicodeStringE22UStringTrieBuildOptionRNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder18writeValueAndFinalEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder3addERKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5writeEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilder5writeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6617UCharsTrieBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSink6AppendEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkC2EPNS_10CharStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618CharStringByteSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleE16UDialectHandling);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleEP15UDisplayContexti);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNamesD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocaleDisplayNamesD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList14orphanLocaleAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList3addERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityList4sortER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityListC2ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618LocalePriorityListD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory10getNFCImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory11getInstanceE18UNormalizationModeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory11getNFKCImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getFCCInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getFCDInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory14getNFKC_CFImplER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory15getNoopInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618Normalizer2Factory7getImplEPKNS_11Normalizer2E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration16fromUEnumerationEP12UEnumerationR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration4nextEPiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration5resetER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumeration5snextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationC2EP12UEnumeration);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UStringEnumerationD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator5resetERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9getStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9loadRangeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIterator9nextRangeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorC2ERKNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6618UnicodeSetIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619FilteredNormalizer2D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6619FilteredNormalizer2D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink5ResetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSink6AppendEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSinkC2EPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620CheckedArrayByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620StackUResourceBundleC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620StackUResourceBundleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6620umtx_initImplPreInitERNS_9UInitOnceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6621umtx_initImplPostInitERNS_9UInitOnceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622BytesDictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622BytesDictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12addFollowingEiiNS1_20UpdatePositionValuesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12addPrecedingEiiNS1_20UpdatePositionValuesE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache12populateNearEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache17populateFollowingEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache17populatePrecedingER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache4seekEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache5resetEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache6nextOLEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9dumpCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9followingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCache9precedingEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheC2EPS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10BreakCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10dumpTablesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10handleNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator10isBoundaryEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator14getBinaryRulesERj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache18populateDictionaryEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9followingEiPiS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9precedingEiPiS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheC2EPS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator16refreshInputTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator17createBufferCloneEPvRiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator18handleSafePreviousEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator22getLanguageBreakEngineEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4initER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator7setTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator7setTextERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9adoptTextEPNS_17CharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9dumpCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9followingEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIterator9precedingEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EP11UDataMemoryR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EPKhjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2EPNS_14RBBIDataHeaderER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622RuleBasedBreakIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_6LocaleEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622SimpleLocaleKeyFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator10previous32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator10setIndex32Ei);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator11hasPreviousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator11nextPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator12firstPostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator13next32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator14first32PostIncEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4lastEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4moveEiNS_17CharacterIterator7EOriginE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator4nextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator5firstEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6last32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6move32EiNS_17CharacterIterator7EOriginE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator6next32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7first32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator7setTextENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator8previousEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIterator8setIndexEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6622UCharCharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623FullCaseFoldingIterator4nextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623FullCaseFoldingIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator7getTextERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIterator7setTextERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623StringCharacterIteratoraSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UCharsDictionaryMatcherD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UCharsDictionaryMatcherD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable12appendStringEPKDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable14appendCodeUnitEDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable15appendCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable15getAppendBufferEiiPDsiPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendable21reserveAppendCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendableD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6623UnicodeStringAppendableD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ForwardCharacterIteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactory16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6624ICUResourceBundleFactoryD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilder19createEmptyInstanceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6628FilteredBreakIteratorBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder18suppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder20unsuppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilder5buildEPNS_13BreakIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_6634SimpleFilteredBreakIteratorBuilderD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664CStrC2ERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664CStrD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNA19createUTS46InstanceEjR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNAD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_664IDNAD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits10addReplaceEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits12addUnchangedEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits12releaseArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits14mergeAndAppendERKS0_S2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits6appendEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator10readLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator17updateNextIndexesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator21updatePreviousIndexesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator31destinationIndexFromSourceIndexEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator31sourceIndexFromDestinationIndexEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator4nextEaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator6noNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator8previousER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8Iterator9findIndexEiaR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits8IteratorC2EPKtiaa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9copyArrayERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9growArrayEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665Edits9moveArrayERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_665EditsaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getEnglishEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getGermanyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10getItalianEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10setDefaultERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale10setToBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale11getJapaneseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale12initBaseNameER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14createFromNameEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14forLanguageTagENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14getLocaleCacheEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale14setFromPOSIXIDEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15createCanonicalEPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getCanadaFrenchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getISOCountriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15getISOLanguagesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15minimizeSubtagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15setKeywordValueENS_11StringPieceES1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale15setKeywordValueEPKcS2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale16addLikelySubtagsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale19getAvailableLocalesERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale20getSimplifiedChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale21getTraditionalChineseEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale22setUnicodeKeywordValueENS_11StringPieceES1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale4initEPKca);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale5getUKEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale5getUSEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale6getPRCEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale7getRootEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8IteratorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getChinaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getItalyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getJapanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale8getKoreaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getCanadaEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getFranceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getFrenchEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getGermanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getKoreanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getLocaleEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666Locale9getTaiwanEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2ENS0_11ELocaleTypeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2EOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2EPKcS2_S2_S2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2ERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleC2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleaSEOS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666LocaleaSERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UMutex7cleanupEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UMutex8getMutexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack3popEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStack4popiEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackC2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_666UStackD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToLowerEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToLowerEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorENS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorES2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToUpperEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap11utf8ToUpperEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap4foldEjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toLowerEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toTitleEPKcjPNS_13BreakIteratorEPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap7toUpperEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap8utf8FoldEjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667CaseMap8utf8FoldEjPKciPciPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorydaEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorydlEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorynaEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UMemorynwEm);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UObjectD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UObjectD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10addElementEPvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10addElementEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector10setDeleterEPFvPvE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector11setComparerEPFa8UElementS1_E);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12setElementAtEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12setElementAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertE8UElementPFaS1_S1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertEPvPFa8UElementS2_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector12sortedInsertEiPFa8UElementS1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector13removeElementEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector14ensureCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15insertElementAtEPviR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15insertElementAtEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15orphanElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector15removeElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector17removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector19sortWithUComparatorEPFiPKvS2_S2_ES2_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector4sortEPFa8UElementS1_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector5_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector5sortiER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector6assignERKS0_PFvP8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector7setSizeEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector9removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVector9retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorC2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667UVectoreqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_667unisets3getENS0_3KeyE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSink15GetAppendBufferEiiPciPi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSink5FlushEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSinkD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_668ByteSinkD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie10branchNextEPKhii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie11jumpByDeltaEPKh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie15findUniqueValueEPKhaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie18getNextBranchBytesEPKhiRNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie25findUniqueValueFromBranchEPKhiaRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie4nextEPKci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie4nextEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie6appendERNS_8ByteSinkEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator10branchNextEPKhiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator15truncateAndStopEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator4nextER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8Iterator5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorC2EPKviR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorC2ERKS0_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8IteratorD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie8nextImplEPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrie9readValueEPKhi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669BytesTrieD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCode5resetEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCodeD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669ErrorCodeD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey16getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_iR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKey8fallbackEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyC2ERKNS_13UnicodeStringES3_PS2_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669LocaleKeyD2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3212setElementAtEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3212sortedInsertEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3214expandCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3214setMaxCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3215insertElementAtEiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3215removeElementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3216getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector3217removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector325_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector326assignERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector327setSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector329removeAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector329retainAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32C2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32C2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector32eqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6412setElementAtEli);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6414expandCapacityEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6414setMaxCapacityEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6415insertElementAtEliR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6416getStaticClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector6417removeAllElementsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector645_initEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector646assignERKS0_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector647setSizeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64C2ER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64C2EiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64D0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64D2Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_669UVector64eqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_66eqERKNS_11StringPieceES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZN6icu_66plERKNS_13UnicodeStringES2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString11lastIndexOfEc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString8containsENS_11StringPieceE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610CharString9cloneDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService12getTimestampEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService13handleDefaultERKNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14countFactoriesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_RKNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService14notifyListenerERNS_13EventListenerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15acceptsListenerERKNS_13EventListenerE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService15getVisibleIDMapER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService3getERKNS_13UnicodeStringEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService3getERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringEPKNS_17ICUServiceFactoryER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService7getNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610ICUService9isDefaultEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer10startIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8endIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8getIndexEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8getUModeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610Normalizer9getOptionEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610NormalizereqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610StringPair7isBogusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie13getNextUCharsERNS_10AppendableE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UCharsTrie8Iterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet10_toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet10hasStringsEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11containsAllERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11getRangeEndEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet11stringsSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12containsNoneEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet12spanBackUTF8EPKci17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13addMatchSetToERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13cloneAsThawedEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13findCodePointEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13getRangeCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet13getRangeStartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet15stringsContainsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet16_generatePatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet17matchesIndexValueEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet4sizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet4spanEPKDsi17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet6charAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet7indexOfEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet7isEmptyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8containsEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8spanBackEPKDsi17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet8spanUTF8EPKci17USetSpanCondition);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9getStringEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9serializeEPtiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6610UnicodeSeteqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611LocaleBased11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611LocaleBased9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer211composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer217getCombiningClassEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Normalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Replaceable11hasMetaDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6611Replaceable5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateInterval17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateInterval5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612DateIntervaleqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject11getRefCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject20deleteIfZeroRefCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject6addRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612SharedObject9removeRefEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache10addHardRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11_inProgressEPK12UHashElement);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11_inProgressEPKNS_12SharedObjectE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache11unusedCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache12_isEvictableEPK12UHashElement);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache12_nextElementEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache13removeHardRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache13removeSoftRefEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache15_registerMasterEPKNS_12CacheKeyBaseEPKNS_12SharedObjectE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache16autoEvictedCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache17_runEvictionSliceEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache18_putIfAbsentAndGetERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache24handleUnreferencedObjectEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache27_computeCountOfItemsToEvictEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache4_getERKNS_12CacheKeyBaseERPKNS_12SharedObjectEPKvR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache4_putEPK12UHashElementPKNS_12SharedObjectE10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache5_pollERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache5flushEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache6_fetchEPK12UHashElementRPKNS_12SharedObjectER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache6_flushEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache7_putNewERKNS_12CacheKeyBaseEPKNS_12SharedObjectE10UErrorCodeRS7_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6612UnifiedCache8keyCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator13getRuleStatusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613BreakIterator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613EventListener17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey11canonicalIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey12isFallbackOfERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey17currentDescriptorERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey5getIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey6prefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ICUServiceKey9currentIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleBuilder11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher12getBestMatchERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher12getBestMatchERNS_6Locale8IteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher13internalMatchERKNS_6LocaleES3_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher16getBestSuppIndexENS_3LSREPNS_17LocaleLsrIteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher18getBestMatchResultERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher18getBestMatchResultERNS_6Locale8IteratorER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher25getBestMatchForListStringENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher6Result18makeResolvedLocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher7Builder11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613LocaleMatcher7Builder5buildER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ParsePosition17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ParsePosition5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceArray19internalGetResourceEPK12ResourceDatai);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceArray8getValueEiRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceTable14getKeyAndValueEiRPKcRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613ResourceTable9findValueEPKcRNS_13ResourceValueE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613SimpleFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeFilter9toMatcherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString10doHashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString10unescapeAtERi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11countChar32Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11getChar32AtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11hasMetaDataEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11lastIndexOfEPKDsiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString11moveIndex32Eii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doCaseCompareEiiPKDsiij);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doLastIndexOfEDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13doLastIndexOfEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString13tempSubStringEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14extractBetweenEiiRS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14getChar32LimitEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString14getChar32StartEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString17hasMoreChar32ThanEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString23doCompareCodePointOrderEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString6toUTF8ERNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString6toUTF8EiiPci);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractENS_9Char16PtrEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEPciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPciNS0_10EInvariantE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPcj);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7extractEiiPcjPKc);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7indexOfEPKDsiiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString7toUTF32EPiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8char32AtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8doEqualsERKS0_i);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8refCountEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString8unescapeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doCompareEiiPKDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doExtractEiiPDsi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doExtractEiiPciP10UConverterR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doIndexOfEDsii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9doIndexOfEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9getCharAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6613UnicodeString9getLengthEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern15getNumericValueERKNS0_4PartE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern15getPluralOffsetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern23autoQuoteApostropheDeepEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern4ParteqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePattern8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614MessagePatterneqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle10getVersionEPh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle11getStringExEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle11getStringExEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle12getIntVectorERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle16getVersionNumberEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle3getEPKcR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle3getEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle6getIntER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle6getKeyEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getSizeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7getUIntER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getBinaryERiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614ResourceBundle9getStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614UnicodeFunctor10toReplacerEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6614UnicodeFunctor9toMatcherEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE11getCapacityEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE13getArrayLimitEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EE8getAliasEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615MaybeStackArrayIcLi40EEixEl);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl11composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl11composeUTF8EjaPKhS2_PNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl12addLcccCharsERNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl13addCompositesEPKtRNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl13getCanonValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl14decomposeShortEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl14decomposeShortEPKhS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16composeAndAppendEPKDsS2_aaRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getCanonStartSetEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getCanonStartSetEiRNS_10UnicodeSetE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16getDecompositionEiPDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl16makeFCDAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl17addPropertyStartsEPK9USetAdderR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl17composeQuickCheckEPKDsS2_aP25UNormalizationCheckResult);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18decomposeAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19ensureCanonIterDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19findNextFCDBoundaryEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl19getRawDecompositionEiPDsRi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20findNextCompBoundaryEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20getFCD16FromNormDataEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKhS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl21isCanonSegmentStarterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl22hasDecompBoundaryAfterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl23findPreviousFCDBoundaryEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl23hasDecompBoundaryBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl24findPreviousCompBoundaryEPKDsS2_a);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl26addCanonIterPropertyStartsEPK9USetAdderR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl27makeCanonIterDataFromNorm16EiitRNS_13CanonIterDataER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl28norm16HasDecompBoundaryAfterEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl29norm16HasDecompBoundaryBeforeEt);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl30copyLowPrefixFromNulTerminatedEPKDsiPNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl7composeEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl7makeFCDEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_RNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9decomposeEitRNS_16ReorderingBufferER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615Normalizer2Impl9recomposeERNS_16ReorderingBufferEia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615ServiceListener17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter15formatAndAppendEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter16formatAndReplaceEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_S3_RS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder14getElementUnitEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder15getElementValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder17BTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder17countElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder21getLimitOfLinearMatchEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder22getElementStringLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder23skipElementsBySomeUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616BytesTrieBuilder26indexOfElementWithNextUnitEiiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService19getAvailableLocalesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService22validateFallbackLocaleEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiPS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringEiR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory10handlesKeyERKNS_13ICUServiceKeyER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory15getSupportedIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616LocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ReorderingBuffer6equalsEPKDsS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6616ReorderingBuffer6equalsEPKhS2_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617CanonicalIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumeration5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumerationeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringEnumerationneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14BranchHeadNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14FinalValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder14ListBranchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder15LinearMatchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder15SplitBranchNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder21IntermediateValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder4NodeeqERKS1_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617StringTrieBuilder9ValueNodeeqERKNS0_4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder14getElementUnitEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder15getElementValueEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder17countElementUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder21getLimitOfLinearMatchEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder22getElementStringLengthEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder23skipElementsBySomeUnitsEiii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6617UCharsTrieBuilder26indexOfElementWithNextUnitEiiDs);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618LocalePriorityList8localeAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UStringEnumeration17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UStringEnumeration5countER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6618UnicodeSetIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer210quickCheckERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer211composePairEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer212isNormalizedERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjPKciRNS_8ByteSinkEPNS_5EditsE17USetSpanConditionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216getDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216hasBoundaryAfterEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217getCombiningClassEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217hasBoundaryBeforeEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer217spanQuickCheckYesERKNS_13UnicodeStringER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_aR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer26appendERNS_13UnicodeStringERKS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer27isInertEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_17USetSpanConditionR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_R10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622BytesDictionaryMatcher9transformEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator13getRuleStatusEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator7getTextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8getRulesEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8getUTextEP5UTextR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIterator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622RuleBasedBreakIteratoreqERKNS_13BreakIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622SimpleLocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIterator9current32Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6622UCharCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIterator17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIterator5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623StringCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623UCharsDictionaryMatcher7getTypeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6623UCharsDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory15getSupportedIDsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_6624ICUResourceBundleFactory17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664CStrclEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA16nameToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA17labelToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA17nameToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_664IDNA18labelToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_665Edits11copyErrorToER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_665Edits8Iterator8toStringERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale11getBaseNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale13isRightToLeftEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale13toLanguageTagERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14createKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getDisplayNameERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getDisplayNameERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale14getISO3CountryEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getISO3LanguageEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale15getKeywordValueEPKcPciR10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale16getDisplayScriptERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale16getDisplayScriptERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayCountryERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayCountryERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayVariantERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDisplayVariantERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale18getDisplayLanguageERKS0_RNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale18getDisplayLanguageERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale21createUnicodeKeywordsER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale22getUnicodeKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale5cloneEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale7getLCIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666Locale8hashCodeEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666LocaleeqERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666UStack17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_666UStack6searchEPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UObject17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector10elementAtiEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector11containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector12containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector6equalsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfE8UElementia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfEPvi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7indexOfEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector7toArrayEPPv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_667UVector9elementAtEi);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie12getNextBytesERNS_8ByteSinkE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie7currentEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie8Iterator7hasNextEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669BytesTrie8Iterator9getStringEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ErrorCode13assertSuccessEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669ErrorCode9errorNameEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey11canonicalIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey12isFallbackOfERKNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey13currentLocaleERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey15canonicalLocaleERNS_6LocaleE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey17currentDescriptorERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey17getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey4kindEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey6prefixERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669LocaleKey9currentIDERNS_13UnicodeStringE);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3211containsAllERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3212containsNoneERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector3217getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector326equalsERKS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector327indexOfEii);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZNK6icu_669UVector6417getDynamicClassIDEv);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6610UnicodeSetD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6610UnicodeSetD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6613UnicodeFilterD0Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_N6icu_6613UnicodeFilterD1Ev);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_6610UnicodeSet13addMatchSetToERS0_);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_6610UnicodeSet17matchesIndexValueEh);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(_ZThn8_NK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(locale_getKeywordsStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_countArrayItems_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getArrayItem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getBinaryNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getIntVectorNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getPublicType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getStringNoTrace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getTableItemByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_getTableItemByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(res_read_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_UCharsToChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_austrcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_austrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_caseInsensitivePrefixMatch_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catclose_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catgets_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_catopen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charAge_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charDigitValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charFromName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charMirror_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_charsToUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_cleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_countChar32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_digit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_enumCharNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_enumCharTypes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_errorName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_flushDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_foldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_forDigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getBidiPairedBracket_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getBinaryPropertySet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getCombiningClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDataDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDataVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getFC_NFKC_Closure_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getISOComment_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMaxValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyMinValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getIntPropertyValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getNumericValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyValueEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getPropertyValueName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getTimeZoneFilesDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getUnicodeVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_hasBinaryProperty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_init_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDIgnorable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isIDStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isISOControl_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaIDPart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaIDStart_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isJavaSpaceChar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isMirrored_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUAlphabetic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isULowercase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUUppercase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isUWhiteSpace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isWhitespace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isalnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isalpha_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isbase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isblank_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_iscntrl_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isdefined_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isdigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isgraph_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_islower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isprint_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_ispunct_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isspace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_istitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_isxdigit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memmove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memrchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memrchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_memset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_releaseDefaultConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setAtomicIncDecFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setDataDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setMemoryFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setMutexFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_setTimeZoneFilesDirectory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_shapeArabic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCaseCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCompareIter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFindFirst_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFindLast_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFoldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromJavaModifiedUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF32WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8Lenient_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strFromWCS_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strHasMoreChar32Than_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToJavaModifiedUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF32WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF8WithSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strToWCS_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strcspn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strlen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncasecmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncmpCodePointOrder_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strpbrk_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrchr32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrchr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strrstr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strspn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strstr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_strtok_r_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateUChar32s_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_terminateWChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_tolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_totitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_uastrcpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_uastrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_unescapeAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_unescape_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionFromString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionFromUString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(u_versionToString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_countParagraphs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_countRuns_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getBaseDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getClassCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getCustomizedClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getDirection_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLevelAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLevels_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getLogicalRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParaLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParagraphByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getParagraph_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getProcessedLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getReorderingMode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getReorderingOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getResultLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_getVisualRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_invertMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_isInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_isOrderParagraphsLTR_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_openSized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_orderParagraphsLTR_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_reorderLogical_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_reorderVisual_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setClassCallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setInverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setLine_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setPara_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setReorderingMode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_setReorderingOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_writeReordered_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubidi_writeReverse_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubiditransform_transform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ublock_getCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_current_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_first_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_following_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getBinaryRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getRuleStatusVec_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_getRuleStatus_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_isBoundary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_last_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_openBinaryRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_openRules_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_preceding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_refreshUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_setText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_setUText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ubrk_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_compareKeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_deleteKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucache_hashKeys_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_fold_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_getTypeOrIgnorable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_isCaseSensitive_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_isSoftDotted_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullFolding_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toFullUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_tolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_totitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucase_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_getOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setBreakIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_setOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_toTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8FoldCase_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToLower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToTitle_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucasemap_utf8ToUpper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uchar_swapNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucln_cleanupOne_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucln_registerCleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteBytes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbFromUWriteUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbToUWriteSub_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_cbToUWriteUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_compareNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_convertEx_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_convert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_countStandards_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_createConverter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_detectUnicodeSignature_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_enableCleanup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fixFileSeparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_flushCache_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUCountPending_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_fromUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getAvailableName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getCCSID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getCanonicalName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getDefaultName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getFromUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getInvalidChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getInvalidUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getMaxCharSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getMinCharSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getNextUChar_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getPlatform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStandardName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStandard_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getStarters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getSubstChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getToUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_getUnicodeSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_countKnownConverters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_getConverterName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_stripASCIIForCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_io_stripEBCDICForCompare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_isAmbiguous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_isFixedWidth_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_load_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openAllNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openCCSID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openPackage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openStandardNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_resetFromUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_resetToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_safeClone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setDefaultName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setFromUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setSubstChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setSubstString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_setToUCallBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_swapAliases_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toAlgorithmic_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUCountPending_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_toUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_unload_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnv_usesFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_selectForString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_selectForUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucnvsel_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_looksLikeCollationBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_swapInverseUCA_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucol_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucpmap_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucpmap_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_getValueWidth_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalSmallIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalSmallU8Index_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_internalU8PrevIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_openFromBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucptrie_toBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_countCurrencies_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_forLocaleAndDate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_forLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getDefaultFractionDigitsForUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getDefaultFractionDigits_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getKeywordValuesForLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getNumericCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getPluralName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getRoundingIncrementForUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_getRoundingIncrement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_isAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_openISOCurrencies_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_register_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ucurr_unregister_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_closeSwapper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getInfo_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getMemory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_getRawMemory_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openChoice_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openSwapperForInputData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_openSwapper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_printError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_readInt16_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_readInt32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setAppData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setCommonData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_setFileAccess_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_swapDataHeader_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udata_swapInvStringBlock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(udict_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_count_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_nextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openCharStringsEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openFromStringEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_openUCharStringsEnumeration_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_reset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_unextDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uenum_unext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareCaselessUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareIChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_compareUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_count_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_deleteHashtable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_find_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_geti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashCaselessUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashIChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashLong_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_hashUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iget_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_igeti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_initSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_init_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iput_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iputi_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iremove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_iremovei_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_nextElement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_openSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_put_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_puti_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removeAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removeElement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_remove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_removei_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyComparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyDeleter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setKeyHasher_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setResizePolicy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setValueComparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uhash_setValueDeleter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_IDNToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_IDNToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_compare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToASCII_UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToUnicodeUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_labelToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToASCII_UTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToUnicodeUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_nameToUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_openUTS46_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_toASCII_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uidna_toUnicode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_current32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_getState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_next32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_previous32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setCharacterIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setReplaceable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setState_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setUTF16BE_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uiter_setUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getDialectHandling_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_keyDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_keyValueDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_languageDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_localeDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_openForContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_regionDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_scriptCodeDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_scriptDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uldn_variantDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_addItemBeginList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_addItemEndList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_close_keyword_values_iterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_containsString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_count_keyword_values_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_createEmptyList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_deleteList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getListFromEnum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getListSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_getNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_next_keyword_value_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_removeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_resetList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulist_reset_keyword_values_iterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_acceptLanguageFromHTTP_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_acceptLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_addLikelySubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_canonicalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_countAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_forLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getAvailable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getBaseName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getCharacterOrientation_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getCountry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayCountry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayKeyword_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayScriptInContext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getDisplayVariant_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISO3Country_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISO3Language_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISOCountries_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getISOLanguages_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLanguage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLineOrientation_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getLocaleForLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getParent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getTableStringWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_getVariant_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_isRightToLeft_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_minimizeSubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openAvailableByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openKeywordList_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_openKeywords_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_setDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_setKeywordValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLegacyKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toLegacyType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toUnicodeLocaleKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uloc_toUnicodeLocaleType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_addLikelySubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_forLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_getRegionForSupplementalData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_minimizeSubtags_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ulocimp_toLanguageTag_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umtx_lock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umtx_unlock_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_buildImmutable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_fromUCPMap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_fromUCPTrie_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_getRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_get_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_setRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(umutablecptrie_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_append_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_composePair_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getCombiningClass_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getDecomposition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFCInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFDInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKCCasefoldInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKCInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getNFKDInstance_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_getRawDecomposition_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_hasBoundaryAfter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_hasBoundaryBefore_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_isInert_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_isNormalized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_normalizeSecondAndAppend_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_normalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_openFiltered_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_quickCheck_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_spanQuickCheckYes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm2_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_compare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_concatenate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_isNormalizedWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_isNormalized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_next_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_normalize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_previous_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_quickCheckWithOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(unorm_quickCheck_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_add32_overflow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_aestrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_asciitolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_calloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ceil_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareASCIIPropertyNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareEBCDICPropertyNames_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_compareInvEbcdicAsAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToLCIDPlatform_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToLCID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_convertToPosix_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_deleteUObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dl_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dl_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_dlsym_func_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_eastrncpy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicFromAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicToAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdicToLowercaseAscii_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_ebcdictolower_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fabs_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_floor_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmax_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmin_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_fmod_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_free_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getCharNameCharacters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getDefaultLocaleID_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getMaxCharNameLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getNaN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getRawUTCtime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getStaticCurrencyName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_getUTCtime_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_int32Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isASCIILetter_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInfinite_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInvariantString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isInvariantUString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isNaN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isNegativeInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_isPositiveInfinity_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_itou_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_log_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_malloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_maxMantissa_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_max_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_maximumPtr_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_min_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_modf_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_mul32_overflow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_parseCurrency_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pathIsAbsolute_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pow10_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_pow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_realloc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_round_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_sortArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_stableBinarySearch_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strdup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_stricmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strndup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_strnicmp_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_syntaxError_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_timezone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_toupper_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_trunc_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzname_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzname_clear_cache_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_tzset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_uint16Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uprv_uint32Comparator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_cloneArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compactToUTrie2Handler_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compactToUTrie2WithRowIndexes_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_compact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getArray_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getRow_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_getValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(upvec_setValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_countArrayItems_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_findResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_findSubResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getAllItemsWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getBinary_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByKeyWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getFunctionalEquivalent_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getIntVector_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getKeywordValues_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocaleByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocaleInternal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getLocale_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getNextResource_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getNextString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getSize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByKeyWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getStringByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUInt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8StringByIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8StringByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getUTF8String_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getValueWithFallback_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionByKey_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionNumberInternal_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersionNumber_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_getVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_hasNext_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_initStackObject_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openAvailableLocales_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openDirectFillIn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openDirect_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openFillIn_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openNoDefault_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_openU_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_resetIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ures_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_breaksBetweenLetters_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_closeRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getCode_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getSampleString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getScriptExtensions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getShortName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_getUsage_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_hasScript_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_isCased_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_isRightToLeft_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_nextRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_openRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_resetRun_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uscript_setRunText_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addAllCodePoints_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_addString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_add_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyIntPropertyValue_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_applyPropertyAlias_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_charAt_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_clear_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_cloneAsThawed_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_closeOver_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_compact_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_complementAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_complement_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsAllCodePoints_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsNone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsSome_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_containsString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_contains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getItemCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getItem_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedRangeCount_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_getSerializedSet_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_indexOf_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_isEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_isFrozen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openEmpty_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openPatternOptions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_openPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeAllStrings_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeRange_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_removeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_remove_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_resemblesPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_retainAll_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_retain_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_serializedContains_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_setSerializedToOne_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_set_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_size_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanBackUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanBack_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_spanUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_span_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(uset_toPattern_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_openByType_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_prepare_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(usprep_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashCharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashICharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(ustr_hashUCharsN_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_char32At_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_copy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_current32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_equals_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_extract_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_getNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_getPreviousNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_hasMetaData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_isLengthExpensive_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_isWritable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_moveIndex32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_nativeLength_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_next32From_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_next32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openCharacterIterator_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openConstUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openReplaceable_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUChars_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUTF8_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_openUnicodeString_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_previous32From_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_previous32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_replace_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_setNativeIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utext_setup_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_appendCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_back1SafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_nextCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utf8_prevCharSafeBody_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_data_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_entry_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_exit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_format_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_functionName_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_getFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_getLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_setFunctions_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_setLevel_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrace_vformat_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_cloneAsThawed_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_enumForLeadSurrogate_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_enum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_freeze_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_fromUTrie_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_get32FromLeadSurrogateCodeUnit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_get32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_internalU8NextIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_internalU8PrevIndex_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_isFrozen_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_openDummy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_openFromSerialized_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_set32ForLeadSurrogateCodeUnit_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_set32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_setRange32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie2_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_clone_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_close_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_defaultGetFoldingOffset_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_enum_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_get32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_getData_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_open_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_serialize_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_set32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_setRange32_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_swapAnyVersion_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_swap_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_unserializeDummy_66);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(utrie_unserialize_66);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6611StringPiece4nposE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6613ICUServiceKey16PREFIX_DELIMITERE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData14TRANSFORM_NONEE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData14TRIE_TYPE_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData15TRIE_HAS_VALUESE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData15TRIE_TYPE_BYTESE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData16TRIE_TYPE_UCHARSE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData19TRANSFORM_TYPE_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData21TRANSFORM_OFFSET_MASKE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_6614DictionaryData21TRANSFORM_TYPE_OFFSETE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(_ZN6icu_666UMutex9gListHeadE);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(icudt66_dat);
-DEFINE_INTERCEPTABLE_STUB_VARIABLE(utf8_countTrailBytes_66);
-
-static void __attribute__((constructor(0))) init_stub_library() {
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_int64ToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_integerToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_stringToInteger_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_toLowerCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", T_CString_toUpperCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_ESCAPE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_SKIP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_STOP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_FROM_U_CALLBACK_SUBSTITUTE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_ESCAPE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_SKIP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_STOP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", UCNV_TO_U_CALLBACK_SUBSTITUTE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _Z33uscript_getSampleUnicodeString_6611UScriptCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable12appendStringEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable15appendCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable15getAppendBufferEiiPDsiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Appendable21reserveAppendCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610AppendableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610AppendableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString14appendPathPartENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString14ensureCapacityEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString15getAppendBufferEiiRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString20appendInvariantCharsEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString20appendInvariantCharsERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString27ensureEndsWithFileSeparatorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString6appendEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString6appendEcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString8copyFromERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharString8truncateEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharStringC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610CharStringaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService11clearCachesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService15registerFactoryEPNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService17clearServiceCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService19createSimpleFactoryEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService21reInitializeFactoriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUService5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610ICUServiceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer10quickCheckERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer11clearBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer11concatenateERKNS_13UnicodeStringES3_RS1_18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer12isNormalizedERKNS_13UnicodeStringE18UNormalizationModeiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer12setIndexOnlyEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer13nextNormalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer17previousNormalizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4initEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7composeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setModeE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextENS_14ConstChar16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer7setTextERKNS_17CharacterIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9decomposeERKNS_13UnicodeStringEaiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9normalizeERKNS_13UnicodeStringE18UNormalizationModeiRS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610Normalizer9setOptionEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ENS_14ConstChar16PtrEi18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKNS_13UnicodeStringE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKNS_17CharacterIteratorE18UNormalizationMode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610NormalizerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610StringPair6createERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610StringPairC2ERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie10branchNextEPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie15findUniqueValueEPKDsaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie16nextForCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie17firstForCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie19getNextBranchUCharsEPKDsiRNS_10AppendableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie25findUniqueValueFromBranchEPKDsiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie4nextENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator10branchNextEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8Iterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorC2ENS_14ConstChar16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorC2ERKS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrie8nextImplEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UCharsTrieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UStringSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UStringSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10complementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10createFromERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10setPatternEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11applyFilterEPFaiPvES1_PKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11exclusiveOrEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11getSingleCPERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet11swapBuffersEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringERKS1_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12_appendToPatERNS_13UnicodeStringEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12applyPatternERNS_21RuleCharacterIteratorEPKNS_11SymbolTableERNS_13UnicodeStringEjMS0_FRS0_iEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet12nextCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13complementAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13complementAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet13createFromAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet14releasePatternEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet15allocateStringsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16removeAllStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet16resemblesPatternERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet18applyPropertyAliasERKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20applyPropertyPatternERKNS_13UnicodeStringERNS_13ParsePositionER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20applyPropertyPatternERNS_21RuleCharacterIteratorERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet20ensureBufferCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet21applyIntPropertyValueE9UPropertyiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet23applyPatternIgnoreSpaceERKNS_13UnicodeStringERNS_13ParsePositionEPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet24resemblesPropertyPatternERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet24resemblesPropertyPatternERNS_21RuleCharacterIteratorEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3addEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet3setEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet4_addERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6addAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6addAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6freezeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6removeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEPKiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet6retainEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet7compactEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet8copyFromERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9closeOverEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9matchRestERKNS_11ReplaceableEiiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9removeAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9retainAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSet9retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2EPKtiNS0_14ESerializationER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringERNS_13ParsePositionEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKNS_13UnicodeStringEjPKNS_11SymbolTableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2ERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6610UnicodeSetaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier11addListenerEPKNS_13EventListenerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier13notifyChangedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifier14removeListenerEPKNS_13EventListenerER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICUNotifierD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility11parseNumberERKNS_13UnicodeStringERia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendNumberERNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEPKNS_14UnicodeMatcherEaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringERKS1_aaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12appendToRuleERNS_13UnicodeStringEiaaS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parseIntegerERKNS_13UnicodeStringERii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringERKNS_11ReplaceableEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility12parsePatternERKNS_13UnicodeStringEiiS3_Pi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility13isUnprintableEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility14skipWhitespaceERKNS_13UnicodeStringERia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility17escapeUnprintableERNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility17parseAsciiIntegerERKNS_13UnicodeStringERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility22parseUnicodeIdentifierERKNS_13UnicodeStringERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ICU_Utility9parseCharERKNS_13UnicodeStringERiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611LocaleBased12setLocaleIDsEPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611LocaleBased12setLocaleIDsERKNS_6LocaleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611MessageImpl24appendReducedApostrophesERKNS_13UnicodeStringEiiRS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611MessageImpl33appendSubMessageWithoutSkipSyntaxERKNS_14MessagePatternEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer211getInstanceEPKcS2_19UNormalization2ModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer214getNFCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer214getNFDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer215getNFKCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer215getNFKDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer223getNFKCCasefoldInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer2D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611Normalizer2D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ReplaceableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611ReplaceableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPiece3setEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2ERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611StringPieceC2ERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611SymbolTableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6611SymbolTableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil12appendChangeEPKhS2_PKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil12appendChangeEiPKDsiRNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil14appendTwoBytesEiRNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil15appendCodePointEiiRNS_8ByteSinkEPNS_5EditsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil15appendUnchangedEPKhS2_RNS_8ByteSinkEjPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ByteSinkUtil23appendNonEmptyUnchangedEPKhiRNS_8ByteSinkEjPNS_5EditsE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612CacheKeyBaseD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612CacheKeyBaseD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateInterval16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalC2Edd);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612DateIntervalaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps12isIdentifierEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps12isWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipIdentifierEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipWhiteSpaceEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14skipWhiteSpaceERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps14trimWhiteSpaceEPKDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps20isSyntaxOrWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612PatternProps8isSyntaxEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ResourceSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612ResourceSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612SharedObjectD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612SharedObjectD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCache11getInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCache17setEvictionPolicyEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6612UnifiedCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator10unregisterEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator12makeInstanceERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator13buildInstanceERKNS_6LocaleEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14createInstanceERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator14getDisplayNameERKNS_6LocaleES3_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator16registerInstanceEPS0_RKNS_6LocaleE18UBreakIteratorTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator18createLineInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator18createWordInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19createTitleInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator22createSentenceInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIterator23createCharacterInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2ERKNS_6LocaleES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613BreakIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListener16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListenerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613EventListenerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey11parsePrefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey11parseSuffixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKey8fallbackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ICUServiceKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder10setVariantENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder11setLanguageENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder12setExtensionEcNS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder14setLanguageTagENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder15clearExtensionsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder18copyExtensionsFromERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder23setUnicodeLocaleKeywordENS_11StringPieceES1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder25addUnicodeLocaleAttributeENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder28removeUnicodeLocaleAttributeENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder5buildER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setRegionENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilder9setScriptENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher6ResultaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder14setFavorSubtagE20ULocMatchFavorSubtag);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder16setDefaultLocaleEPKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder18addSupportedLocaleERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder19setSupportedLocalesERNS_6Locale8IteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder21clearSupportedLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder27ensureSupportedLocaleVectorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder27setDemotionPerDesiredLocaleE17ULocMatchDemotion);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7Builder33setSupportedLocalesFromListStringENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcher7BuilderaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherC2ERKNS0_7BuilderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleMatcheraSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility12isFallbackOfERKNS_13UnicodeStringES3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility18initLocaleFromNameERKNS_13UnicodeStringERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility18initNameFromLocaleERKNS_6LocaleERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility21canonicalLocaleStringEPKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613LocaleUtility23getAvailableLocaleNamesERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePosition16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePositionD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ParsePositionD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase10toCategoryEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase10toCategoryERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613PluralMapBase15getCategoryNameENS0_8CategoryE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ResourceValueD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613ResourceValueD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613SimpleFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilter7setDataEPKNS_23TransliterationRuleDataE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeFilterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString10padLeadingEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString11padTrailingEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString12fastCopyFromERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString13releaseBufferEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString14copyFieldsFromERS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString14findAndReplaceEiiRKS0_iiS2_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16doCodepageCreateEPKciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16doCodepageCreateEPKciS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString18cloneArrayIfNeededEiiaPPia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString19getTerminatedBufferEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString20handleReplaceBetweenEiiRKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4copyEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4swapERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString4trimEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString5setToEPDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString5setToEaNS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString6addRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString6appendEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7caseMapEijPNS_13BreakIteratorEPFiijS2_PDsiPKDsiPNS_5EditsER10UErrorCodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7replaceEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toLowerERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toLowerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toTitleEPNS_13BreakIteratorERKNS_6LocaleEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toUpperERKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7toUpperEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString7unBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8allocateEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8copyFromERKS0_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8doAppendEPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8doAppendERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8foldCaseEj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString8fromUTF8ENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReplaceEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReplaceEiiRKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9doReverseEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9fromUTF32EPKii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9getBufferEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9removeRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9setCharAtEiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeString9setToUTF8ENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKcS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciNS0_10EInvariantE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EPKciS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2ERKS0_ii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2EaNS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringC2Eiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6613UnicodeStringaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern10skipDoubleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern11copyStorageERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern11parseDoubleEiiaP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern12addLimitPartEi23UMessagePatternPartTypeiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern12parseMessageEiii22UMessagePatternArgTypeP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern13isArgTypeCharEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern13setParseErrorEP11UParseErrori);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14parseArgNumberERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14skipIdentifierEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern14skipWhiteSpaceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16addArgDoublePartEdiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseChoiceStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseChoiceStyleEiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parsePluralStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseSelectStyleERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern16parseSimpleStyleEiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern20validateArgumentNameERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern22inMessageFormatPatternEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern23inTopLevelChoiceMessageEi22UMessagePatternArgType);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern24parsePluralOrSelectStyleE22UMessagePatternArgTypeiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern5parseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern7addPartE23UMessagePatternPartTypeiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isChoiceEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isPluralEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8isSelectEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8parseArgEiiiP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern8preParseERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern9isOrdinalEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePattern9postParseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2E29UMessagePatternApostropheModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ERKNS_13UnicodeStringEP11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614MessagePatternaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13getNextStringEPPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13getNextStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle13resetIteratorEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle15getWithFallbackEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle18constructForLocaleERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundle7getNextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2EP15UResourceBundleR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2EPKcRKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKNS_13UnicodeStringERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614ResourceBundleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctor16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeFunctorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6614UnicodeMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE12aliasInsteadEPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE13orphanOrCloneEiRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE17resetToStackArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EE6resizeEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2EOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2ERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EED2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEaSEOS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEaSERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEeqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEixEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615MaybeStackArrayIcLi40EEneERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2Impl4initEPKiPK7UCPTriePKtPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2Impl7combineEPKti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2ImplD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615Normalizer2ImplD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListener16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListenerD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615ServiceListenerD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter22getTextWithNoArgumentsEPKDsiPii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter27applyPatternMinMaxArgumentsERKNS_13UnicodeStringEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatter6formatEPKDsiPKPKNS_13UnicodeStringERS3_S5_aPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatterD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6615SimpleFormatteraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder10buildBytesE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder12writeDeltaToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder16buildStringPieceE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17BTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17BTLinearMatchNodeC2EPKciPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17writeElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder17writeValueAndTypeEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder18writeValueAndFinalEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder3addENS_11StringPieceEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5clearEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5writeEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilder5writeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616BytesTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_13UnicodeStringEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleService16registerInstanceEPNS_7UObjectERKNS_6LocaleEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ICULocaleServiceD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryC2EiRKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616LocaleKeyFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer10previousCCEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12appendZeroCCEPKDsS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12appendZeroCCEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12removeSuffixEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer12skipPreviousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer19appendSupplementaryEihR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer4initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6appendEPKDsiahhR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6insertEih);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6removeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBuffer6resizeEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616ReorderingBufferC2ERKNS_15Normalizer2ImplERNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616UnifiedCacheBaseD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6616UnifiedCacheBaseD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator11cleanPiecesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator14getEquivalentsERKNS_13UnicodeStringERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator15getEquivalents2EPNS_9HashtableEPKDsiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator7extractEPNS_9HashtableEiPKDsiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator7permuteERNS_13UnicodeStringEaPNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator9getSourceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIterator9setSourceERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorC2ERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CanonicalIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIterator12firstPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIterator14first32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Eiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617CharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617DictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617DictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617ICUServiceFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617ICUServiceFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration19ensureCharsCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration5snextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration5unextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumeration8setCharsEPKciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder10equalNodesEPKvS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder12registerNodeEPNS0_4NodeER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14BranchHeadNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14BranchHeadNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14FinalValueNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14ListBranchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder14ListBranchNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15LinearMatchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15SplitBranchNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder15SplitBranchNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder17makeBranchSubNodeEiiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder18registerFinalValueEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder18writeBranchSubNodeEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder20createCompactBuilderEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder20deleteCompactBuilderEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder21IntermediateValueNode19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder21IntermediateValueNode5writeERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder4Node19markRightEdgesFirstEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder5buildE22UStringTrieBuildOptioniR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder8hashNodeEPKv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder8makeNodeEiiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilder9writeNodeEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617StringTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder11buildUCharsE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder12writeDeltaToEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder14ensureCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder17writeElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder17writeValueAndTypeEaii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNode5writeERNS_17StringTrieBuilderE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeC2EPKDsiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18buildUnicodeStringE22UStringTrieBuildOptionRNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder18writeValueAndFinalEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder3addERKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5buildE22UStringTrieBuildOptionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5writeEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilder5writeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6617UCharsTrieBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSink6AppendEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkC2EPNS_10CharStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618CharStringByteSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleE16UDialectHandling);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNames14createInstanceERKNS_6LocaleEP15UDisplayContexti);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNamesD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocaleDisplayNamesD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList14orphanLocaleAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList3addERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityList4sortER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityListC2ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618LocalePriorityListD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory10getNFCImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory11getInstanceE18UNormalizationModeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory11getNFKCImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getFCCInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getFCDInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory14getNFKC_CFImplER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory15getNoopInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618Normalizer2Factory7getImplEPKNS_11Normalizer2E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration16fromUEnumerationEP12UEnumerationR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration4nextEPiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration5resetER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumeration5snextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationC2EP12UEnumeration);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UStringEnumerationD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator5resetERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9getStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9loadRangeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIterator9nextRangeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorC2ERKNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6618UnicodeSetIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6619FilteredNormalizer2D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6619FilteredNormalizer2D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink5ResetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSink6AppendEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSinkC2EPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620CheckedArrayByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620StackUResourceBundleC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620StackUResourceBundleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6620umtx_initImplPreInitERNS_9UInitOnceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6621umtx_initImplPostInitERNS_9UInitOnceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622BytesDictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622BytesDictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12addFollowingEiiNS1_20UpdatePositionValuesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12addPrecedingEiiNS1_20UpdatePositionValuesE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache12populateNearEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache17populateFollowingEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache17populatePrecedingER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache4seekEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache5resetEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache6nextOLEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9dumpCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9followingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCache9precedingEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheC2EPS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10BreakCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10dumpTablesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10handleNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator10isBoundaryEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator14getBinaryRulesERj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache18populateDictionaryEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9followingEiPiS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCache9precedingEiPiS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheC2EPS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator15DictionaryCacheD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16getRuleStatusVecEPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator16refreshInputTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator17createBufferCloneEPvRiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator18handleSafePreviousEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator22getLanguageBreakEngineEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4initER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator7setTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator7setTextERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9adoptTextEPNS_17CharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9dumpCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9followingEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIterator9precedingEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EP11UDataMemoryR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EPKhjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2EPNS_14RBBIDataHeaderER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2ERKNS_13UnicodeStringER11UParseErrorR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622RuleBasedBreakIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_13UnicodeStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryC2EPNS_7UObjectERKNS_6LocaleEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622SimpleLocaleKeyFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator10previous32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator10setIndex32Ei);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator11hasPreviousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator11nextPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator12firstPostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator13next32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator14first32PostIncEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4lastEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4moveEiNS_17CharacterIterator7EOriginE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator4nextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator5firstEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6last32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6move32EiNS_17CharacterIterator7EOriginE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator6next32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7first32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator7setTextENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator8previousEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIterator8setIndexEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ENS_14ConstChar16PtrEiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6622UCharCharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623FullCaseFoldingIterator4nextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623FullCaseFoldingIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator7getTextERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIterator7setTextERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKNS_13UnicodeStringEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623StringCharacterIteratoraSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UCharsDictionaryMatcherD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UCharsDictionaryMatcherD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable12appendStringEPKDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable14appendCodeUnitEDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable15appendCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable15getAppendBufferEiiPDsiPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendable21reserveAppendCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendableD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6623UnicodeStringAppendableD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ForwardCharacterIteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactory16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6624ICUResourceBundleFactoryD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder14createInstanceERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilder19createEmptyInstanceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6628FilteredBreakIteratorBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder18suppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder20unsuppressBreakAfterERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilder5buildEPNS_13BreakIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderC2ERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_6634SimpleFilteredBreakIteratorBuilderD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664CStrC2ERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664CStrD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNA19createUTS46InstanceEjR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNAD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_664IDNAD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits10addReplaceEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits12addUnchangedEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits12releaseArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits14mergeAndAppendERKS0_S2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits6appendEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator10readLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator17updateNextIndexesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator21updatePreviousIndexesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator31destinationIndexFromSourceIndexEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator31sourceIndexFromDestinationIndexEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator4nextEaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator6noNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator8previousER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8Iterator9findIndexEiaR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits8IteratorC2EPKtiaa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9copyArrayERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9growArrayEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665Edits9moveArrayERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_665EditsaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getEnglishEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getGermanyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10getItalianEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10setDefaultERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale10setToBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale11getJapaneseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale12initBaseNameER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14createFromNameEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14forLanguageTagENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14getLocaleCacheEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale14setFromPOSIXIDEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15createCanonicalEPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getCanadaFrenchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getISOCountriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15getISOLanguagesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15minimizeSubtagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15setKeywordValueENS_11StringPieceES1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale15setKeywordValueEPKcS2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale16addLikelySubtagsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale19getAvailableLocalesERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale20getSimplifiedChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale21getTraditionalChineseEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale22setUnicodeKeywordValueENS_11StringPieceES1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale4initEPKca);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale5getUKEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale5getUSEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale6getPRCEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale7getRootEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8IteratorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getChinaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getItalyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getJapanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale8getKoreaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getCanadaEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getFranceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getFrenchEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getGermanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getKoreanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getLocaleEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666Locale9getTaiwanEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2ENS0_11ELocaleTypeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2EOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2EPKcS2_S2_S2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2ERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleC2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleaSEOS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666LocaleaSERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UMutex7cleanupEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UMutex8getMutexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack3popEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStack4popiEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackC2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_666UStackD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToLowerEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToLowerEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorENS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToTitleEPKcjPNS_13BreakIteratorES2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToUpperEPKcjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap11utf8ToUpperEPKcjS2_iPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap4foldEjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toLowerEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toTitleEPKcjPNS_13BreakIteratorEPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap7toUpperEPKcjPKDsiPDsiPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap8utf8FoldEjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667CaseMap8utf8FoldEjPKciPciPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorydaEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorydlEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorynaEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UMemorynwEm);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UObjectD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UObjectD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10addElementEPvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10addElementEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector10setDeleterEPFvPvE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector11setComparerEPFa8UElementS1_E);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12setElementAtEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12setElementAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertE8UElementPFaS1_S1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertEPvPFa8UElementS2_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector12sortedInsertEiPFa8UElementS1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector13removeElementEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector14ensureCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15insertElementAtEPviR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15insertElementAtEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15orphanElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector15removeElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector17removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector19sortWithUComparatorEPFiPKvS2_S2_ES2_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector4sortEPFa8UElementS1_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector5_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector5sortiER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector6assignERKS0_PFvP8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector7setSizeEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector9removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVector9retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EPFvPvEPFa8UElementS4_EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorC2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667UVectoreqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets10chooseFromENS_13UnicodeStringENS0_3KeyES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_667unisets3getENS0_3KeyE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSink15GetAppendBufferEiiPciPi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSink5FlushEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSinkD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_668ByteSinkD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie10branchNextEPKhii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie11jumpByDeltaEPKh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie15findUniqueValueEPKhaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie18getNextBranchBytesEPKhiRNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie25findUniqueValueFromBranchEPKhiaRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie4nextEPKci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie4nextEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie6appendERNS_8ByteSinkEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator10branchNextEPKhiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator15truncateAndStopEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator4nextER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8Iterator5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorC2EPKviR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorC2ERKS0_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8IteratorD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie8nextImplEPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrie9readValueEPKhi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669BytesTrieD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCode5resetEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCodeD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669ErrorCodeD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey16getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey27createWithCanonicalFallbackEPKNS_13UnicodeStringES3_iR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKey8fallbackEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyC2ERKNS_13UnicodeStringES3_PS2_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669LocaleKeyD2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3212setElementAtEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3212sortedInsertEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3214expandCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3214setMaxCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3215insertElementAtEiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3215removeElementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3216getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector3217removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector325_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector326assignERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector327setSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector329removeAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector329retainAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32C2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32C2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector32eqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6412setElementAtEli);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6414expandCapacityEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6414setMaxCapacityEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6415insertElementAtEliR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6416getStaticClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector6417removeAllElementsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector645_initEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector646assignERKS0_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector647setSizeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64C2ER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64C2EiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64D0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64D2Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_669UVector64eqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_66eqERKNS_11StringPieceES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZN6icu_66plERKNS_13UnicodeStringES2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString11lastIndexOfEc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString8containsENS_11StringPieceE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610CharString9cloneDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService12getTimestampEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13getVisibleIDsERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService13handleDefaultERKNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14countFactoriesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14getDisplayNameERKNS_13UnicodeStringERS1_RKNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService14notifyListenerERNS_13EventListenerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15acceptsListenerERKNS_13EventListenerE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getDisplayNamesERNS_7UVectorERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService15getVisibleIDMapER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService3getERKNS_13UnicodeStringEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService3getERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringEPKNS_17ICUServiceFactoryER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyEPNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService6getKeyERNS_13ICUServiceKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService7getNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610ICUService9isDefaultEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer10startIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8endIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8getIndexEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8getUModeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610Normalizer9getOptionEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610NormalizereqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610StringPair7isBogusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie13getNextUCharsERNS_10AppendableE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UCharsTrie8Iterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet10_toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet10hasStringsEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11containsAllERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11getRangeEndEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet11stringsSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12containsNoneEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet12spanBackUTF8EPKci17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13addMatchSetToERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13cloneAsThawedEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13findCodePointEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13getRangeCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet13getRangeStartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet15stringsContainsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet16_generatePatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet17matchesIndexValueEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet4sizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet4spanEPKDsi17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet6charAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet7indexOfEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet7isEmptyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8containsEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8spanBackEPKDsi17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet8spanUTF8EPKci17USetSpanCondition);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9getStringEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9serializeEPtiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6610UnicodeSeteqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611LocaleBased11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611LocaleBased9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer211composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer217getCombiningClassEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Normalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Replaceable11hasMetaDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6611Replaceable5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateInterval17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateInterval5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612DateIntervaleqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject11getRefCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject20deleteIfZeroRefCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject6addRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612SharedObject9removeRefEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache10addHardRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11_inProgressEPK12UHashElement);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11_inProgressEPKNS_12SharedObjectE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache11unusedCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache12_isEvictableEPK12UHashElement);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache12_nextElementEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache13removeHardRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache13removeSoftRefEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache15_registerMasterEPKNS_12CacheKeyBaseEPKNS_12SharedObjectE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache16autoEvictedCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache17_runEvictionSliceEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache18_putIfAbsentAndGetERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache24handleUnreferencedObjectEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache27_computeCountOfItemsToEvictEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache4_getERKNS_12CacheKeyBaseERPKNS_12SharedObjectEPKvR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache4_putEPK12UHashElementPKNS_12SharedObjectE10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache5_pollERKNS_12CacheKeyBaseERPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache5flushEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache6_fetchEPK12UHashElementRPKNS_12SharedObjectER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache6_flushEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache7_putNewERKNS_12CacheKeyBaseEPKNS_12SharedObjectE10UErrorCodeRS7_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6612UnifiedCache8keyCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator11getLocaleIDE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator13getRuleStatusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613BreakIterator9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613EventListener17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey11canonicalIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey12isFallbackOfERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey17currentDescriptorERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey5getIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey6prefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ICUServiceKey9currentIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleBuilder11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher12getBestMatchERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher12getBestMatchERNS_6Locale8IteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher13internalMatchERKNS_6LocaleES3_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher16getBestSuppIndexENS_3LSREPNS_17LocaleLsrIteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher18getBestMatchResultERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher18getBestMatchResultERNS_6Locale8IteratorER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher25getBestMatchForListStringENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher6Result18makeResolvedLocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher7Builder11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613LocaleMatcher7Builder5buildER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ParsePosition17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ParsePosition5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceArray19internalGetResourceEPK12ResourceDatai);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceArray8getValueEiRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceTable14getKeyAndValueEiRPKcRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613ResourceTable9findValueEPKcRNS_13ResourceValueE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613SimpleFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeFilter9toMatcherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString10doHashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString10unescapeAtERi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11countChar32Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11getChar32AtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11hasMetaDataEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11lastIndexOfEPKDsiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString11moveIndex32Eii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doCaseCompareEiiPKDsiij);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doLastIndexOfEDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13doLastIndexOfEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString13tempSubStringEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14extractBetweenEiiRS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14getChar32LimitEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString14getChar32StartEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString17hasMoreChar32ThanEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString23doCompareCodePointOrderEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString6toUTF8ERNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString6toUTF8EiiPci);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractENS_9Char16PtrEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEPciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPciNS0_10EInvariantE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPcj);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7extractEiiPcjPKc);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7indexOfEPKDsiiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString7toUTF32EPiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8char32AtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8doEqualsERKS0_i);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8refCountEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString8unescapeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doCompareEiiPKDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doExtractEiiPDsi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doExtractEiiPciP10UConverterR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doIndexOfEDsii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9doIndexOfEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9getCharAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6613UnicodeString9getLengthEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern15getNumericValueERKNS0_4PartE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern15getPluralOffsetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern23autoQuoteApostropheDeepEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern4ParteqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePattern8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614MessagePatterneqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle10getVersionEPh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle11getStringExEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle11getStringExEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle12getIntVectorERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle16getVersionNumberEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle3getEPKcR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle3getEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle6getIntER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle6getKeyEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getSizeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7getUIntER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getBinaryERiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getLocaleE18ULocDataLocaleTypeR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614ResourceBundle9getStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614UnicodeFunctor10toReplacerEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6614UnicodeFunctor9toMatcherEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE11getCapacityEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE13getArrayLimitEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EE8getAliasEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615MaybeStackArrayIcLi40EEixEl);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl11composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl11composeUTF8EjaPKhS2_PNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl12addLcccCharsERNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl13addCompositesEPKtRNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl13getCanonValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl14decomposeShortEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl14decomposeShortEPKhS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16composeAndAppendEPKDsS2_aaRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getCanonStartSetEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getCanonStartSetEiRNS_10UnicodeSetE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16getDecompositionEiPDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl16makeFCDAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl17addPropertyStartsEPK9USetAdderR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl17composeQuickCheckEPKDsS2_aP25UNormalizationCheckResult);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18decomposeAndAppendEPKDsS2_aRNS_13UnicodeStringERNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl18getPreviousTrailCCEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19ensureCanonIterDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19findNextFCDBoundaryEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl19getRawDecompositionEiPDsRi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20findNextCompBoundaryEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20getFCD16FromNormDataEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl20hasCompBoundaryAfterEPKhS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21hasCompBoundaryBeforeEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl21isCanonSegmentStarterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl22hasDecompBoundaryAfterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl23findPreviousFCDBoundaryEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl23hasDecompBoundaryBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl24findPreviousCompBoundaryEPKDsS2_a);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl26addCanonIterPropertyStartsEPK9USetAdderR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl27makeCanonIterDataFromNorm16EiitRNS_13CanonIterDataER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl28norm16HasDecompBoundaryAfterEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl29norm16HasDecompBoundaryBeforeEt);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl30copyLowPrefixFromNulTerminatedEPKDsiPNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl7composeEPKDsS2_aaRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl7makeFCDEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_PNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEPKDsS2_RNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9decomposeEitRNS_16ReorderingBufferER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615Normalizer2Impl9recomposeERNS_16ReorderingBufferEia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615ServiceListener17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter15formatAndAppendEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter16formatAndReplaceEPKPKNS_13UnicodeStringEiRS1_PiiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6615SimpleFormatter6formatERKNS_13UnicodeStringES3_S3_RS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder14getElementUnitEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder15getElementValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder17BTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder17countElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder21getLimitOfLinearMatchEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder22getElementStringLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder23skipElementsBySomeUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616BytesTrieBuilder26indexOfElementWithNextUnitEiiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService19getAvailableLocalesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService22validateFallbackLocaleEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiPS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService3getERKNS_6LocaleEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ICULocaleService9createKeyEPKNS_13UnicodeStringEiR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory10handlesKeyERKNS_13ICUServiceKeyER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory14getDisplayNameERKNS_13UnicodeStringERKNS_6LocaleERS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory15getSupportedIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616LocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ReorderingBuffer6equalsEPKDsS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6616ReorderingBuffer6equalsEPKhS2_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617CanonicalIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumeration5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumerationeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringEnumerationneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14BranchHeadNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14FinalValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder14ListBranchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder15LinearMatchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder15SplitBranchNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder21IntermediateValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder4NodeeqERKS1_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617StringTrieBuilder9ValueNodeeqERKNS0_4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder14getElementUnitEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder15getElementValueEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder17countElementUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder18UCTLinearMatchNodeeqERKNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder21createLinearMatchNodeEiiiPNS_17StringTrieBuilder4NodeE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder21getLimitOfLinearMatchEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder22getElementStringLengthEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder23skipElementsBySomeUnitsEiii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6617UCharsTrieBuilder26indexOfElementWithNextUnitEiiDs);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618LocalePriorityList8localeAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UStringEnumeration17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UStringEnumeration5countER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6618UnicodeSetIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer210quickCheckERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer211composePairEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer212isNormalizedERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjNS_11StringPieceERNS_8ByteSinkEPNS_5EditsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer213normalizeUTF8EjPKciRNS_8ByteSinkEPNS_5EditsE17USetSpanConditionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216getDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216hasBoundaryAfterEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer216isNormalizedUTF8ENS_11StringPieceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217getCombiningClassEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217hasBoundaryBeforeEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer217spanQuickCheckYesERKNS_13UnicodeStringER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer219getRawDecompositionEiRNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer224normalizeSecondAndAppendERNS_13UnicodeStringERKS1_aR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer26appendERNS_13UnicodeStringERKS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer27isInertEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_17USetSpanConditionR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6619FilteredNormalizer29normalizeERKNS_13UnicodeStringERS1_R10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622BytesDictionaryMatcher9transformEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator13getRuleStatusEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator7getTextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8getRulesEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8getUTextEP5UTextR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIterator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622RuleBasedBreakIteratoreqERKNS_13BreakIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory16updateVisibleIDsERNS_9HashtableER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622SimpleLocaleKeyFactory6createERKNS_13ICUServiceKeyEPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIterator9current32Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6622UCharCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIterator17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIterator5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623StringCharacterIteratoreqERKNS_24ForwardCharacterIteratorE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623UCharsDictionaryMatcher7getTypeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6623UCharsDictionaryMatcher7matchesEP5UTextiiPiS3_S3_S3_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory12handleCreateERKNS_6LocaleEiPKNS_10ICUServiceER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory15getSupportedIDsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_6624ICUResourceBundleFactory17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664CStrclEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA16nameToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA17labelToASCII_UTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA17nameToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_664IDNA18labelToUnicodeUTF8ENS_11StringPieceERNS_8ByteSinkERNS_8IDNAInfoER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_665Edits11copyErrorToER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_665Edits8Iterator8toStringERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale11getBaseNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale13isRightToLeftEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale13toLanguageTagERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14createKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getDisplayNameERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getDisplayNameERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale14getISO3CountryEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getISO3LanguageEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale15getKeywordValueEPKcPciR10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale16getDisplayScriptERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale16getDisplayScriptERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayCountryERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayCountryERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayVariantERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDisplayVariantERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale18getDisplayLanguageERKS0_RNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale18getDisplayLanguageERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale21createUnicodeKeywordsER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale22getUnicodeKeywordValueENS_11StringPieceERNS_8ByteSinkER10UErrorCode);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale5cloneEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale7getLCIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666Locale8hashCodeEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666LocaleeqERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666UStack17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_666UStack6searchEPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UObject17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector10elementAtiEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector11containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector12containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector6equalsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfE8UElementia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfEPvi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7indexOfEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector7toArrayEPPv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_667UVector9elementAtEi);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie12getNextBytesERNS_8ByteSinkE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie7currentEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie8Iterator7hasNextEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669BytesTrie8Iterator9getStringEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669ErrorCode13assertSuccessEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669ErrorCode9errorNameEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey11canonicalIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey12isFallbackOfERKNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey13currentLocaleERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey15canonicalLocaleERNS_6LocaleE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey17currentDescriptorERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey17getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey4kindEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey6prefixERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669LocaleKey9currentIDERNS_13UnicodeStringE);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3211containsAllERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3212containsNoneERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector3217getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector326equalsERKS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector327indexOfEii);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZNK6icu_669UVector6417getDynamicClassIDEv);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6610UnicodeSet7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6610UnicodeSetD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6610UnicodeSetD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6613UnicodeFilter7matchesERKNS_11ReplaceableERiia);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6613UnicodeFilterD0Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_N6icu_6613UnicodeFilterD1Ev);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_NK6icu_6610UnicodeSet13addMatchSetToERS0_);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_NK6icu_6610UnicodeSet17matchesIndexValueEh);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", _ZThn8_NK6icu_6610UnicodeSet9toPatternERNS_13UnicodeStringEa);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", locale_getKeywordsStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_countArrayItems_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getArrayItem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getBinaryNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getIntVectorNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getPublicType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getStringNoTrace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getTableItemByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_getTableItemByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", res_read_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_UCharsToChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_austrcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_austrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_caseInsensitivePrefixMatch_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catclose_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catgets_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_catopen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charAge_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charDigitValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charFromName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charMirror_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_charsToUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_cleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_countChar32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_digit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_enumCharNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_enumCharTypes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_errorName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_flushDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_foldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_forDigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getBidiPairedBracket_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getBinaryPropertySet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getCombiningClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDataDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDataVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getFC_NFKC_Closure_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getISOComment_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMaxValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyMinValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getIntPropertyValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getNumericValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyValueEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getPropertyValueName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getTimeZoneFilesDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getUnicodeVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_hasBinaryProperty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_init_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDIgnorable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isIDStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isISOControl_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaIDPart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaIDStart_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isJavaSpaceChar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isMirrored_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUAlphabetic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isULowercase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUUppercase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isUWhiteSpace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isWhitespace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isalnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isalpha_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isbase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isblank_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_iscntrl_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isdefined_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isdigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isgraph_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_islower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isprint_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_ispunct_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isspace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_istitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_isxdigit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memmove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memrchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memrchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_memset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_releaseDefaultConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setAtomicIncDecFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setDataDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setMemoryFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setMutexFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_setTimeZoneFilesDirectory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_shapeArabic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCaseCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCompareIter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFindFirst_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFindLast_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFoldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromJavaModifiedUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF32WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8Lenient_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strFromWCS_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strHasMoreChar32Than_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToJavaModifiedUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF32WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF8WithSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strToWCS_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strcspn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strlen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncasecmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncmpCodePointOrder_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strpbrk_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrchr32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrchr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strrstr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strspn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strstr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_strtok_r_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateUChar32s_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_terminateWChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_tolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_totitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_uastrcpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_uastrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_unescapeAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_unescape_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionFromString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionFromUString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", u_versionToString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_countParagraphs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_countRuns_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getBaseDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getClassCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getCustomizedClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getDirection_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLevelAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLevels_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getLogicalRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParaLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParagraphByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getParagraph_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getProcessedLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getReorderingMode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getReorderingOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getResultLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_getVisualRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_invertMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_isInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_isOrderParagraphsLTR_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_openSized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_orderParagraphsLTR_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_reorderLogical_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_reorderVisual_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setClassCallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setInverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setLine_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setPara_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setReorderingMode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_setReorderingOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_writeReordered_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubidi_writeReverse_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubiditransform_transform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ublock_getCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_current_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_first_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_following_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getBinaryRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getRuleStatusVec_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_getRuleStatus_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_isBoundary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_last_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_openBinaryRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_openRules_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_preceding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_refreshUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_setText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_setUText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ubrk_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_compareKeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_deleteKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucache_hashKeys_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_fold_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_getTypeOrIgnorable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_isCaseSensitive_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_isSoftDotted_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullFolding_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toFullUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_tolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_totitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucase_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_getOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setBreakIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_setOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_toTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8FoldCase_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToLower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToTitle_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucasemap_utf8ToUpper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uchar_swapNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucln_cleanupOne_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucln_registerCleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteBytes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbFromUWriteUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbToUWriteSub_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_cbToUWriteUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_compareNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_convertEx_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_convert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_countStandards_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_createConverter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_detectUnicodeSignature_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_enableCleanup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fixFileSeparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_flushCache_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUCountPending_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_fromUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getAvailableName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getCCSID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getCanonicalName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getDefaultName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getFromUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getInvalidChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getInvalidUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getMaxCharSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getMinCharSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getNextUChar_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getPlatform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStandardName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStandard_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getStarters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getSubstChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getToUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_getUnicodeSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_countKnownConverters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_getConverterName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_stripASCIIForCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_io_stripEBCDICForCompare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_isAmbiguous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_isFixedWidth_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_load_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openAllNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openCCSID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openPackage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openStandardNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_resetFromUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_resetToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_safeClone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setDefaultName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setFromUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setSubstChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setSubstString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_setToUCallBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_swapAliases_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toAlgorithmic_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUCountPending_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_toUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_unload_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnv_usesFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_selectForString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_selectForUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucnvsel_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_looksLikeCollationBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_swapInverseUCA_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucol_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucpmap_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucpmap_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_getValueWidth_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalSmallIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalSmallU8Index_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_internalU8PrevIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_openFromBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucptrie_toBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_countCurrencies_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_forLocaleAndDate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_forLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getDefaultFractionDigitsForUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getDefaultFractionDigits_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getKeywordValuesForLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getNumericCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getPluralName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getRoundingIncrementForUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_getRoundingIncrement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_isAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_openISOCurrencies_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_register_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ucurr_unregister_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_closeSwapper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getInfo_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getMemory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_getRawMemory_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openChoice_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openSwapperForInputData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_openSwapper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_printError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_readInt16_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_readInt32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setAppData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setCommonData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_setFileAccess_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_swapDataHeader_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udata_swapInvStringBlock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", udict_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_count_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_nextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openCharStringsEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openFromStringEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_openUCharStringsEnumeration_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_reset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_unextDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uenum_unext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareCaselessUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareIChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_compareUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_count_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_deleteHashtable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_find_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_geti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashCaselessUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashIChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashLong_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_hashUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iget_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_igeti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_initSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_init_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iput_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iputi_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iremove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_iremovei_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_nextElement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_openSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_put_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_puti_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removeAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removeElement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_remove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_removei_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyComparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyDeleter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setKeyHasher_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setResizePolicy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setValueComparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uhash_setValueDeleter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_IDNToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_IDNToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_compare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToASCII_UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToUnicodeUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_labelToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToASCII_UTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToUnicodeUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_nameToUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_openUTS46_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_toASCII_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uidna_toUnicode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_current32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_getState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_next32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_previous32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setCharacterIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setReplaceable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setState_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setUTF16BE_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uiter_setUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getDialectHandling_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_keyDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_keyValueDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_languageDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_localeDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_openForContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_regionDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_scriptCodeDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_scriptDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uldn_variantDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_addItemBeginList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_addItemEndList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_close_keyword_values_iterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_containsString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_count_keyword_values_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_createEmptyList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_deleteList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getListFromEnum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getListSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_getNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_next_keyword_value_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_removeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_resetList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulist_reset_keyword_values_iterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_acceptLanguageFromHTTP_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_acceptLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_addLikelySubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_canonicalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_countAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_forLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getAvailable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getBaseName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getCharacterOrientation_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getCountry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayCountry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayKeyword_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayScriptInContext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getDisplayVariant_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISO3Country_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISO3Language_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISOCountries_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getISOLanguages_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLanguage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLineOrientation_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getLocaleForLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getParent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getTableStringWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_getVariant_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_isRightToLeft_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_minimizeSubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openAvailableByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openKeywordList_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_openKeywords_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_setDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_setKeywordValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLegacyKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toLegacyType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toUnicodeLocaleKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uloc_toUnicodeLocaleType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_addLikelySubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_forLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_getRegionForSupplementalData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_minimizeSubtags_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ulocimp_toLanguageTag_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umtx_lock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umtx_unlock_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_buildImmutable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_fromUCPMap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_fromUCPTrie_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_getRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_get_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_setRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", umutablecptrie_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_append_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_composePair_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getCombiningClass_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getDecomposition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFCInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFDInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKCCasefoldInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKCInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getNFKDInstance_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_getRawDecomposition_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_hasBoundaryAfter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_hasBoundaryBefore_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_isInert_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_isNormalized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_normalizeSecondAndAppend_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_normalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_openFiltered_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_quickCheck_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_spanQuickCheckYes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm2_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_compare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_concatenate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_isNormalizedWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_isNormalized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_next_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_normalize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_previous_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_quickCheckWithOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", unorm_quickCheck_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_add32_overflow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_aestrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_asciitolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_calloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ceil_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareASCIIPropertyNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareEBCDICPropertyNames_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_compareInvEbcdicAsAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToLCIDPlatform_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToLCID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_convertToPosix_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_deleteUObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dl_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dl_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_dlsym_func_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_eastrncpy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicFromAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicToAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdicToLowercaseAscii_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_ebcdictolower_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fabs_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_floor_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmax_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmin_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_fmod_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_free_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getCharNameCharacters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getDefaultLocaleID_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getMaxCharNameLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getNaN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getRawUTCtime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getStaticCurrencyName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_getUTCtime_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_int32Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isASCIILetter_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInfinite_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInvariantString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isInvariantUString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isNaN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isNegativeInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_isPositiveInfinity_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_itou_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_log_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_malloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_maxMantissa_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_max_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_maximumPtr_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_min_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_modf_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_mul32_overflow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_parseCurrency_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pathIsAbsolute_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pow10_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_pow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_realloc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_round_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_sortArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_stableBinarySearch_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strdup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_stricmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strndup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_strnicmp_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_syntaxError_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_timezone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_toupper_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_trunc_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzname_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzname_clear_cache_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_tzset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_uint16Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uprv_uint32Comparator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_cloneArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compactToUTrie2Handler_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compactToUTrie2WithRowIndexes_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_compact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getArray_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getRow_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_getValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", upvec_setValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_countArrayItems_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_findResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_findSubResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getAllItemsWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getBinary_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByKeyWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getFunctionalEquivalent_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getIntVector_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getKeywordValues_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocaleByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocaleInternal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getLocale_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getNextResource_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getNextString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getSize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByKeyWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getStringByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUInt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8StringByIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8StringByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getUTF8String_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getValueWithFallback_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionByKey_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionNumberInternal_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersionNumber_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_getVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_hasNext_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_initStackObject_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openAvailableLocales_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openDirectFillIn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openDirect_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openFillIn_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openNoDefault_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_openU_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_resetIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ures_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_breaksBetweenLetters_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_closeRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getCode_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getSampleString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getScriptExtensions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getShortName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_getUsage_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_hasScript_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_isCased_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_isRightToLeft_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_nextRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_openRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_resetRun_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uscript_setRunText_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addAllCodePoints_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_addString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_add_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyIntPropertyValue_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_applyPropertyAlias_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_charAt_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_clear_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_cloneAsThawed_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_closeOver_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_compact_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_complementAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_complement_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsAllCodePoints_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsNone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsSome_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_containsString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_contains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getItemCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getItem_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedRangeCount_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_getSerializedSet_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_indexOf_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_isEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_isFrozen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openEmpty_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openPatternOptions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_openPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeAllStrings_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeRange_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_removeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_remove_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_resemblesPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_retainAll_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_retain_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_serializedContains_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_setSerializedToOne_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_set_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_size_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanBackUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanBack_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_spanUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_span_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", uset_toPattern_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_openByType_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_prepare_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", usprep_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashCharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashICharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", ustr_hashUCharsN_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_char32At_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_copy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_current32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_equals_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_extract_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_getNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_getPreviousNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_hasMetaData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_isLengthExpensive_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_isWritable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_moveIndex32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_nativeLength_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_next32From_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_next32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openCharacterIterator_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openConstUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openReplaceable_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUChars_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUTF8_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_openUnicodeString_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_previous32From_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_previous32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_replace_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_setNativeIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utext_setup_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_appendCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_back1SafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_nextCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utf8_prevCharSafeBody_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_data_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_entry_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_exit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_format_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_functionName_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_getFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_getLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_setFunctions_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_setLevel_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrace_vformat_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_cloneAsThawed_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_enumForLeadSurrogate_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_enum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_freeze_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_fromUTrie_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_get32FromLeadSurrogateCodeUnit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_get32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_internalU8NextIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_internalU8PrevIndex_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_isFrozen_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_openDummy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_openFromSerialized_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_set32ForLeadSurrogateCodeUnit_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_set32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_setRange32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie2_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_clone_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_close_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_defaultGetFoldingOffset_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_enum_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_get32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_getData_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_open_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_serialize_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_set32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_setRange32_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_swapAnyVersion_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_swap_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_unserializeDummy_66);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libicuuc.so", utrie_unserialize_66);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6611StringPiece4nposE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6613ICUServiceKey16PREFIX_DELIMITERE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData14TRANSFORM_NONEE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData14TRIE_TYPE_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData15TRIE_HAS_VALUESE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData15TRIE_TYPE_BYTESE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData16TRIE_TYPE_UCHARSE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData19TRANSFORM_TYPE_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData21TRANSFORM_OFFSET_MASKE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_6614DictionaryData21TRANSFORM_TYPE_OFFSETE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", _ZN6icu_666UMutex9gListHeadE);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", icudt66_dat);
-  INIT_INTERCEPTABLE_STUB_VARIABLE("libicuuc.so", utf8_countTrailBytes_66);
-}
-// clang-format on
diff --git a/vdso/Android.bp b/vdso/Android.bp
deleted file mode 100644
index ba79c51..0000000
--- a/vdso/Android.bp
+++ /dev/null
@@ -1,51 +0,0 @@
-//
-// Copyright (C) 2018 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-cc_library_shared {
-    name: "libnative_bridge_vdso",
-    enabled: false,
-    native_bridge_supported: true,
-    arch: {
-        arm64: {
-            enabled: true,
-            srcs: ["vdso_arm64.S"],
-        },
-        arm: {
-            enabled: true,
-            srcs: ["vdso_arm.S"],
-        },
-    },
-    export_include_dirs: ["include"],
-    // Make sure we do not drag any dependencies for vdso library (-Wl,--exclude-libs,ALL)
-    ldflags: [
-        "-Wl,--exclude-libs,ALL",
-        "-Wl,-soname,linux-vdso.so.1",
-
-        // TODO(b/146399556): Use -z,separate-code to ensure that each segment's p_offset and
-        // p_vaddr values are equal to work around problems with __libc_init_vdso in Bionic.
-        "-Wl,-z,separate-code",
-    ],
-    system_shared_libs: [],
-    // Opt out of native_coverage when opting out of system_shared_libs
-    native_coverage: false,
-    nocrt: true,
-    stl: "none",
-    // no_standard_libs: true,
-    strip: {
-        keep_symbols_and_debug_frame: true,
-    },
-    pack_relocations: false,
-}
diff --git a/vdso/include/native_bridge_support/vdso/interceptable_functions.h b/vdso/include/native_bridge_support/vdso/interceptable_functions.h
deleted file mode 100644
index 7532471..0000000
--- a/vdso/include/native_bridge_support/vdso/interceptable_functions.h
+++ /dev/null
@@ -1,68 +0,0 @@
-//
-// Copyright (C) 2017 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#ifndef NATIVE_BRIDGE_SUPPORT_VDSO_INTERCEPTABLE_FUNCTIONS_H_
-#define NATIVE_BRIDGE_SUPPORT_VDSO_INTERCEPTABLE_FUNCTIONS_H_
-
-#include <assert.h>
-#include <stdint.h>
-
-#include "native_bridge_support/vdso/vdso.h"
-
-#if defined(__arm__)
-
-#define INTERCEPTABLE_STUB_ASM_CALL(name)                      \
-  extern "C" void __attribute((target("arm"), naked)) name() { \
-    __asm__ __volatile__(                                      \
-        "ldr r12, 1f\n"                                        \
-        "0: ldr r12, [pc, r12]\n"                              \
-        "bx r12\n"                                             \
-        ".p2align 2\n"                                         \
-        "1: .long " #name "_var-(0b+8)");                      \
-  }
-
-#elif defined(__aarch64__)
-
-#define INTERCEPTABLE_STUB_ASM_CALL(name)            \
-  extern "C" void __attribute((naked)) name() {      \
-    __asm__ __volatile__("adrp x8, " #name           \
-                         "_var\n"                    \
-                         "ldr x8, [x8, :lo12:" #name \
-                         "_var]\n"                   \
-                         "br x8");                   \
-  }
-
-#else
-
-#error Unknown architecture, only arm and aarch64 are supported.
-
-#endif
-
-#define DEFINE_INTERCEPTABLE_STUB_VARIABLE(name) uintptr_t name;
-
-#define INIT_INTERCEPTABLE_STUB_VARIABLE(library_name, name) \
-  name =                                                     \
-      *reinterpret_cast<uintptr_t*>(native_bridge_find_proxy_library_symbol(library_name, #name));
-
-#define DEFINE_INTERCEPTABLE_STUB_FUNCTION(name)                     \
-  extern "C" void name();                                            \
-  static uintptr_t __attribute((used)) name##_var asm(#name "_var"); \
-  INTERCEPTABLE_STUB_ASM_CALL(name);
-
-#define INIT_INTERCEPTABLE_STUB_FUNCTION(library_name, name) \
-  name##_var = native_bridge_find_proxy_library_symbol(library_name, #name);
-
-#endif  // NATIVE_BRIDGE_SUPPORT_VDSO_INTERCEPTABLE_FUNCTIONS_H_
diff --git a/vdso/include/native_bridge_support/vdso/vdso.h b/vdso/include/native_bridge_support/vdso/vdso.h
deleted file mode 100644
index 2d79649..0000000
--- a/vdso/include/native_bridge_support/vdso/vdso.h
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright (C) 2017 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#ifndef NATIVE_BRIDGE_SUPPORT_VDSO_VDSO_H_
-#define NATIVE_BRIDGE_SUPPORT_VDSO_VDSO_H_
-
-#include <stddef.h>
-#include <stdint.h>
-#include <sys/cdefs.h>
-
-__BEGIN_DECLS
-
-void native_bridge_trace(const char* format, ...);
-uintptr_t native_bridge_find_proxy_library_symbol(const char* library, const char* function);
-void native_bridge_post_init();
-
-__END_DECLS
-
-#endif  // NATIVE_BRIDGE_SUPPORT_VDSO_VDSO_H_
diff --git a/vdso/vdso_arm.S b/vdso/vdso_arm.S
deleted file mode 100644
index 38d3864..0000000
--- a/vdso/vdso_arm.S
+++ /dev/null
@@ -1,56 +0,0 @@
-//
-// Copyright (C) 2017 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-.text
-.globl native_bridge_trace
-.type native_bridge_trace, #function
-native_bridge_trace:
-  ldr r3, =0
-  bx r3
-
-.text
-.globl native_bridge_find_proxy_library_symbol
-.type native_bridge_find_proxy_library_symbol, #function
-native_bridge_find_proxy_library_symbol:
-  ldr r3, =0
-  bx r3
-
-.text
-.globl native_bridge_post_init
-.type native_bridge_post_init, #function
-native_bridge_post_init:
-  ldr r3, =0
-  bx r3
-
-.text
-// Symbol to set guest return address to when guest function is called from the runtime.
-// Provides unwind info that corresponds to ScopedHostCallFrame.
-// Provides 1 readable insn before and 2 after.
-// TODO(eaeltsin): may be change insns to what actual signal frame unwinder expects?
-// See bionic/libc/arch-arm/bionic/__restore.S
-.text
-  .fnstart
-  .save {r4, r5, lr, pc}
-  .movsp r4
-  nop
-.globl native_bridge_call_guest
-.type native_bridge_call_guest, #function
-native_bridge_call_guest:
-  nop
-  nop
-  ldr r3, =0
-  bx r3
-  .fnend
diff --git a/vdso/vdso_arm64.S b/vdso/vdso_arm64.S
deleted file mode 100644
index 100420c..0000000
--- a/vdso/vdso_arm64.S
+++ /dev/null
@@ -1,55 +0,0 @@
-//
-// Copyright (C) 2017 The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//      http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-.text
-.globl native_bridge_trace
-.type native_bridge_trace, #function
-native_bridge_trace:
-  ldr x3, =0
-  blr x3
-
-.text
-.globl native_bridge_find_proxy_library_symbol
-.type native_bridge_find_proxy_library_symbol, #function
-native_bridge_find_proxy_library_symbol:
-  ldr x3, =0
-  blr x3
-
-.text
-.globl native_bridge_post_init
-.type native_bridge_post_init, #function
-native_bridge_post_init:
-  ldr x3, =0
-  blr x3
-
-.text
-// Symbol to set guest return address to when guest function is called from the runtime.
-// Provides unwind info that corresponds to ScopedHostCallFrame.
-// Provides 1 readable insn before and 2 after.
-.text
-  .cfi_startproc;
-  .cfi_def_cfa w29, 32
-  .cfi_offset w30, -24
-  .cfi_offset w29, -32
-  nop
-.globl native_bridge_call_guest
-.type native_bridge_call_guest, #function
-native_bridge_call_guest:
-  nop
-  nop
-  ldr x3, =0
-  blr x3
-  .cfi_endproc;