From 88438081c6db1e38547ed5afea9aa701329ac01c Mon Sep 17 00:00:00 2001 From: Jonathan Pobst Date: Mon, 9 Aug 2021 16:02:34 -0500 Subject: [PATCH] [Mono.Android] Bind Android 12 Beta 3 and API-31 enumification (#6089) Context: https://developer.android.com/about/versions/12/overview Context: https://android-developers.googleblog.com/search/label/Android12 Android 12 [Beta 3 has been released][0]. * [API diff vs. Beta 2][1] * [API diff vs. API-30][2] Given that these API's are believed to be final (-ish?), we have performed enumification on this version. We will mark this API level as stable in a future commit, as that generally requires changing quite a few files. There are some methods that are documented as taking constants which we think would ideally be enumified, but the constants are not public. ?,31,android/net/ipsec/ike,TunnelModeChildSessionParams$Builder,addInternalAddressRequest,addressFamily, ?,31,android/net/ipsec/ike,TunnelModeChildSessionParams$Builder,addInternalDhcpServerRequest,addressFamily, ?,31,android/net/ipsec/ike,TunnelModeChildSessionParams$Builder,addInternalDnsServerRequest,addressFamily, `TunnelModeChildSessionParams.Builder.addInternal*Request()` methods like [`TunnelModeChildSessionParams.Builder.addInternalAddressRequest(int)`][3] are documented as taking `AF_INET` or `AF_INET6` values. Perusing the [`TunnelModeChildSessionParams.java`][4] source, we see that `AF_INET` is an [`import static android.system.OsConstants.AF_INET`][5], which is *not* a constant value. As such, it *cannot* be enumified, and thus none of these methods can be enumified. ?,31,android/telephony,[Interface]TelephonyCallback$CallDisconnectCauseListener,onCallDisconnectCauseChanged,preciseDisconnectCause, The `preciseDisconnectCause` parameter of [`TelephonyCallback.CallDisconnectCauseListener.onCallDisconnectCauseChanged()][6] is documented as being a value from `android.telephony.PreciseDisconnectCause`. However, [`PreciseDisconnectCause` is `@hide`][7]; it can't be bound. ?,31,android/telephony,[Interface]TelephonyCallback$DataActivationStateListener,onDataActivationStateChanged,state, Similar to the `PreciseDisconnectCause` scenario, the `state` parameter in [`TelephonyCallback.DataActivationStateListener.onDataActivationStateChanged()`][8] is documented as being a [`android.telephony.TelephonyManager.SIM_ACTIVATION_STATE_*`][9] value, which is `@hide`, and thus cannot be bound. [0]: https://android-developers.googleblog.com/2021/07/android-12-beta-3.html [1]: https://developer.android.com/sdk/api_diff/31-incr/changes [2]: https://developer.android.com/sdk/api_diff/31/changes [3]: https://developer.android.com/reference/android/net/ipsec/ike/TunnelModeChildSessionParams.Builder#addInternalAddressRequest(int) [4]: https://android.googlesource.com/platform/frameworks/opt/net/ike/+/9dbc4348a97db2076e6841669525d733bbacc287/src/java/android/net/ipsec/ike/TunnelModeChildSessionParams.java#19 [5]: https://developer.android.com/reference/android/system/OsConstants#AF_INET [6]: https://developer.android.com/reference/android/telephony/TelephonyCallback.CallDisconnectCauseListener#onCallDisconnectCauseChanged(int,%20int) [7]: https://android.googlesource.com/platform/frameworks/base/+/300c70d67617d01b3b0383742d275ab945a9ed80/telephony/java/android/telephony/PreciseDisconnectCause.java#23 [8]: https://developer.android.com/reference/android/telephony/TelephonyCallback.DataActivationStateListener?hl=en#onDataActivationStateChanged(int) [9]: https://android.googlesource.com/platform/frameworks/base/+/0c13fd19ecbb60c328a95e3c1620e03c7c8826cd/telephony/java/android/telephony/TelephonyManager.java#4921 --- .../Dependencies/AndroidToolchain.cs | 2 +- .../Android.Telephony/AccessNetworkTypes.cs | 21 + src/Mono.Android/Profiles/api-S.params.txt | 1133 +- src/Mono.Android/map.csv | 16811 ++++++++-------- src/Mono.Android/methodmap.csv | 330 + 5 files changed, 10198 insertions(+), 8099 deletions(-) create mode 100644 src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs diff --git a/build-tools/xaprepare/xaprepare/ConfigAndData/Dependencies/AndroidToolchain.cs b/build-tools/xaprepare/xaprepare/ConfigAndData/Dependencies/AndroidToolchain.cs index 435ba3f65a4..a65fc65373b 100644 --- a/build-tools/xaprepare/xaprepare/ConfigAndData/Dependencies/AndroidToolchain.cs +++ b/build-tools/xaprepare/xaprepare/ConfigAndData/Dependencies/AndroidToolchain.cs @@ -62,7 +62,7 @@ public AndroidToolchain () new AndroidPlatformComponent ("platform-28_r04", apiLevel: "28", pkgRevision: "4"), new AndroidPlatformComponent ("platform-29_r01", apiLevel: "29", pkgRevision: "1"), new AndroidPlatformComponent ("platform-30_r01", apiLevel: "30", pkgRevision: "1"), - new AndroidPlatformComponent ("platform-S_r05", apiLevel: "S", pkgRevision: "5"), + new AndroidPlatformComponent ("platform-31_r01", apiLevel: "S", pkgRevision: "1"), new AndroidToolchainComponent ("sources-30_r01", destDir: Path.Combine ("platforms", $"android-30", "src"), pkgRevision: "1", dependencyType: AndroidToolchainComponentType.BuildDependency), diff --git a/src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs b/src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs new file mode 100644 index 00000000000..fe060e1f0e5 --- /dev/null +++ b/src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Android.Telephony +{ +#if ANDROID_31 + // These constants were added in API-28 and were missed in enumification. + // Make an enum now because some new API-31 methods use them. + public enum AccessNetworkTypes + { + Unknown = 0, + Geran = 1, + Utran = 2, + Eutran = 3, + Cdma2000 = 4, + Iwlan = 5, + Ngran = 6 + } +#endif +} diff --git a/src/Mono.Android/Profiles/api-S.params.txt b/src/Mono.Android/Profiles/api-S.params.txt index 09227e817e1..f02722bba2d 100644 --- a/src/Mono.Android/Profiles/api-S.params.txt +++ b/src/Mono.Android/Profiles/api-S.params.txt @@ -526,6 +526,7 @@ package android.app onPerformDirectAction(java.lang.String actionId, android.os.Bundle arguments, android.os.CancellationSignal cancellationSignal, java.util.function.Consumer resultListener) onPictureInPictureModeChanged(boolean isInPictureInPictureMode) onPictureInPictureModeChanged(boolean isInPictureInPictureMode, android.content.res.Configuration newConfig) + onPictureInPictureUiStateChanged(android.app.PictureInPictureUiState pipState) onPostCreate(android.os.Bundle savedInstanceState) onPostCreate(android.os.Bundle savedInstanceState, android.os.PersistableBundle persistentState) onPrepareDialog(int id, android.app.Dialog dialog) @@ -911,6 +912,9 @@ package android.app setName(java.lang.String name) setZenPolicy(android.service.notification.ZenPolicy zenPolicy) writeToParcel(android.os.Parcel dest, int flags) + class BackgroundServiceStartNotAllowedException + #ctor(java.lang.String message) + writeToParcel(android.os.Parcel dest, int flags) class DatePickerDialog #ctor(android.content.Context context) #ctor(android.content.Context context, android.app.DatePickerDialog.OnDateSetListener listener, int year, int month, int dayOfMonth) @@ -1052,6 +1056,9 @@ package android.app setListAdapter(android.widget.ExpandableListAdapter adapter) setSelectedChild(int groupPosition, int childPosition, boolean shouldExpandGroup) setSelectedGroup(int groupPosition) + class ForegroundServiceStartNotAllowedException + #ctor(java.lang.String message) + writeToParcel(android.os.Parcel dest, int flags) class Fragment dump(java.lang.String prefix, java.io.FileDescriptor fd, java.io.PrintWriter writer, java.lang.String[] args) equals(java.lang.Object o) @@ -1397,9 +1404,10 @@ package android.app bigLargeIcon(android.graphics.Bitmap b) bigLargeIcon(android.graphics.drawable.Icon icon) bigPicture(android.graphics.Bitmap b) - bigPictureContentDescription(java.lang.CharSequence contentDescription) + bigPicture(android.graphics.drawable.Icon icon) #ctor(android.app.Notification.Builder builder) setBigContentTitle(java.lang.CharSequence title) + setContentDescription(java.lang.CharSequence contentDescription) setSummaryText(java.lang.CharSequence cs) showBigPictureWhenCollapsed(boolean show) class Notification.BigTextStyle @@ -1418,6 +1426,7 @@ package android.app setDesiredHeightResId(int heightResId) setIcon(android.graphics.drawable.Icon icon) setIntent(android.app.PendingIntent intent) + setSuppressableBubble(boolean suppressBubble) setSuppressNotification(boolean shouldSuppressNotif) class Notification.Builder addAction(android.app.Notification.Action action) @@ -1451,6 +1460,7 @@ package android.app setDeleteIntent(android.app.PendingIntent intent) setExtras(android.os.Bundle extras) setFlag(int mask, boolean value) + setForegroundServiceBehavior(int behavior) setFullScreenIntent(android.app.PendingIntent intent, boolean highPriority) setGroup(java.lang.String groupKey) setGroupAlertBehavior(int groupAlertBehavior) @@ -1469,7 +1479,6 @@ package android.app setRemoteInputHistory(java.lang.CharSequence[] text) setSettingsText(java.lang.CharSequence text) setShortcutId(java.lang.String shortcutId) - setShowForegroundImmediately(boolean showImmediately) setShowWhen(boolean show) setSmallIcon(android.graphics.drawable.Icon icon) setSmallIcon(int icon) @@ -1487,6 +1496,15 @@ package android.app setVibrate(long[] pattern) setVisibility(int visibility) setWhen(long when) + class Notification.CallStyle + forIncomingCall(android.app.Person person, android.app.PendingIntent declineIntent, android.app.PendingIntent answerIntent) + forOngoingCall(android.app.Person person, android.app.PendingIntent hangUpIntent) + forScreeningCall(android.app.Person person, android.app.PendingIntent hangUpIntent, android.app.PendingIntent answerIntent) + setAnswerButtonColorHint(int color) + setDeclineButtonColorHint(int color) + setIsVideo(boolean isVideo) + setVerificationIcon(android.graphics.drawable.Icon verificationIcon) + setVerificationText(java.lang.CharSequence verificationText) class Notification.CarExtender extend(android.app.Notification.Builder builder) #ctor(android.app.Notification notif) @@ -1654,6 +1672,9 @@ package android.app setAutoEnterEnabled(boolean autoEnterEnabled) setSeamlessResizeEnabled(boolean seamlessResizeEnabled) setSourceRectHint(android.graphics.Rect launchBounds) + class PictureInPictureUiState + equals(java.lang.Object o) + writeToParcel(android.os.Parcel out, int flags) class Presentation #ctor(android.content.Context outerContext, android.view.Display display) #ctor(android.content.Context outerContext, android.view.Display display, int theme) @@ -1795,6 +1816,7 @@ package android.app class UiModeManager disableCarMode(int flags) enableCarMode(int flags) + setApplicationNightMode(int mode) setCustomNightModeEnd(java.time.LocalTime time) setCustomNightModeStart(java.time.LocalTime time) setNightMode(int mode) @@ -1838,6 +1860,7 @@ package android.app fromBitmap(android.graphics.Bitmap bitmap) fromDrawable(android.graphics.drawable.Drawable drawable) #ctor(android.graphics.Color primaryColor, android.graphics.Color secondaryColor, android.graphics.Color tertiaryColor) + #ctor(android.graphics.Color primaryColor, android.graphics.Color secondaryColor, android.graphics.Color tertiaryColor, int colorHints) #ctor(android.os.Parcel parcel) writeToParcel(android.os.Parcel dest, int flags) class WallpaperInfo @@ -1891,6 +1914,7 @@ package android.app.admin onChoosePrivateKeyAlias(android.content.Context context, android.content.Intent intent, int uid, android.net.Uri uri, java.lang.String alias) onNetworkLogsAvailable(android.content.Context context, android.content.Intent intent, long batchToken, int networkLogsCount) onReceive(android.content.Context context, android.content.Intent intent) + onSecurityLogsAvailable(android.content.Context context, android.content.Intent intent) class DeviceAdminInfo #ctor(android.content.Context context, android.content.pm.ResolveInfo resolveInfo) dump(android.util.Printer pw, java.lang.String prefix) @@ -1907,12 +1931,14 @@ package android.app.admin onBugreportShared(android.content.Context context, android.content.Intent intent, java.lang.String bugreportHash) onBugreportSharingDeclined(android.content.Context context, android.content.Intent intent) onChoosePrivateKeyAlias(android.content.Context context, android.content.Intent intent, int uid, android.net.Uri uri, java.lang.String alias) + onComplianceAcknowledgementRequired(android.content.Context context, android.content.Intent intent) onDisabled(android.content.Context context, android.content.Intent intent) onDisableRequested(android.content.Context context, android.content.Intent intent) onEnabled(android.content.Context context, android.content.Intent intent) onLockTaskModeEntering(android.content.Context context, android.content.Intent intent, java.lang.String pkg) onLockTaskModeExiting(android.content.Context context, android.content.Intent intent) onNetworkLogsAvailable(android.content.Context context, android.content.Intent intent, long batchToken, int networkLogsCount) + onOperationSafetyStateChanged(android.content.Context context, int reason, boolean isSafe) onPasswordChanged(android.content.Context context, android.content.Intent intent) onPasswordChanged(android.content.Context context, android.content.Intent intent, android.os.UserHandle user) onPasswordExpiring(android.content.Context context, android.content.Intent intent) @@ -2021,6 +2047,7 @@ package android.app.admin getUserRestrictions(android.content.ComponentName admin) getWifiMacAddress(android.content.ComponentName admin) grantKeyPairToApp(android.content.ComponentName admin, java.lang.String alias, java.lang.String packageName) + grantKeyPairToWifiAuth(java.lang.String alias) hasCaCertInstalled(android.content.ComponentName admin, byte[] certBuffer) hasGrantedPolicy(android.content.ComponentName admin, int usesPolicy) hasKeyPair(java.lang.String alias) @@ -2038,6 +2065,7 @@ package android.app.admin isCommonCriteriaModeEnabled(android.content.ComponentName admin) isDeviceOwnerApp(java.lang.String packageName) isEphemeralUser(android.content.ComponentName admin) + isKeyPairGrantedToWifiAuth(java.lang.String alias) isLockTaskPermitted(java.lang.String pkg) isManagedProfile(android.content.ComponentName admin) isMasterVolumeMuted(android.content.ComponentName admin) @@ -2047,6 +2075,7 @@ package android.app.admin isProfileOwnerApp(java.lang.String packageName) isProvisioningAllowed(java.lang.String action) isResetPasswordTokenActive(android.content.ComponentName admin) + isSafeOperation(int reason) isSecurityLoggingEnabled(android.content.ComponentName admin) isUninstallBlocked(android.content.ComponentName admin, java.lang.String packageName) isUsingUnifiedPassword(android.content.ComponentName admin) @@ -2065,6 +2094,7 @@ package android.app.admin retrievePreRebootSecurityLogs(android.content.ComponentName admin) retrieveSecurityLogs(android.content.ComponentName admin) revokeKeyPairFromApp(android.content.ComponentName admin, java.lang.String alias, java.lang.String packageName) + revokeKeyPairFromWifiAuth(java.lang.String alias) setAccountManagementDisabled(android.content.ComponentName admin, java.lang.String accountType, boolean disabled) setAffiliationIds(android.content.ComponentName admin, java.util.Set ids) setAlwaysOnVpnPackage(android.content.ComponentName admin, java.lang.String vpnPackage, boolean lockdownEnabled) @@ -2107,6 +2137,8 @@ package android.app.admin setMaximumFailedPasswordsForWipe(android.content.ComponentName admin, int num) setMaximumTimeToLock(android.content.ComponentName admin, long timeMs) setMeteredDataDisabledPackages(android.content.ComponentName admin, java.util.List packageNames) + setNearbyAppStreamingPolicy(int policy) + setNearbyNotificationStreamingPolicy(int policy) setNetworkLoggingEnabled(android.content.ComponentName admin, boolean enabled) setOrganizationColor(android.content.ComponentName admin, int color) setOrganizationId(java.lang.String enterpriseId) @@ -2129,6 +2161,7 @@ package android.app.admin setPermittedCrossProfileNotificationListeners(android.content.ComponentName admin, java.util.List packageList) setPermittedInputMethods(android.content.ComponentName admin, java.util.List packageNames) setPersonalAppsSuspended(android.content.ComponentName admin, boolean suspended) + setPreferentialNetworkServiceEnabled(boolean enabled) setProfileEnabled(android.content.ComponentName admin) setProfileName(android.content.ComponentName admin, java.lang.String profileName) setRecommendedGlobalProxy(android.content.ComponentName admin, android.net.ProxyInfo proxyInfo) @@ -2149,6 +2182,7 @@ package android.app.admin setTimeZone(android.content.ComponentName admin, java.lang.String timeZone) setTrustAgentConfiguration(android.content.ComponentName admin, android.content.ComponentName target, android.os.PersistableBundle configuration) setUninstallBlocked(android.content.ComponentName admin, java.lang.String packageName, boolean uninstallBlocked) + setUsbDataSignalingEnabled(boolean enabled) setUserControlDisabledPackages(android.content.ComponentName admin, java.util.List packages) setUserIcon(android.content.ComponentName admin, android.graphics.Bitmap icon) startUserInBackground(android.content.ComponentName admin, android.os.UserHandle userHandle) @@ -2192,13 +2226,19 @@ package android.app.admin package android.app.appsearch ;--------------------------------------- + class AppSearchBatchResult.Builder + setFailure(KeyType key, int resultCode, java.lang.String errorMessage) + setResult(KeyType key, android.app.appsearch.AppSearchResult result) + setSuccess(KeyType key, ValueType value) class AppSearchManager createGlobalSearchSession(java.util.concurrent.Executor executor, java.util.function.Consumer> callback) createSearchSession(android.app.appsearch.AppSearchManager.SearchContext searchContext, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) class AppSearchManager.SearchContext.Builder - setDatabaseName(java.lang.String databaseName) + #ctor(java.lang.String databaseName) class AppSearchResult equals(java.lang.Object other) + newFailedResult(int resultCode, java.lang.String errorMessage) + newSuccessfulResult(ValueType value) class AppSearchSchema equals(java.lang.Object other) class AppSearchSchema.BooleanPropertyConfig.Builder @@ -2207,19 +2247,17 @@ package android.app.appsearch class AppSearchSchema.Builder addProperty(android.app.appsearch.AppSearchSchema.PropertyConfig propertyConfig) #ctor(java.lang.String schemaType) - setVersion(int version) class AppSearchSchema.BytesPropertyConfig.Builder #ctor(java.lang.String propertyName) setCardinality(int cardinality) class AppSearchSchema.DocumentPropertyConfig.Builder - #ctor(java.lang.String propertyName) + #ctor(java.lang.String propertyName, java.lang.String schemaType) setCardinality(int cardinality) - setIndexNestedProperties(boolean indexNestedProperties) - setSchemaType(java.lang.String schemaType) + setShouldIndexNestedProperties(boolean indexNestedProperties) class AppSearchSchema.DoublePropertyConfig.Builder #ctor(java.lang.String propertyName) setCardinality(int cardinality) - class AppSearchSchema.Int64PropertyConfig.Builder + class AppSearchSchema.LongPropertyConfig.Builder #ctor(java.lang.String propertyName) setCardinality(int cardinality) class AppSearchSchema.PropertyConfig @@ -2230,96 +2268,138 @@ package android.app.appsearch setIndexingType(int indexingType) setTokenizerType(int tokenizerType) class AppSearchSession - getByUri(android.app.appsearch.GetByUriRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) - getSchema(java.util.concurrent.Executor executor, java.util.function.Consumer>> callback) - putDocuments(android.app.appsearch.PutDocumentsRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) - query(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec, java.util.concurrent.Executor executor) - removeByQuery(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) - removeByUri(android.app.appsearch.RemoveByUriRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) + getByDocumentId(android.app.appsearch.GetByDocumentIdRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) + getNamespaces(java.util.concurrent.Executor executor, java.util.function.Consumer>> callback) + getSchema(java.util.concurrent.Executor executor, java.util.function.Consumer> callback) + getStorageInfo(java.util.concurrent.Executor executor, java.util.function.Consumer> callback) + put(android.app.appsearch.PutDocumentsRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) + remove(android.app.appsearch.RemoveByDocumentIdRequest request, java.util.concurrent.Executor executor, android.app.appsearch.BatchResultCallback callback) + remove(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) reportUsage(android.app.appsearch.ReportUsageRequest request, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) - setSchema(android.app.appsearch.SetSchemaRequest request, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) + search(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec) + setSchema(android.app.appsearch.SetSchemaRequest request, java.util.concurrent.Executor workExecutor, java.util.concurrent.Executor callbackExecutor, java.util.function.Consumer> callback) interface BatchResultCallback onResult(android.app.appsearch.AppSearchBatchResult result) onSystemError(java.lang.Throwable throwable) class GenericDocument equals(java.lang.Object other) #ctor(android.app.appsearch.GenericDocument document) - getProperty(java.lang.String key) - getPropertyBoolean(java.lang.String key) - getPropertyBooleanArray(java.lang.String key) - getPropertyBytes(java.lang.String key) - getPropertyBytesArray(java.lang.String key) - getPropertyDocument(java.lang.String key) - getPropertyDocumentArray(java.lang.String key) - getPropertyDouble(java.lang.String key) - getPropertyDoubleArray(java.lang.String key) - getPropertyLong(java.lang.String key) - getPropertyLongArray(java.lang.String key) - getPropertyString(java.lang.String key) - getPropertyStringArray(java.lang.String key) + getProperty(java.lang.String path) + getPropertyBoolean(java.lang.String path) + getPropertyBooleanArray(java.lang.String path) + getPropertyBytes(java.lang.String path) + getPropertyBytesArray(java.lang.String path) + getPropertyDocument(java.lang.String path) + getPropertyDocumentArray(java.lang.String path) + getPropertyDouble(java.lang.String path) + getPropertyDoubleArray(java.lang.String path) + getPropertyLong(java.lang.String path) + getPropertyLongArray(java.lang.String path) + getPropertyString(java.lang.String path) + getPropertyStringArray(java.lang.String path) class GenericDocument.Builder - #ctor(java.lang.String uri, java.lang.String schemaType) + #ctor(java.lang.String namespace, java.lang.String id, java.lang.String schemaType) setCreationTimestampMillis(long creationTimestampMillis) - setNamespace(java.lang.String namespace) - setPropertyBoolean(java.lang.String key, boolean... values) - setPropertyBytes(java.lang.String key, byte[]... values) - setPropertyDocument(java.lang.String key, android.app.appsearch.GenericDocument... values) - setPropertyDouble(java.lang.String key, double... values) - setPropertyLong(java.lang.String key, long... values) - setPropertyString(java.lang.String key, java.lang.String... values) + setPropertyBoolean(java.lang.String name, boolean... values) + setPropertyBytes(java.lang.String name, byte[]... values) + setPropertyDocument(java.lang.String name, android.app.appsearch.GenericDocument... values) + setPropertyDouble(java.lang.String name, double... values) + setPropertyLong(java.lang.String name, long... values) + setPropertyString(java.lang.String name, java.lang.String... values) setScore(int score) setTtlMillis(long ttlMillis) - class GetByUriRequest.Builder - addProjection(java.lang.String schemaType, java.lang.String... propertyPaths) + class GetByDocumentIdRequest.Builder + addIds(java.lang.String... ids) + addIds(java.util.Collection ids) addProjection(java.lang.String schemaType, java.util.Collection propertyPaths) - addUri(java.lang.String... uris) - addUri(java.util.Collection uris) - setNamespace(java.lang.String namespace) + #ctor(java.lang.String namespace) + class GetSchemaResponse.Builder + addSchema(android.app.appsearch.AppSearchSchema schema) + setVersion(int version) class GlobalSearchSession - query(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec, java.util.concurrent.Executor executor) + reportSystemUsage(android.app.appsearch.ReportSystemUsageRequest request, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) + search(java.lang.String queryExpression, android.app.appsearch.SearchSpec searchSpec) + class Migrator + onDowngrade(int currentVersion, int finalVersion, android.app.appsearch.GenericDocument document) + onUpgrade(int currentVersion, int finalVersion, android.app.appsearch.GenericDocument document) + shouldMigrate(int currentVersion, int finalVersion) class PackageIdentifier equals(java.lang.Object obj) #ctor(java.lang.String packageName, byte[] sha256Certificate) class PutDocumentsRequest.Builder - addGenericDocument(android.app.appsearch.GenericDocument... documents) - addGenericDocument(java.util.Collection documents) - class RemoveByUriRequest.Builder - addUri(java.lang.String... uris) - addUri(java.util.Collection uris) - setNamespace(java.lang.String namespace) + addGenericDocuments(android.app.appsearch.GenericDocument... documents) + addGenericDocuments(java.util.Collection documents) + class RemoveByDocumentIdRequest.Builder + addIds(java.lang.String... ids) + addIds(java.util.Collection ids) + #ctor(java.lang.String namespace) + class ReportSystemUsageRequest.Builder + #ctor(java.lang.String packageName, java.lang.String databaseName, java.lang.String namespace, java.lang.String documentId) + setUsageTimestampMillis(long usageTimestampMillis) class ReportUsageRequest.Builder - setNamespace(java.lang.String namespace) - setUri(java.lang.String uri) - setUsageTimeMillis(long usageTimeMillis) + #ctor(java.lang.String namespace, java.lang.String documentId) + setUsageTimestampMillis(long usageTimestampMillis) + class SearchResult.Builder + addMatchInfo(android.app.appsearch.SearchResult.MatchInfo matchInfo) + #ctor(java.lang.String packageName, java.lang.String databaseName) + setGenericDocument(android.app.appsearch.GenericDocument document) + setRankingSignal(double rankingSignal) + class SearchResult.MatchInfo.Builder + #ctor(java.lang.String propertyPath) + setExactMatchRange(android.app.appsearch.SearchResult.MatchRange matchRange) + setSnippetRange(android.app.appsearch.SearchResult.MatchRange matchRange) class SearchResult.MatchRange equals(java.lang.Object other) + #ctor(int start, int end) class SearchResults - getNextPage(java.util.function.Consumer>> callback) + getNextPage(java.util.concurrent.Executor executor, java.util.function.Consumer>> callback) class SearchSpec.Builder + addFilterNamespaces(java.lang.String... namespaces) + addFilterNamespaces(java.util.Collection namespaces) addFilterPackageNames(java.lang.String... packageNames) addFilterPackageNames(java.util.Collection packageNames) - addNamespace(java.lang.String... namespaces) - addNamespace(java.util.Collection namespaces) - addProjection(java.lang.String schemaType, java.lang.String... propertyPaths) - addProjection(java.lang.String schemaType, java.util.Collection propertyPaths) - addSchemaType(java.lang.String... schemaTypes) - addSchemaType(java.util.Collection schemaTypes) + addFilterSchemas(java.lang.String... schemas) + addFilterSchemas(java.util.Collection schemas) + addProjection(java.lang.String schema, java.util.Collection propertyPaths) setMaxSnippetSize(int maxSnippetSize) setOrder(int order) setRankingStrategy(int rankingStrategy) - setResultCountPerPage(int numPerPage) + setResultCountPerPage(int resultCountPerPage) + setResultGrouping(int groupingTypeFlags, int limit) setSnippetCount(int snippetCount) setSnippetCountPerProperty(int snippetCountPerProperty) - setTermMatch(int termMatchTypeCode) + setTermMatch(int termMatchType) class SetSchemaRequest.Builder - addSchema(android.app.appsearch.AppSearchSchema... schemas) - addSchema(java.util.Collection schemas) + addSchemas(android.app.appsearch.AppSearchSchema... schemas) + addSchemas(java.util.Collection schemas) setForceOverride(boolean forceOverride) + setMigrator(java.lang.String schemaType, android.app.appsearch.Migrator migrator) + setMigrators(java.util.Map migrators) + setSchemaTypeDisplayedBySystem(java.lang.String schemaType, boolean displayed) setSchemaTypeVisibilityForPackage(java.lang.String schemaType, boolean visible, android.app.appsearch.PackageIdentifier packageIdentifier) - setSchemaTypeVisibilityForSystemUi(java.lang.String schemaType, boolean visible) + setVersion(int version) + class SetSchemaResponse.Builder + addDeletedType(java.lang.String deletedType) + addDeletedTypes(java.util.Collection deletedTypes) + addIncompatibleType(java.lang.String incompatibleType) + addIncompatibleTypes(java.util.Collection incompatibleTypes) + addMigratedType(java.lang.String migratedType) + addMigratedTypes(java.util.Collection migratedTypes) + addMigrationFailure(android.app.appsearch.SetSchemaResponse.MigrationFailure migrationFailure) + addMigrationFailures(java.util.Collection migrationFailures) + class SetSchemaResponse.MigrationFailure + #ctor(java.lang.String namespace, java.lang.String documentId, java.lang.String schemaType, android.app.appsearch.AppSearchResult failedResult) + class StorageInfo.Builder + setAliveDocumentsCount(int aliveDocumentsCount) + setAliveNamespacesCount(int aliveNamespacesCount) + setSizeBytes(long sizeBytes) package android.app.appsearch.exceptions ;--------------------------------------- + class AppSearchException + #ctor(int resultCode) + #ctor(int resultCode, java.lang.String message) + #ctor(int resultCode, java.lang.String message, java.lang.Throwable cause) package android.app.assist ;--------------------------------------- @@ -2416,7 +2496,6 @@ package android.app.job setEstimatedNetworkBytes(long downloadBytes, long uploadBytes) setExpedited(boolean expedited) setExtras(android.os.PersistableBundle extras) - setForeground(boolean foreground) setImportantWhileForeground(boolean importantWhileForeground) setMinimumLatency(long minLatencyMillis) setOverrideDeadline(long maxExecutionDelayMillis) @@ -2614,11 +2693,13 @@ package android.appwidget onLayout(boolean changed, int left, int top, int right, int bottom) prepareView(android.view.View view) setAppWidget(int appWidgetId, android.appwidget.AppWidgetProviderInfo info) + setColorResources(android.util.SparseIntArray colorMapping) setExecutor(java.util.concurrent.Executor executor) setOnLightBackground(boolean onLightBackground) updateAppWidget(android.widget.RemoteViews remoteViews) updateAppWidgetOptions(android.os.Bundle options) updateAppWidgetSize(android.os.Bundle newOptions, int minWidth, int minHeight, int maxWidth, int maxHeight) + updateAppWidgetSize(android.os.Bundle newOptions, java.util.List sizes) class AppWidgetManager bindAppWidgetIdIfAllowed(int appWidgetId, android.content.ComponentName provider) bindAppWidgetIdIfAllowed(int appWidgetId, android.content.ComponentName provider, android.os.Bundle options) @@ -2649,6 +2730,7 @@ package android.appwidget onUpdate(android.content.Context context, android.appwidget.AppWidgetManager appWidgetManager, int[] appWidgetIds) class AppWidgetProviderInfo #ctor(android.os.Parcel in) + loadDescription(android.content.Context context) loadIcon(android.content.Context context, int density) loadLabel(android.content.pm.PackageManager packageManager) loadPreviewImage(android.content.Context context, int density) @@ -2689,6 +2771,7 @@ package android.bluetooth createL2capChannel(int psm) createRfcommSocketToServiceRecord(java.util.UUID uuid) equals(java.lang.Object o) + setAlias(java.lang.String alias) setPairingConfirmation(boolean confirm) setPin(byte[] pin) writeToParcel(android.os.Parcel out, int flags) @@ -3020,6 +3103,15 @@ package android.content dump(java.lang.String prefix, java.io.FileDescriptor fd, java.io.PrintWriter writer, java.lang.String[] args) onCanceled(D data) setUpdateThrottle(long delayMS) + class AttributionSource + equals(java.lang.Object o) + isTrusted(android.content.Context context) + writeToParcel(android.os.Parcel dest, int flags) + class AttributionSource.Builder + #ctor(int uid) + setAttributionTag(java.lang.String value) + setNext(android.content.AttributionSource value) + setPackageName(java.lang.String value) class BroadcastReceiver getResultExtras(boolean makeMap) onReceive(android.content.Context context, android.content.Intent intent) @@ -3069,6 +3161,7 @@ package android.content #ctor(java.lang.CharSequence label, java.lang.String[] mimeTypes) compareMimeTypes(java.lang.String concreteType, java.lang.String desiredType) filterMimeTypes(java.lang.String mimeType) + getConfidenceScore(java.lang.String entity) getMimeType(int index) hasMimeType(java.lang.String mimeType) setExtras(android.os.PersistableBundle extras) @@ -3300,14 +3393,18 @@ package android.content bindServiceAsUser(android.content.Intent service, android.content.ServiceConnection conn, int flags, android.os.UserHandle user) checkCallingOrSelfPermission(java.lang.String permission) checkCallingOrSelfUriPermission(android.net.Uri uri, int modeFlags) + checkCallingOrSelfUriPermissions(java.util.List uris, int modeFlags) checkCallingPermission(java.lang.String permission) checkCallingUriPermission(android.net.Uri uri, int modeFlags) + checkCallingUriPermissions(java.util.List uris, int modeFlags) checkPermission(java.lang.String permission, int pid, int uid) checkSelfPermission(java.lang.String permission) checkUriPermission(android.net.Uri uri, int pid, int uid, int modeFlags) checkUriPermission(android.net.Uri uri, java.lang.String readPermission, java.lang.String writePermission, int pid, int uid, int modeFlags) + checkUriPermissions(java.util.List uris, int pid, int uid, int modeFlags) createAttributionContext(java.lang.String attributionTag) createConfigurationContext(android.content.res.Configuration overrideConfiguration) + createContext(android.content.ContextParams contextParams) createContextForSplit(java.lang.String splitName) createDisplayContext(android.view.Display display) createPackageContext(java.lang.String packageName, int flags) @@ -3339,7 +3436,6 @@ package android.content getSystemServiceName(java.lang.Class serviceClass) getText(int resId) grantUriPermission(java.lang.String toPackage, android.net.Uri uri, int modeFlags) - isUiContext(android.content.Context context) moveDatabaseFrom(android.content.Context sourceContext, java.lang.String name) moveSharedPreferencesFrom(android.content.Context sourceContext, java.lang.String name) obtainStyledAttributes(android.util.AttributeSet set, int[] attrs) @@ -3369,6 +3465,7 @@ package android.content sendOrderedBroadcast(android.content.Intent intent, java.lang.String receiverPermission, java.lang.String receiverAppOp, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user, java.lang.String receiverPermission, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendStickyBroadcast(android.content.Intent intent) + sendStickyBroadcast(android.content.Intent intent, android.os.Bundle options) sendStickyBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user) sendStickyOrderedBroadcast(android.content.Intent intent, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendStickyOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) @@ -3389,6 +3486,10 @@ package android.content unregisterComponentCallbacks(android.content.ComponentCallbacks callback) unregisterReceiver(android.content.BroadcastReceiver receiver) updateServiceGroup(android.content.ServiceConnection conn, int group, int importance) + class ContextParams.Builder + #ctor(android.content.ContextParams params) + setAttributionTag(java.lang.String attributionTag) + setNextAttributionSource(android.content.AttributionSource next) class ContextWrapper attachBaseContext(android.content.Context base) bindIsolatedService(android.content.Intent service, int flags, java.lang.String instanceName, java.util.concurrent.Executor executor, android.content.ServiceConnection conn) @@ -3397,15 +3498,19 @@ package android.content bindServiceAsUser(android.content.Intent service, android.content.ServiceConnection conn, int flags, android.os.UserHandle user) checkCallingOrSelfPermission(java.lang.String permission) checkCallingOrSelfUriPermission(android.net.Uri uri, int modeFlags) + checkCallingOrSelfUriPermissions(java.util.List uris, int modeFlags) checkCallingPermission(java.lang.String permission) checkCallingUriPermission(android.net.Uri uri, int modeFlags) + checkCallingUriPermissions(java.util.List uris, int modeFlags) checkPermission(java.lang.String permission, int pid, int uid) checkSelfPermission(java.lang.String permission) checkUriPermission(android.net.Uri uri, int pid, int uid, int modeFlags) checkUriPermission(android.net.Uri uri, java.lang.String readPermission, java.lang.String writePermission, int pid, int uid, int modeFlags) + checkUriPermissions(java.util.List uris, int pid, int uid, int modeFlags) #ctor(android.content.Context base) createAttributionContext(java.lang.String attributionTag) createConfigurationContext(android.content.res.Configuration overrideConfiguration) + createContext(android.content.ContextParams contextParams) createContextForSplit(java.lang.String splitName) createDisplayContext(android.view.Display display) createPackageContext(java.lang.String packageName, int flags) @@ -3454,6 +3559,7 @@ package android.content sendOrderedBroadcast(android.content.Intent intent, java.lang.String receiverPermission, java.lang.String receiverAppOp, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user, java.lang.String receiverPermission, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendStickyBroadcast(android.content.Intent intent) + sendStickyBroadcast(android.content.Intent intent, android.os.Bundle options) sendStickyBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user) sendStickyOrderedBroadcast(android.content.Intent intent, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) sendStickyOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle user, android.content.BroadcastReceiver resultReceiver, android.os.Handler scheduler, int initialCode, java.lang.String initialData, android.os.Bundle initialExtras) @@ -3788,6 +3894,7 @@ package android.content setManual(boolean isManual) setNoRetry(boolean noRetry) setRequiresCharging(boolean requiresCharging) + setScheduleAsExpeditedJob(boolean scheduleAsExpeditedJob) setSyncAdapter(android.accounts.Account account, java.lang.String authority) syncPeriodic(long pollFrequency, long beforeSeconds) class SyncResult @@ -3877,6 +3984,7 @@ package android.content.pm getShortcutConfigActivityIntent(android.content.pm.LauncherActivityInfo info) getShortcutConfigActivityList(java.lang.String packageName, android.os.UserHandle user) getShortcutIconDrawable(android.content.pm.ShortcutInfo shortcut, int density) + getShortcutIntent(java.lang.String packageName, java.lang.String shortcutId, android.os.Bundle opts, android.os.UserHandle user) getShortcuts(android.content.pm.LauncherApps.ShortcutQuery query, android.os.UserHandle user) getSuspendedPackageLauncherExtras(java.lang.String packageName, android.os.UserHandle user) isActivityEnabled(android.content.ComponentName component, android.os.UserHandle user) @@ -3963,9 +4071,11 @@ package android.content.pm setAutoRevokePermissionsMode(boolean shouldAutoRevoke) setInstallLocation(int installLocation) setInstallReason(int installReason) + setInstallScenario(int installScenario) setOriginatingUid(int originatingUid) setOriginatingUri(android.net.Uri originatingUri) setReferrerUri(android.net.Uri referrerUri) + setRequireUserAction(int requireUserAction) setSize(long sizeBytes) setWhitelistedRestrictedPermissions(java.util.Set permissions) writeToParcel(android.os.Parcel dest, int flags) @@ -4017,6 +4127,7 @@ package android.content.pm getChangedPackages(int sequenceNumber) getComponentEnabledSetting(android.content.ComponentName componentName) getDrawable(java.lang.String packageName, int resid, android.content.pm.ApplicationInfo appInfo) + getGroupOfPlatformPermission(java.lang.String permissionName, java.util.concurrent.Executor executor, java.util.function.Consumer callback) getInstalledApplications(int flags) getInstalledModules(int flags) getInstalledPackages(int flags) @@ -4038,6 +4149,7 @@ package android.content.pm getPackageUid(java.lang.String packageName, int flags) getPermissionGroupInfo(java.lang.String groupName, int flags) getPermissionInfo(java.lang.String permName, int flags) + getPlatformPermissionsForGroup(java.lang.String permissionGroupName, java.util.concurrent.Executor executor, java.util.function.Consumer> callback) getPreferredActivities(java.util.List outFilters, java.util.List outActivities, java.lang.String packageName) getPreferredPackages(int flags) getProperty(java.lang.String propertyName, android.content.ComponentName component) @@ -4046,6 +4158,7 @@ package android.content.pm getReceiverInfo(android.content.ComponentName component, int flags) getResourcesForActivity(android.content.ComponentName activityName) getResourcesForApplication(android.content.pm.ApplicationInfo app) + getResourcesForApplication(android.content.pm.ApplicationInfo app, android.content.res.Configuration configuration) getResourcesForApplication(java.lang.String packageName) getServiceInfo(android.content.ComponentName component, int flags) getSharedLibraries(int flags) @@ -4082,7 +4195,7 @@ package android.content.pm removePackageFromPreferred(java.lang.String packageName) removePermission(java.lang.String permName) removeWhitelistedRestrictedPermission(java.lang.String packageName, java.lang.String permName, int whitelistFlags) - requestChecksums(java.lang.String packageName, boolean includeSplits, int required, java.util.List trustedInstallers, android.content.IntentSender statusReceiver) + requestChecksums(java.lang.String packageName, boolean includeSplits, int required, java.util.List trustedInstallers, android.content.pm.PackageManager.OnChecksumsReadyListener onChecksumsReadyListener) resolveActivity(android.content.Intent intent, int flags) resolveContentProvider(java.lang.String authority, int flags) resolveService(android.content.Intent intent, int flags) @@ -4096,6 +4209,8 @@ package android.content.pm verifyPendingInstall(int id, int verificationCode) class PackageManager.NameNotFoundException #ctor(java.lang.String name) + interface PackageManager.OnChecksumsReadyListener + onChecksumsReady(java.util.List checksums) class PackageManager.Property writeToParcel(android.os.Parcel dest, int flags) class PackageStats @@ -4152,6 +4267,7 @@ package android.content.pm setPersons(android.app.Person[] persons) setRank(int rank) setShortLabel(java.lang.CharSequence shortLabel) + setStartingTheme(int themeResId) #ctor(android.content.Context context, java.lang.String id) class ShortcutManager addDynamicShortcuts(java.util.List shortcutInfoList) @@ -4182,6 +4298,14 @@ package android.content.pm #ctor(java.lang.String packageName, long versionCode) writeToParcel(android.os.Parcel parcel, int flags) +package android.content.pm.verify.domain +;--------------------------------------- + class DomainVerificationManager + getDomainVerificationUserState(java.lang.String packageName) + class DomainVerificationUserState + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + package android.content.res ;--------------------------------------- class AssetFileDescriptor @@ -4220,6 +4344,7 @@ package android.content.res getColorForState(int[] stateSet, int defaultColor) valueOf(int color) withAlpha(int alpha) + withLStar(float lStar) writeToParcel(android.os.Parcel dest, int flags) class Configuration compareTo(android.content.res.Configuration that) @@ -5010,9 +5135,6 @@ package android.graphics equals(java.lang.Object object) class BlurMaskFilter #ctor(float radius, android.graphics.BlurMaskFilter.Blur style) - class BlurShader - #ctor(float radiusX, float radiusY, android.graphics.Shader inputShader) - #ctor(float radiusX, float radiusY, android.graphics.Shader inputShader, android.graphics.Shader.TileMode edgeTreatment) class Camera applyToCanvas(android.graphics.Canvas canvas) dotWithNormal(float dx, float dy, float dz) @@ -5697,6 +5819,7 @@ package android.graphics createColorFilterEffect(android.graphics.ColorFilter colorFilter, android.graphics.RenderEffect renderEffect) createOffsetEffect(float offsetX, float offsetY) createOffsetEffect(float offsetX, float offsetY, android.graphics.RenderEffect input) + createShaderEffect(android.graphics.Shader shader) class RenderNode beginRecording(int width, int height) getInverseMatrix(android.graphics.Matrix outMatrix) @@ -5817,6 +5940,7 @@ package android.graphics.drawable class AnimatedImageDrawable draw(android.graphics.Canvas canvas) inflate(android.content.res.Resources r, org.xmlpull.v1.XmlPullParser parser, android.util.AttributeSet attrs, android.content.res.Resources.Theme theme) + onBoundsChange(android.graphics.Rect bounds) onLayoutDirectionChanged(int layoutDirection) registerAnimationCallback(android.graphics.drawable.Animatable2.AnimationCallback callback) setAlpha(int alpha) @@ -6203,6 +6327,7 @@ package android.graphics.drawable #ctor(android.content.res.ColorStateList color, android.graphics.drawable.Drawable content, android.graphics.drawable.Drawable mask) setColor(android.content.res.ColorStateList color) setDrawableByLayerId(int id, android.graphics.drawable.Drawable drawable) + setEffectColor(android.content.res.ColorStateList color) setHotspot(float x, float y) setHotspotBounds(int left, int top, int right, int bottom) setPaddingMode(int mode) @@ -6540,6 +6665,8 @@ package android.hardware class SensorManager.DynamicSensorCallback onDynamicSensorConnected(android.hardware.Sensor sensor) onDynamicSensorDisconnected(android.hardware.Sensor sensor) + class SensorPrivacyManager + supportsSensorToggle(int sensor) class TriggerEventListener onTrigger(android.hardware.TriggerEvent event) @@ -6547,6 +6674,7 @@ package android.hardware.biometrics ;--------------------------------------- class BiometricManager canAuthenticate(int authenticators) + getStrings(int authenticators) class BiometricPrompt authenticate(android.hardware.biometrics.BiometricPrompt.CryptoObject crypto, android.os.CancellationSignal cancel, java.util.concurrent.Executor executor, android.hardware.biometrics.BiometricPrompt.AuthenticationCallback callback) authenticate(android.os.CancellationSignal cancel, java.util.concurrent.Executor executor, android.hardware.biometrics.BiometricPrompt.AuthenticationCallback callback) @@ -6621,6 +6749,7 @@ package android.hardware.camera2 createCaptureSession(java.util.List outputs, android.hardware.camera2.CameraCaptureSession.StateCallback callback, android.os.Handler handler) createCaptureSessionByOutputConfigurations(java.util.List outputConfigurations, android.hardware.camera2.CameraCaptureSession.StateCallback callback, android.os.Handler handler) createConstrainedHighSpeedCaptureSession(java.util.List outputs, android.hardware.camera2.CameraCaptureSession.StateCallback callback, android.os.Handler handler) + createExtensionSession(android.hardware.camera2.params.ExtensionSessionConfiguration extensionConfiguration) createReprocessableCaptureSession(android.hardware.camera2.params.InputConfiguration inputConfig, java.util.List outputs, android.hardware.camera2.CameraCaptureSession.StateCallback callback, android.os.Handler handler) createReprocessableCaptureSessionByConfigurations(android.hardware.camera2.params.InputConfiguration inputConfig, java.util.List outputs, android.hardware.camera2.CameraCaptureSession.StateCallback callback, android.os.Handler handler) createReprocessCaptureRequest(android.hardware.camera2.TotalCaptureResult inputResult) @@ -6631,8 +6760,26 @@ package android.hardware.camera2 onDisconnected(android.hardware.camera2.CameraDevice camera) onError(android.hardware.camera2.CameraDevice camera, int error) onOpened(android.hardware.camera2.CameraDevice camera) + class CameraExtensionCharacteristics + getEstimatedCaptureLatencyRangeMillis(int extension, android.util.Size captureOutputSize, int format) + getExtensionSupportedSizes(int extension, int format) + getExtensionSupportedSizes(int extension, java.lang.Class klass) + class CameraExtensionSession + capture(android.hardware.camera2.CaptureRequest request, java.util.concurrent.Executor executor, android.hardware.camera2.CameraExtensionSession.ExtensionCaptureCallback listener) + setRepeatingRequest(android.hardware.camera2.CaptureRequest request, java.util.concurrent.Executor executor, android.hardware.camera2.CameraExtensionSession.ExtensionCaptureCallback listener) + class CameraExtensionSession.ExtensionCaptureCallback + onCaptureFailed(android.hardware.camera2.CameraExtensionSession session, android.hardware.camera2.CaptureRequest request) + onCaptureProcessStarted(android.hardware.camera2.CameraExtensionSession session, android.hardware.camera2.CaptureRequest request) + onCaptureSequenceAborted(android.hardware.camera2.CameraExtensionSession session, int sequenceId) + onCaptureSequenceCompleted(android.hardware.camera2.CameraExtensionSession session, int sequenceId) + onCaptureStarted(android.hardware.camera2.CameraExtensionSession session, android.hardware.camera2.CaptureRequest request, long timestamp) + class CameraExtensionSession.StateCallback + onClosed(android.hardware.camera2.CameraExtensionSession session) + onConfigured(android.hardware.camera2.CameraExtensionSession session) + onConfigureFailed(android.hardware.camera2.CameraExtensionSession session) class CameraManager getCameraCharacteristics(java.lang.String cameraId) + getCameraExtensionCharacteristics(java.lang.String cameraId) isConcurrentSessionConfigurationSupported(java.util.Map cameraIdAndSessionConfig) openCamera(java.lang.String cameraId, android.hardware.camera2.CameraDevice.StateCallback callback, android.os.Handler handler) openCamera(java.lang.String cameraId, java.util.concurrent.Executor executor, android.hardware.camera2.CameraDevice.StateCallback callback) @@ -6687,6 +6834,10 @@ package android.hardware.camera2 writeByteBuffer(java.io.OutputStream dngOutput, android.util.Size size, java.nio.ByteBuffer pixels, long offset) writeImage(java.io.OutputStream dngOutput, android.media.Image pixels) writeInputStream(java.io.OutputStream dngOutput, android.util.Size size, java.io.InputStream pixels, long offset) + class MultiResolutionImageReader + getStreamInfoForImageReader(android.media.ImageReader reader) + #ctor(java.util.Collection streams, int format, int maxImages) + setOnImageAvailableListener(android.media.ImageReader.OnImageAvailableListener listener, java.util.concurrent.Executor executor) package android.hardware.camera2.params ;--------------------------------------- @@ -6703,9 +6854,12 @@ package android.hardware.camera2.params copyElements(int[] destination, int offset) equals(java.lang.Object obj) getElement(int column, int row) + class ExtensionSessionConfiguration + #ctor(int extension, java.util.List outputs, java.util.concurrent.Executor executor, android.hardware.camera2.CameraExtensionSession.StateCallback listener) class InputConfiguration equals(java.lang.Object obj) #ctor(int width, int height, int format) + #ctor(java.util.Collection multiResolutionInputs, int format) class LensShadingMap copyGainFactors(float[] destination, int offset) equals(java.lang.Object obj) @@ -6721,15 +6875,25 @@ package android.hardware.camera2.params #ctor(android.graphics.Point xy, android.util.Size dimensions, int meteringWeight) #ctor(android.graphics.Rect rect, int meteringWeight) #ctor(int x, int y, int width, int height, int meteringWeight) + class MultiResolutionStreamConfigurationMap + equals(java.lang.Object obj) + getInputInfo(int format) + getOutputInfo(int format) + class MultiResolutionStreamInfo + equals(java.lang.Object obj) + #ctor(int streamWidth, int streamHeight, java.lang.String physicalCameraId) class OisSample equals(java.lang.Object obj) #ctor(long timestamp, float xShift, float yShift) class OutputConfiguration + addSensorPixelModeUsed(int sensorPixelModeUsed) addSurface(android.view.Surface surface) + createInstancesForMultiResolutionOutput(android.hardware.camera2.MultiResolutionImageReader multiResolutionImageReader) equals(java.lang.Object obj) #ctor(android.util.Size surfaceSize, java.lang.Class klass) #ctor(android.view.Surface surface) #ctor(int surfaceGroupId, android.view.Surface surface) + removeSensorPixelModeUsed(int sensorPixelModeUsed) removeSurface(android.view.Surface surface) setPhysicalCameraId(java.lang.String physicalCameraId) writeToParcel(android.os.Parcel dest, int flags) @@ -6783,6 +6947,10 @@ package android.hardware.camera2.params package android.hardware.display ;--------------------------------------- + class DeviceProductInfo + #ctor(java.lang.String name, java.lang.String manufacturerPnpId, java.lang.String productId, int modelYear, int connectionToSinkType) + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) class DisplayManager createVirtualDisplay(java.lang.String name, int width, int height, int densityDpi, android.view.Surface surface, int flags) createVirtualDisplay(java.lang.String name, int width, int height, int densityDpi, android.view.Surface surface, int flags, android.hardware.display.VirtualDisplay.Callback callback, android.os.Handler handler) @@ -6823,6 +6991,24 @@ package android.hardware.input onInputDeviceChanged(int deviceId) onInputDeviceRemoved(int deviceId) +package android.hardware.lights +;--------------------------------------- + class Light + equals(java.lang.Object obj) + writeToParcel(android.os.Parcel dest, int flags) + class LightsManager + getLightState(android.hardware.lights.Light light) + class LightsManager.LightsSession + requestLights(android.hardware.lights.LightsRequest request) + class LightsRequest.Builder + addLight(android.hardware.lights.Light light, android.hardware.lights.LightState state) + clearLight(android.hardware.lights.Light light) + class LightState + writeToParcel(android.os.Parcel dest, int flags) + class LightState.Builder + setColor(int color) + setPlayerId(int playerId) + package android.hardware.usb ;--------------------------------------- class UsbAccessory @@ -8348,6 +8534,7 @@ package android.icu.util equals(java.lang.Object obj) forLanguageTag(java.lang.String languageTag) forLocale(java.util.Locale loc) + getAvailableLocalesByType(android.icu.util.ULocale.AvailableType type) getBaseName(java.lang.String localeID) getCountry(java.lang.String localeID) getDefault(android.icu.util.ULocale.Category category) @@ -8709,6 +8896,7 @@ package android.location setExtras(android.os.Bundle extras) setLatitude(double latitude) setLongitude(double longitude) + setMock(boolean mock) setProvider(java.lang.String provider) setSpeed(float speed) setSpeedAccuracyMetersPerSecond(float speedAccuracyMeterPerSecond) @@ -8718,7 +8906,7 @@ package android.location interface LocationListener onFlushComplete(int requestCode) onLocationChanged(android.location.Location location) - onLocationChanged(android.location.LocationResult locationResult) + onLocationChanged(java.util.List locations) onProviderDisabled(java.lang.String provider) onProviderEnabled(java.lang.String provider) onStatusChanged(java.lang.String provider, int status, android.os.Bundle extras) @@ -8730,6 +8918,7 @@ package android.location addNmeaListener(java.util.concurrent.Executor executor, android.location.OnNmeaMessageListener listener) addProximityAlert(double latitude, double longitude, float radius, long expiration, android.app.PendingIntent pendingIntent) addTestProvider(java.lang.String provider, android.location.provider.ProviderProperties properties) + addTestProvider(java.lang.String provider, android.location.provider.ProviderProperties properties, java.util.Set extraAttributionTags) addTestProvider(java.lang.String provider, boolean requiresNetwork, boolean requiresSatellite, boolean requiresCell, boolean hasMonetaryCost, boolean supportsAltitude, boolean supportsSpeed, boolean supportsBearing, int powerUsage, int accuracy) clearTestProviderEnabled(java.lang.String provider) clearTestProviderLocation(java.lang.String provider) @@ -8801,12 +8990,6 @@ package android.location setMinUpdateDistanceMeters(float minUpdateDistanceMeters) setMinUpdateIntervalMillis(long minUpdateIntervalMillis) setQuality(int quality) - class LocationResult - create(android.location.Location location) - create(java.util.List locations) - equals(java.lang.Object o) - get(int i) - writeToParcel(android.os.Parcel parcel, int flags) interface OnNmeaMessageListener onNmeaMessage(java.lang.String message, long timestamp) class SettingInjectorService @@ -8837,6 +9020,7 @@ package android.media ;--------------------------------------- class ApplicationMediaCapabilities createFromXml(org.xmlpull.v1.XmlPullParser xmlParser) + isFormatSpecified(java.lang.String format) isHdrTypeSupported(java.lang.String hdrType) isVideoMimeTypeSupported(java.lang.String videoMime) writeToParcel(android.os.Parcel dest, int flags) @@ -8845,15 +9029,12 @@ package android.media addSupportedVideoMimeType(java.lang.String codecMime) addUnsupportedHdrType(java.lang.String hdrType) addUnsupportedVideoMimeType(java.lang.String codecMime) - class ApplicationMediaCapabilities.FormatNotFoundException - #ctor(java.lang.String format) class AsyncPlayer #ctor(java.lang.String tag) play(android.content.Context context, android.net.Uri uri, boolean looping, android.media.AudioAttributes attributes) play(android.content.Context context, android.net.Uri uri, boolean looping, int stream) class AudioAttributes equals(java.lang.Object o) - usageToString(int usage) writeToParcel(android.os.Parcel dest, int flags) class AudioAttributes.Builder #ctor(android.media.AudioAttributes aa) @@ -8891,6 +9072,7 @@ package android.media abandonAudioFocus(android.media.AudioManager.OnAudioFocusChangeListener l) abandonAudioFocusRequest(android.media.AudioFocusRequest focusRequest) addOnCommunicationDeviceChangedListener(java.util.concurrent.Executor executor, android.media.AudioManager.OnCommunicationDeviceChangedListener listener) + addOnModeChangedListener(java.util.concurrent.Executor executor, android.media.AudioManager.OnModeChangedListener listener) adjustStreamVolume(int streamType, int direction, int flags) adjustSuggestedStreamVolume(int direction, int suggestedStreamType, int flags) adjustVolume(int direction, int flags) @@ -8908,6 +9090,7 @@ package android.media getVibrateSetting(int vibrateType) isOffloadedPlaybackSupported(android.media.AudioFormat format, android.media.AudioAttributes attributes) isStreamMute(int streamType) + isSurroundFormatEnabled(int audioFormat) playSoundEffect(int effectType) playSoundEffect(int effectType, float volume) registerAudioDeviceCallback(android.media.AudioDeviceCallback callback, android.os.Handler handler) @@ -8918,12 +9101,14 @@ package android.media registerRemoteControlClient(android.media.RemoteControlClient rcClient) registerRemoteController(android.media.RemoteController rctlr) removeOnCommunicationDeviceChangedListener(android.media.AudioManager.OnCommunicationDeviceChangedListener listener) + removeOnModeChangedListener(android.media.AudioManager.OnModeChangedListener listener) requestAudioFocus(android.media.AudioFocusRequest focusRequest) requestAudioFocus(android.media.AudioManager.OnAudioFocusChangeListener l, int streamType, int durationHint) setAllowedCapturePolicy(int capturePolicy) setBluetoothA2dpOn(boolean on) setBluetoothScoOn(boolean on) - setDeviceForCommunication(android.media.AudioDeviceInfo device) + setCommunicationDevice(android.media.AudioDeviceInfo device) + setEncodedSurroundMode(int mode) setMicrophoneMute(boolean on) setMode(int mode) setParameters(java.lang.String keyValuePairs) @@ -8933,6 +9118,7 @@ package android.media setStreamMute(int streamType, boolean state) setStreamSolo(int streamType, boolean state) setStreamVolume(int streamType, int index, int flags) + setSurroundFormatEnabled(int audioFormat, boolean enabled) setVibrateSetting(int vibrateType, int vibrateSetting) setWiredHeadsetOn(boolean on) shouldVibrate(int vibrateType) @@ -8951,6 +9137,8 @@ package android.media onAudioFocusChange(int focusChange) interface AudioManager.OnCommunicationDeviceChangedListener onCommunicationDeviceChanged(android.media.AudioDeviceInfo device) + interface AudioManager.OnModeChangedListener + onModeChanged(int mode) interface AudioMetadataMap remove(android.media.AudioMetadata.Key key) set(android.media.AudioMetadata.Key key, T value) @@ -8993,6 +9181,7 @@ package android.media registerAudioRecordingCallback(java.util.concurrent.Executor executor, android.media.AudioManager.AudioRecordingCallback cb) removeOnRoutingChangedListener(android.media.AudioRecord.OnRoutingChangedListener listener) removeOnRoutingChangedListener(android.media.AudioRouting.OnRoutingChangedListener listener) + setLogSessionId(android.media.metrics.LogSessionId logSessionId) setNotificationMarkerPosition(int markerInFrames) setPositionNotificationPeriod(int periodInFrames) setPreferredDevice(android.media.AudioDeviceInfo deviceInfo) @@ -9007,6 +9196,7 @@ package android.media setAudioPlaybackCaptureConfig(android.media.AudioPlaybackCaptureConfiguration config) setAudioSource(int source) setBufferSizeInBytes(int bufferSizeInBytes) + setContext(android.content.Context context) setPrivacySensitive(boolean privacySensitive) interface AudioRecord.OnRecordPositionUpdateListener onMarkerReached(android.media.AudioRecord recorder) @@ -9047,6 +9237,7 @@ package android.media setAuxEffectSendLevel(float level) setBufferSizeInFrames(int bufferSizeInFrames) setDualMonoMode(int dualMonoMode) + setLogSessionId(android.media.metrics.LogSessionId logSessionId) setLoopPoints(int startInFrames, int endInFrames, int loopCount) setNotificationMarkerPosition(int markerInFrames) setOffloadDelayPadding(int delayInFrames, int paddingInFrames) @@ -9058,6 +9249,7 @@ package android.media setPositionNotificationPeriod(int periodInFrames) setPreferredDevice(android.media.AudioDeviceInfo deviceInfo) setPresentation(android.media.AudioPresentation presentation) + setStartThresholdInFrames(int startThresholdInFrames) setState(int state) setStereoVolume(float leftGain, float rightGain) setVolume(float gain) @@ -9093,6 +9285,7 @@ package android.media class CamcorderProfile get(int quality) get(int cameraId, int quality) + getAll(java.lang.String cameraId, int quality) hasProfile(int quality) hasProfile(int cameraId, int quality) class CameraProfile @@ -9201,6 +9394,7 @@ package android.media getOutputFormat(int index) getOutputFrame(int index) getOutputImage(int index) + getParameterDescriptor(java.lang.String name) getQueueRequest(int index) mapHardwareBuffer(android.hardware.HardwareBuffer hardwareBuffer) queueInputBuffer(int index, int offset, int size, long presentationTimeUs, int flags) @@ -9211,10 +9405,13 @@ package android.media setCallback(android.media.MediaCodec.Callback cb) setCallback(android.media.MediaCodec.Callback cb, android.os.Handler handler) setInputSurface(android.view.Surface surface) + setOnFirstTunnelFrameReadyListener(android.os.Handler handler, android.media.MediaCodec.OnFirstTunnelFrameReadyListener listener) setOnFrameRenderedListener(android.media.MediaCodec.OnFrameRenderedListener listener, android.os.Handler handler) setOutputSurface(android.view.Surface surface) setParameters(android.os.Bundle params) setVideoScalingMode(int mode) + subscribeToVendorParameters(java.util.List names) + unsubscribeFromVendorParameters(java.util.List names) class MediaCodec.BufferInfo set(int newOffset, int newSize, long newTimeUs, int newFlags) class MediaCodec.Callback @@ -9233,8 +9430,12 @@ package android.media class MediaCodec.LinearBlock isCodecCopyFreeCompatible(java.lang.String[] codecNames) obtain(int capacity, java.lang.String[] codecNames) + interface MediaCodec.OnFirstTunnelFrameReadyListener + onFirstTunnelFrameReady(android.media.MediaCodec codec) interface MediaCodec.OnFrameRenderedListener onFrameRendered(android.media.MediaCodec codec, long presentationTimeUs, long nanoTime) + class MediaCodec.ParameterDescriptor + equals(java.lang.Object o) class MediaCodec.QueueRequest setByteBufferParameter(java.lang.String key, java.nio.ByteBuffer value) setEncryptedLinearBlock(android.media.MediaCodec.LinearBlock block, int offset, int size, android.media.MediaCodec.CryptoInfo cryptoInfo) @@ -9320,6 +9521,7 @@ package android.media getCryptoSession(byte[] sessionId, java.lang.String cipherAlgorithm, java.lang.String macAlgorithm) getKeyRequest(byte[] scope, byte[] init, java.lang.String mimeType, int keyType, java.util.HashMap optionalParameters) getOfflineLicenseState(byte[] keySetId) + getPlaybackComponent(byte[] sessionId) getPropertyByteArray(java.lang.String propertyName) getPropertyString(java.lang.String propertyName) getSecureStop(byte[] ssid) @@ -9363,6 +9565,8 @@ package android.media onKeyStatusChange(android.media.MediaDrm md, byte[] sessionId, java.util.List keyInformation, boolean hasNewUsableKey) interface MediaDrm.OnSessionLostStateListener onSessionLostState(android.media.MediaDrm md, byte[] sessionId) + class MediaDrm.PlaybackComponent + setLogSessionId(android.media.metrics.LogSessionId logSessionId) class MediaDrm.SessionException #ctor(int errorCode, java.lang.String detailMessage) class MediaDrmException @@ -9384,6 +9588,7 @@ package android.media setDataSource(java.io.FileDescriptor fd, long offset, long length) setDataSource(java.lang.String path) setDataSource(java.lang.String path, java.util.Map headers) + setLogSessionId(android.media.metrics.LogSessionId logSessionId) setMediaCas(android.media.MediaCas mediaCas) unselectTrack(int index) class MediaFormat @@ -9477,6 +9682,7 @@ package android.media createByName(java.lang.String name, android.media.MediaParser.OutputConsumer outputConsumer) getParserNames(android.media.MediaFormat mediaFormat) seek(android.media.MediaParser.SeekPoint seekPoint) + setLogSessionId(android.media.metrics.LogSessionId logSessionId) setParameter(java.lang.String parameterName, java.lang.Object value) supportsParameter(java.lang.String parameterName) interface MediaParser.InputReader @@ -9597,17 +9803,20 @@ package android.media writeToParcel(android.os.Parcel dest, int flags) class MediaRecorder addOnRoutingChangedListener(android.media.AudioRouting.OnRoutingChangedListener listener, android.os.Handler handler) + #ctor(android.content.Context context) registerAudioRecordingCallback(java.util.concurrent.Executor executor, android.media.AudioManager.AudioRecordingCallback cb) removeOnRoutingChangedListener(android.media.AudioRouting.OnRoutingChangedListener listener) setAudioChannels(int numChannels) setAudioEncoder(int audio_encoder) setAudioEncodingBitRate(int bitRate) + setAudioProfile(android.media.EncoderProfiles.AudioProfile profile) setAudioSamplingRate(int samplingRate) setAudioSource(int audioSource) setCamera(android.hardware.Camera c) setCaptureRate(double fps) setInputSurface(android.view.Surface surface) setLocation(float latitude, float longitude) + setLogSessionId(android.media.metrics.LogSessionId id) setMaxDuration(int max_duration_ms) setMaxFileSize(long max_filesize_bytes) setNextOutputFile(java.io.File file) @@ -9629,6 +9838,7 @@ package android.media setVideoEncodingBitRate(int bitRate) setVideoEncodingProfileLevel(int profile, int level) setVideoFrameRate(int rate) + setVideoProfile(android.media.EncoderProfiles.VideoProfile profile) setVideoSize(int width, int height) setVideoSource(int video_source) unregisterAudioRecordingCallback(android.media.AudioManager.AudioRecordingCallback cb) @@ -9738,6 +9948,7 @@ package android.media onVolumeSetRequest(android.media.MediaRouter.RouteInfo info, int volume) onVolumeUpdateRequest(android.media.MediaRouter.RouteInfo info, int direction) class MediaRouter2 + getController(java.lang.String id) getInstance(android.content.Context context) registerControllerCallback(java.util.concurrent.Executor executor, android.media.MediaRouter2.ControllerCallback callback) registerRouteCallback(java.util.concurrent.Executor executor, android.media.MediaRouter2.RouteCallback routeCallback, android.media.RouteDiscoveryPreference preference) @@ -9812,7 +10023,9 @@ package android.media onError(android.media.MediaSync sync, int what, int extra) class MediaSyncEvent createEvent(int eventType) + equals(java.lang.Object o) setAudioSessionId(int audioSessionId) + writeToParcel(android.os.Parcel dest, int flags) class MediaTimestamp equals(java.lang.Object obj) #ctor(long mediaTimeUs, long nanoTimeNs, float clockRate) @@ -9872,6 +10085,7 @@ package android.media class Ringtone getTitle(android.content.Context context) setAudioAttributes(android.media.AudioAttributes attributes) + setHapticGeneratorEnabled(boolean enabled) setLooping(boolean looping) setStreamType(int streamType) setVolume(float volume) @@ -10276,6 +10490,84 @@ package android.media.effect interface EffectUpdateListener onEffectUpdated(android.media.effect.Effect effect, java.lang.Object info) +package android.media.metrics +;--------------------------------------- + class LogSessionId + equals(java.lang.Object o) + class NetworkEvent + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class NetworkEvent.Builder + setMetricsBundle(android.os.Bundle metricsBundle) + setNetworkType(int value) + setTimeSinceCreatedMillis(long value) + class PlaybackErrorEvent + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class PlaybackErrorEvent.Builder + setErrorCode(int value) + setException(java.lang.Exception value) + setMetricsBundle(android.os.Bundle metricsBundle) + setSubErrorCode(int value) + setTimeSinceCreatedMillis(long value) + class PlaybackMetrics + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class PlaybackMetrics.Builder + addExperimentId(long value) + setAudioUnderrunCount(int value) + setContentType(int value) + setDrmSessionId(byte[] drmSessionId) + setDrmType(int value) + setLocalBytesRead(long value) + setMediaDurationMillis(long value) + setMetricsBundle(android.os.Bundle metricsBundle) + setNetworkBytesRead(long value) + setNetworkTransferDurationMillis(long value) + setPlaybackType(int value) + setPlayerName(java.lang.String value) + setPlayerVersion(java.lang.String value) + setStreamSource(int value) + setStreamType(int value) + setVideoFramesDropped(int value) + setVideoFramesPlayed(int value) + class PlaybackSession + equals(java.lang.Object o) + reportNetworkEvent(android.media.metrics.NetworkEvent event) + reportPlaybackErrorEvent(android.media.metrics.PlaybackErrorEvent event) + reportPlaybackMetrics(android.media.metrics.PlaybackMetrics metrics) + reportPlaybackStateEvent(android.media.metrics.PlaybackStateEvent event) + reportTrackChangeEvent(android.media.metrics.TrackChangeEvent event) + class PlaybackStateEvent + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class PlaybackStateEvent.Builder + setMetricsBundle(android.os.Bundle metricsBundle) + setState(int value) + setTimeSinceCreatedMillis(long value) + class RecordingSession + equals(java.lang.Object o) + class TrackChangeEvent + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class TrackChangeEvent.Builder + setAudioSampleRate(int value) + setBitrate(int value) + setChannelCount(int value) + setCodecName(java.lang.String value) + setContainerMimeType(java.lang.String value) + setHeight(int value) + setLanguage(java.lang.String value) + setLanguageRegion(java.lang.String value) + setMetricsBundle(android.os.Bundle metricsBundle) + setSampleMimeType(java.lang.String value) + setTimeSinceCreatedMillis(long value) + setTrackChangeReason(int value) + setTrackState(int value) + setVideoFrameRate(float value) + setWidth(int value) + #ctor(int type) + package android.media.midi ;--------------------------------------- class MidiDevice @@ -10371,6 +10663,7 @@ package android.media.session setCallback(android.media.session.MediaSession.Callback callback, android.os.Handler handler) setExtras(android.os.Bundle extras) setFlags(int flags) + setMediaButtonBroadcastReceiver(android.content.ComponentName broadcastReceiver) setMediaButtonReceiver(android.app.PendingIntent mbr) setMetadata(android.media.MediaMetadata metadata) setPlaybackState(android.media.session.PlaybackState state) @@ -10715,6 +11008,7 @@ package android.net getNetworkInfo(android.net.Network network) getNetworkInfo(int networkType) isNetworkTypeValid(int networkType) + registerBestMatchingNetworkCallback(android.net.NetworkRequest request, android.net.ConnectivityManager.NetworkCallback networkCallback, android.os.Handler handler) registerDefaultNetworkCallback(android.net.ConnectivityManager.NetworkCallback networkCallback) registerDefaultNetworkCallback(android.net.ConnectivityManager.NetworkCallback networkCallback, android.os.Handler handler) registerNetworkCallback(android.net.NetworkRequest request, android.app.PendingIntent operation) @@ -10735,6 +11029,7 @@ package android.net unregisterNetworkCallback(android.app.PendingIntent operation) unregisterNetworkCallback(android.net.ConnectivityManager.NetworkCallback networkCallback) class ConnectivityManager.NetworkCallback + #ctor(int flags) onAvailable(android.net.Network network) onBlockedStatusChanged(android.net.Network network, boolean blocked) onCapabilitiesChanged(android.net.Network network, android.net.NetworkCapabilities networkCapabilities) @@ -10864,10 +11159,15 @@ package android.net class NetworkRequest.Builder addCapability(int capability) addTransportType(int transportType) + #ctor(android.net.NetworkRequest request) removeCapability(int capability) removeTransportType(int transportType) + setIncludeOtherUidNetworks(boolean include) setNetworkSpecifier(android.net.NetworkSpecifier networkSpecifier) setNetworkSpecifier(java.lang.String networkSpecifier) + class ParseException + #ctor(java.lang.String response) + #ctor(java.lang.String response, java.lang.Throwable cause) class Proxy getHost(android.content.Context ctx) getPort(android.content.Context ctx) @@ -11021,6 +11321,30 @@ package android.net setSession(java.lang.String session) setUnderlyingNetworks(android.net.Network[] networks) +package android.net.eap +;--------------------------------------- + class EapSessionConfig + equals(java.lang.Object o) + class EapSessionConfig.Builder + setEapAkaConfig(int subId, int apptype) + setEapAkaPrimeConfig(int subId, int apptype, java.lang.String networkName, boolean allowMismatchedNetworkNames) + setEapIdentity(byte[] eapIdentity) + setEapMsChapV2Config(java.lang.String username, java.lang.String password) + setEapSimConfig(int subId, int apptype) + setEapTtlsConfig(java.security.cert.X509Certificate serverCaCert, android.net.eap.EapSessionConfig innerEapSessionConfig) + class EapSessionConfig.EapAkaConfig + equals(java.lang.Object o) + class EapSessionConfig.EapAkaPrimeConfig + equals(java.lang.Object o) + class EapSessionConfig.EapMethodConfig + equals(java.lang.Object o) + class EapSessionConfig.EapMsChapV2Config + equals(java.lang.Object o) + class EapSessionConfig.EapSimConfig + equals(java.lang.Object o) + class EapSessionConfig.EapTtlsConfig + equals(java.lang.Object o) + package android.net.http ;--------------------------------------- class HttpResponseCache @@ -11048,6 +11372,137 @@ package android.net.http isUserAddedCertificate(java.security.cert.X509Certificate cert) #ctor(javax.net.ssl.X509TrustManager tm) +package android.net.ipsec.ike +;--------------------------------------- + class ChildSaProposal + equals(java.lang.Object o) + class ChildSaProposal.Builder + addDhGroup(int dhGroup) + addEncryptionAlgorithm(int algorithm, int keyLength) + addIntegrityAlgorithm(int algorithm) + interface ChildSessionCallback + onClosedWithException(android.net.ipsec.ike.exceptions.IkeException exception) + onIpSecTransformCreated(android.net.IpSecTransform ipSecTransform, int direction) + onIpSecTransformDeleted(android.net.IpSecTransform ipSecTransform, int direction) + onOpened(android.net.ipsec.ike.ChildSessionConfiguration sessionConfiguration) + class ChildSessionConfiguration.Builder + #ctor(java.util.List inTs, java.util.List outTs) + class ChildSessionParams + equals(java.lang.Object o) + class IkeDerAsn1DnIdentification + equals(java.lang.Object o) + #ctor(javax.security.auth.x500.X500Principal derAsn1Dn) + class IkeFqdnIdentification + equals(java.lang.Object o) + #ctor(java.lang.String fqdn) + class IkeIpv4AddrIdentification + equals(java.lang.Object o) + #ctor(java.net.Inet4Address address) + class IkeIpv6AddrIdentification + equals(java.lang.Object o) + #ctor(java.net.Inet6Address address) + class IkeKeyIdIdentification + equals(java.lang.Object o) + #ctor(byte[] keyId) + class IkeRfc822AddrIdentification + equals(java.lang.Object o) + #ctor(java.lang.String rfc822Name) + class IkeSaProposal + equals(java.lang.Object o) + class IkeSaProposal.Builder + addDhGroup(int dhGroup) + addEncryptionAlgorithm(int algorithm, int keyLength) + addIntegrityAlgorithm(int algorithm) + addPseudorandomFunction(int algorithm) + class IkeSession + closeChildSession(android.net.ipsec.ike.ChildSessionCallback childSessionCallback) + #ctor(android.content.Context context, android.net.ipsec.ike.IkeSessionParams ikeSessionParams, android.net.ipsec.ike.ChildSessionParams firstChildSessionParams, java.util.concurrent.Executor userCbExecutor, android.net.ipsec.ike.IkeSessionCallback ikeSessionCallback, android.net.ipsec.ike.ChildSessionCallback firstChildSessionCallback) + openChildSession(android.net.ipsec.ike.ChildSessionParams childSessionParams, android.net.ipsec.ike.ChildSessionCallback childSessionCallback) + interface IkeSessionCallback + onClosedWithException(android.net.ipsec.ike.exceptions.IkeException exception) + onError(android.net.ipsec.ike.exceptions.IkeException exception) + onOpened(android.net.ipsec.ike.IkeSessionConfiguration sessionConfiguration) + class IkeSessionConfiguration + isIkeExtensionEnabled(int extensionType) + class IkeSessionConfiguration.Builder + addIkeExtension(int extensionType) + addRemoteVendorId(byte[] remoteVendorId) + #ctor(android.net.ipsec.ike.IkeSessionConnectionInfo ikeConnInfo) + setRemoteApplicationVersion(java.lang.String remoteApplicationVersion) + class IkeSessionConnectionInfo + #ctor(java.net.InetAddress localAddress, java.net.InetAddress remoteAddress, android.net.Network network) + class IkeSessionParams + equals(java.lang.Object o) + hasIkeOption(int ikeOption) + class IkeSessionParams.Builder + addIkeOption(int ikeOption) + addIkeSaProposal(android.net.ipsec.ike.IkeSaProposal proposal) + #ctor(android.net.ipsec.ike.IkeSessionParams ikeSessionParams) + removeIkeOption(int ikeOption) + setAuthDigitalSignature(java.security.cert.X509Certificate serverCaCert, java.security.cert.X509Certificate clientEndCert, java.security.PrivateKey clientPrivateKey) + setAuthDigitalSignature(java.security.cert.X509Certificate serverCaCert, java.security.cert.X509Certificate clientEndCert, java.util.List clientIntermediateCerts, java.security.PrivateKey clientPrivateKey) + setAuthEap(java.security.cert.X509Certificate serverCaCert, android.net.eap.EapSessionConfig eapConfig) + setAuthPsk(byte[] sharedKey) + setDpdDelaySeconds(int dpdDelaySeconds) + setLifetimeSeconds(int hardLifetimeSeconds, int softLifetimeSeconds) + setLocalIdentification(android.net.ipsec.ike.IkeIdentification identification) + setNattKeepAliveDelaySeconds(int nattKeepaliveDelaySeconds) + setNetwork(android.net.Network network) + setRemoteIdentification(android.net.ipsec.ike.IkeIdentification identification) + setRetransmissionTimeoutsMillis(int[] retransTimeoutMillisList) + setServerHostname(java.lang.String serverHostname) + class IkeSessionParams.IkeAuthConfig + equals(java.lang.Object o) + class IkeSessionParams.IkeAuthDigitalSignLocalConfig + equals(java.lang.Object o) + class IkeSessionParams.IkeAuthDigitalSignRemoteConfig + equals(java.lang.Object o) + class IkeSessionParams.IkeAuthEapConfig + equals(java.lang.Object o) + class IkeSessionParams.IkeAuthPskConfig + equals(java.lang.Object o) + class IkeTrafficSelector + equals(java.lang.Object o) + #ctor(int startPort, int endPort, java.net.InetAddress startingAddress, java.net.InetAddress endingAddress) + class IkeTunnelConnectionParams + equals(java.lang.Object o) + #ctor(android.net.ipsec.ike.IkeSessionParams ikeParams, android.net.ipsec.ike.TunnelModeChildSessionParams childParams) + class SaProposal + equals(java.lang.Object o) + class TransportModeChildSessionParams.Builder + addChildSaProposal(android.net.ipsec.ike.ChildSaProposal proposal) + addInboundTrafficSelectors(android.net.ipsec.ike.IkeTrafficSelector trafficSelector) + addOutboundTrafficSelectors(android.net.ipsec.ike.IkeTrafficSelector trafficSelector) + setLifetimeSeconds(int hardLifetimeSeconds, int softLifetimeSeconds) + #ctor(android.net.ipsec.ike.TransportModeChildSessionParams childParams) + class TunnelModeChildSessionParams + equals(java.lang.Object o) + class TunnelModeChildSessionParams.Builder + addChildSaProposal(android.net.ipsec.ike.ChildSaProposal proposal) + addInboundTrafficSelectors(android.net.ipsec.ike.IkeTrafficSelector trafficSelector) + addInternalAddressRequest(int addressFamily) + addInternalAddressRequest(java.net.Inet4Address address) + addInternalAddressRequest(java.net.Inet6Address address, int prefixLen) + addInternalDhcpServerRequest(int addressFamily) + addInternalDnsServerRequest(int addressFamily) + addOutboundTrafficSelectors(android.net.ipsec.ike.IkeTrafficSelector trafficSelector) + setLifetimeSeconds(int hardLifetimeSeconds, int softLifetimeSeconds) + #ctor(android.net.ipsec.ike.TunnelModeChildSessionParams childParams) + +package android.net.ipsec.ike.exceptions +;--------------------------------------- + class IkeInternalException + #ctor(java.lang.String message, java.lang.Throwable cause) + #ctor(java.lang.Throwable cause) + class IkeNetworkLostException + #ctor(android.net.Network network) + class InvalidKeException + #ctor(int dhGroup) + class InvalidMajorVersionException + #ctor(byte version) + class InvalidSelectorsException + #ctor(int spi, byte[] packetInfo) + package android.net.nsd ;--------------------------------------- class NsdManager @@ -11193,15 +11648,44 @@ package android.net.sip package android.net.ssl ;--------------------------------------- class SSLEngines + exportKeyingMaterial(javax.net.ssl.SSLEngine engine, java.lang.String label, byte[] context, int length) isSupportedEngine(javax.net.ssl.SSLEngine engine) setUseSessionTickets(javax.net.ssl.SSLEngine engine, boolean useSessionTickets) class SSLSockets + exportKeyingMaterial(javax.net.ssl.SSLSocket socket, java.lang.String label, byte[] context, int length) isSupportedSocket(javax.net.ssl.SSLSocket socket) setUseSessionTickets(javax.net.ssl.SSLSocket socket, boolean useSessionTickets) +package android.net.vcn +;--------------------------------------- + class VcnConfig + equals(java.lang.Object other) + writeToParcel(android.os.Parcel out, int flags) + class VcnConfig.Builder + addGatewayConnectionConfig(android.net.vcn.VcnGatewayConnectionConfig gatewayConnectionConfig) + #ctor(android.content.Context context) + class VcnGatewayConnectionConfig + equals(java.lang.Object other) + class VcnGatewayConnectionConfig.Builder + addExposedCapability(int exposedCapability) + removeExposedCapability(int exposedCapability) + setMaxMtu(int maxMtu) + setRetryIntervalsMillis(long[] retryIntervalsMs) + #ctor(java.lang.String gatewayConnectionName, android.net.ipsec.ike.IkeTunnelConnectionParams tunnelConnectionParams) + class VcnManager + clearVcnConfig(android.os.ParcelUuid subscriptionGroup) + registerVcnStatusCallback(android.os.ParcelUuid subscriptionGroup, java.util.concurrent.Executor executor, android.net.vcn.VcnManager.VcnStatusCallback callback) + setVcnConfig(android.os.ParcelUuid subscriptionGroup, android.net.vcn.VcnConfig config) + unregisterVcnStatusCallback(android.net.vcn.VcnManager.VcnStatusCallback callback) + class VcnManager.VcnStatusCallback + onGatewayConnectionError(java.lang.String gatewayConnectionName, int errorCode, java.lang.Throwable detail) + onStatusChanged(int statusCode) + package android.net.wifi ;--------------------------------------- class ScanResult + convertChannelToFrequencyMhzIfSupported(int channel, int band) + convertFrequencyMhzToChannelIfSupported(int freqMhz) #ctor(android.net.wifi.ScanResult source) writeToParcel(android.os.Parcel dest, int flags) class ScanResult.InformationElement @@ -11226,6 +11710,8 @@ package android.net.wifi setCaCertificates(java.security.cert.X509Certificate[] certs) setClientKeyEntry(java.security.PrivateKey privateKey, java.security.cert.X509Certificate clientCertificate) setClientKeyEntryWithCertificateChain(java.security.PrivateKey privateKey, java.security.cert.X509Certificate[] clientCertificateChain) + setClientKeyPairAlias(java.lang.String alias) + setDecoratedIdentityPrefix(java.lang.String decoratedIdentityPrefix) setDomainSuffixMatch(java.lang.String domain) setEapMethod(int eapMethod) setIdentity(java.lang.String identity) @@ -11239,15 +11725,17 @@ package android.net.wifi class WifiInfo equals(java.lang.Object that) getDetailedStateOf(android.net.wifi.SupplicantState suppState) - makeCopy(boolean parcelSensitiveFields) + makeCopy(long redactions) writeToParcel(android.os.Parcel dest, int flags) class WifiInfo.Builder setBssid(java.lang.String bssid) + setCurrentSecurityType(int securityType) setNetworkId(int networkId) setRssi(int rssi) setSsid(byte[] ssid) class WifiManager addNetwork(android.net.wifi.WifiConfiguration config) + addNetworkPrivileged(android.net.wifi.WifiConfiguration config) addNetworkSuggestions(java.util.List networkSuggestions) addOrUpdatePasspointConfiguration(android.net.wifi.hotspot2.PasspointConfiguration config) addSuggestionConnectionStatusListener(java.util.concurrent.Executor executor, android.net.wifi.WifiManager.SuggestionConnectionStatusListener listener) @@ -11261,6 +11749,7 @@ package android.net.wifi createWifiLock(java.lang.String tag) disableNetwork(int netId) enableNetwork(int netId, boolean attemptConnect) + isCarrierNetworkOffloadEnabled(int subscriptionId, boolean merged) isWifiStandardSupported(int standard) registerScanResultsCallback(java.util.concurrent.Executor executor, android.net.wifi.WifiManager.ScanResultsCallback callback) registerSubsystemRestartTrackingCallback(java.util.concurrent.Executor executor, android.net.wifi.WifiManager.SubsystemRestartTrackingCallback callback) @@ -11275,8 +11764,11 @@ package android.net.wifi startLocalOnlyHotspot(android.net.wifi.WifiManager.LocalOnlyHotspotCallback callback, android.os.Handler handler) startWps(android.net.wifi.WpsInfo config, android.net.wifi.WifiManager.WpsCallback listener) unregisterScanResultsCallback(android.net.wifi.WifiManager.ScanResultsCallback callback) - unregisterWifiSubsystemRestartTrackingCallback(android.net.wifi.WifiManager.SubsystemRestartTrackingCallback callback) + unregisterSubsystemRestartTrackingCallback(android.net.wifi.WifiManager.SubsystemRestartTrackingCallback callback) updateNetwork(android.net.wifi.WifiConfiguration config) + class WifiManager.AddNetworkResult + #ctor(int statusCode, int networkId) + writeToParcel(android.os.Parcel dest, int flags) class WifiManager.LocalOnlyHotspotCallback onFailed(int reason) onStarted(android.net.wifi.WifiManager.LocalOnlyHotspotReservation reservation) @@ -11284,6 +11776,8 @@ package android.net.wifi setReferenceCounted(boolean refCounted) interface WifiManager.SuggestionConnectionStatusListener onConnectionStatus(android.net.wifi.WifiNetworkSuggestion wifiNetworkSuggestion, int failureReason) + interface WifiManager.SuggestionUserApprovalStatusListener + onUserApprovalStatusChange(int status) class WifiManager.WifiLock setReferenceCounted(boolean refCounted) setWorkSource(android.os.WorkSource ws) @@ -11295,6 +11789,7 @@ package android.net.wifi equals(java.lang.Object obj) writeToParcel(android.os.Parcel dest, int flags) class WifiNetworkSpecifier.Builder + setBand(int band) setBssid(android.net.MacAddress bssid) setBssidPattern(android.net.MacAddress baseAddress, android.net.MacAddress mask) setIsEnhancedOpen(boolean isEnhancedOpen) @@ -11315,12 +11810,13 @@ package android.net.wifi setCarrierMerged(boolean isCarrierMerged) setCredentialSharedWithUser(boolean isShared) setIsAppInteractionRequired(boolean isAppInteractionRequired) - setIsEnhancedMacRandomizationEnabled(boolean enabled) setIsEnhancedOpen(boolean isEnhancedOpen) setIsHiddenSsid(boolean isHiddenSsid) setIsInitialAutojoinEnabled(boolean enabled) setIsMetered(boolean isMetered) setIsUserInteractionRequired(boolean isUserInteractionRequired) + setIsWpa3SaeH2eOnlyModeEnabled(boolean enable) + setMacRandomizationSetting(int macRandomizationSetting) setPasspointConfig(android.net.wifi.hotspot2.PasspointConfiguration passpointConfig) setPriority(int priority) setPriorityGroup(int priorityGroup) @@ -11344,6 +11840,7 @@ package android.net.wifi.aware class AttachCallback onAttached(android.net.wifi.aware.WifiAwareSession session) class AwareResources + #ctor(int availableDataPathsCount, int availablePublishSessionsCount, int availableSubscribeSessionsCount) writeToParcel(android.os.Parcel dest, int flags) class Characteristics writeToParcel(android.os.Parcel dest, int flags) @@ -11399,7 +11896,6 @@ package android.net.wifi.aware attach(android.net.wifi.aware.AttachCallback attachCallback, android.os.Handler handler) class WifiAwareNetworkInfo equals(java.lang.Object obj) - makeCopy(boolean parcelSensitiveFields) writeToParcel(android.os.Parcel dest, int flags) class WifiAwareNetworkSpecifier canBeSatisfiedBy(android.net.NetworkSpecifier other) @@ -11426,6 +11922,7 @@ package android.net.wifi.hotspot2 equals(java.lang.Object thatObject) #ctor(android.net.wifi.hotspot2.PasspointConfiguration source) setCredential(android.net.wifi.hotspot2.pps.Credential credential) + setDecoratedIdentityPrefix(java.lang.String decoratedIdentityPrefix) setHomeSp(android.net.wifi.hotspot2.pps.HomeSp homeSp) writeToParcel(android.os.Parcel dest, int flags) @@ -11558,9 +12055,12 @@ package android.net.wifi.p2p class WifiP2pWfdInfo setContentProtectionSupported(boolean enabled) setControlPort(int port) + setCoupledSinkSupportAtSink(boolean enabled) + setCoupledSinkSupportAtSource(boolean enabled) setDeviceType(int deviceType) setEnabled(boolean enabled) setMaxThroughput(int maxThroughput) + setR2DeviceType(int deviceType) setSessionAvailable(boolean enabled) #ctor(android.net.wifi.p2p.WifiP2pWfdInfo source) writeToParcel(android.os.Parcel dest, int flags) @@ -12900,14 +13400,9 @@ package android.os writeToParcel(android.os.Parcel parcel, int flags) class CancellationSignal setOnCancelListener(android.os.CancellationSignal.OnCancelListener listener) - class CombinedVibrationEffect - createSynced(android.os.VibrationEffect effect) - class CombinedVibrationEffect.SequentialCombination - addNext(android.os.CombinedVibrationEffect effect) - addNext(android.os.CombinedVibrationEffect effect, int delay) - addNext(int vibratorId, android.os.VibrationEffect effect) - addNext(int vibratorId, android.os.VibrationEffect effect, int delay) - class CombinedVibrationEffect.SyncedCombination + class CombinedVibration + createParallel(android.os.VibrationEffect effect) + class CombinedVibration.ParallelCombination addVibrator(int vibratorId, android.os.VibrationEffect effect) class ConditionVariable block(long timeoutMs) @@ -13203,6 +13698,11 @@ package android.os #ctor(android.os.Parcel src) #ctor(java.lang.String pattern, int type) writeToParcel(android.os.Parcel dest, int flags) + class PerformanceHintManager + createHintSession(int[] tids, long initialTargetWorkDurationNanos) + class PerformanceHintManager.Session + reportActualWorkDuration(long actualDurationNanos) + updateTargetWorkDuration(long targetDurationNanos) class PersistableBundle getPersistableBundle(java.lang.String key) #ctor(android.os.PersistableBundle b) @@ -13355,6 +13855,7 @@ package android.os areAllPrimitivesSupported(int... primitiveIds) areEffectsSupported(int... effectIds) arePrimitivesSupported(int... primitiveIds) + getPrimitiveDurations(int... primitiveIds) vibrate(android.os.VibrationEffect vibe) vibrate(android.os.VibrationEffect vibe, android.media.AudioAttributes attributes) vibrate(long milliseconds) @@ -13363,7 +13864,8 @@ package android.os vibrate(long[] pattern, int repeat, android.media.AudioAttributes attributes) class VibratorManager getVibrator(int vibratorId) - vibrate(android.os.CombinedVibrationEffect effect) + vibrate(android.os.CombinedVibration effect) + vibrate(android.os.CombinedVibration effect, android.os.VibrationAttributes attributes) class WorkSource add(android.os.WorkSource other) diff(android.os.WorkSource other) @@ -13413,6 +13915,7 @@ package android.os.storage getAllocatableBytes(java.util.UUID storageUuid) getCacheQuotaBytes(java.util.UUID storageUuid) getCacheSizeBytes(java.util.UUID storageUuid) + getManageSpaceActivityIntent(java.lang.String packageName, int requestCode) getMountedObbPath(java.lang.String rawPath) getStorageVolume(android.net.Uri uri) getStorageVolume(java.io.File file) @@ -13439,6 +13942,10 @@ package android.os.storage package android.os.strictmode ;--------------------------------------- + class IncorrectContextUseViolation + #ctor(java.lang.String message, java.lang.Throwable originStack) + class UnsafeIntentLaunchViolation + #ctor(android.content.Intent intent) class Violation initCause(java.lang.Throwable cause) setStackTrace(java.lang.StackTraceElement[] stackTrace) @@ -14062,6 +14569,7 @@ package android.provider onTypefaceRequestFailed(int reason) onTypefaceRetrieved(android.graphics.Typeface typeface) class MediaStore + canManageMedia(android.content.Context context) createDeleteRequest(android.content.ContentResolver resolver, java.util.Collection uris) createFavoriteRequest(android.content.ContentResolver resolver, java.util.Collection uris, boolean value) createTrashRequest(android.content.ContentResolver resolver, java.util.Collection uris, boolean value) @@ -14070,11 +14578,15 @@ package android.provider getExternalVolumeNames(android.content.Context context) getGeneration(android.content.Context context, java.lang.String volumeName) getMediaUri(android.content.Context context, android.net.Uri documentUri) + getOriginalMediaFormatFileDescriptor(android.content.Context context, android.os.ParcelFileDescriptor fileDescriptor) getRecentExternalVolumeNames(android.content.Context context) + getRedactedUri(android.content.ContentResolver resolver, android.net.Uri uri) + getRedactedUri(android.content.ContentResolver resolver, java.util.List uris) getRequireOriginal(android.net.Uri uri) getVersion(android.content.Context context) getVersion(android.content.Context context, java.lang.String volumeName) getVolumeName(android.net.Uri uri) + isCurrentSystemGallery(android.content.ContentResolver resolver, int uid, java.lang.String packageName) setIncludePending(android.net.Uri uri) setRequireOriginal(android.net.Uri uri) class MediaStore.Audio @@ -14193,6 +14705,12 @@ package android.provider putLong(android.content.ContentResolver cr, java.lang.String name, long value) putString(android.content.ContentResolver resolver, java.lang.String name, java.lang.String value) setShowGTalkServiceStatus(android.content.ContentResolver cr, boolean flag) + class SimPhonebookContract.ElementaryFiles + getItemUri(int subscriptionId, int efType) + class SimPhonebookContract.SimRecords + getContentUri(int subscriptionId, int efType) + getEncodedNameLength(android.content.ContentResolver resolver, java.lang.String name) + getItemUri(int subscriptionId, int efType, int recordNumber) class SyncStateContract.Helpers get(android.content.ContentProviderClient provider, android.net.Uri uri, android.accounts.Account account) getWithUri(android.content.ContentProviderClient provider, android.net.Uri uri, android.accounts.Account account) @@ -14863,6 +15381,7 @@ package android.se.omapi package android.security ;--------------------------------------- class AppUriAuthenticationPolicy + equals(java.lang.Object obj) writeToParcel(android.os.Parcel dest, int flags) class AppUriAuthenticationPolicy.Builder addAppAndUriMapping(java.lang.String appPackageName, android.net.Uri uri, java.lang.String alias) @@ -14889,9 +15408,12 @@ package android.security choosePrivateKeyAlias(android.app.Activity activity, android.security.KeyChainAliasCallback response, java.lang.String[] keyTypes, java.security.Principal[] issuers, java.lang.String host, int port, java.lang.String alias) createManageCredentialsIntent(android.security.AppUriAuthenticationPolicy policy) getCertificateChain(android.content.Context context, java.lang.String alias) + getCredentialManagementAppPolicy(android.content.Context context) getPrivateKey(android.content.Context context, java.lang.String alias) isBoundKeyAlgorithm(java.lang.String algorithm) + isCredentialManagementApp(android.content.Context context) isKeyAlgorithmSupported(java.lang.String algorithm) + removeCredentialManagementApp(android.content.Context context) interface KeyChainAliasCallback alias(java.lang.String alias) class KeyChainException @@ -14937,12 +15459,17 @@ package android.security.identity #ctor(java.lang.String message, java.lang.Throwable cause) class IdentityCredential decryptMessageFromReader(byte[] messageCiphertext) + delete(byte[] challenge) encryptMessageToReader(byte[] messagePlaintext) getEntries(byte[] requestMessage, java.util.Map> entriesToRequest, byte[] sessionTranscript, byte[] readerSignature) + proveOwnership(byte[] challenge) setAllowUsingExhaustedKeys(boolean allowUsingExhaustedKeys) + setAllowUsingExpiredKeys(boolean allowUsingExpiredKeys) setAvailableAuthenticationKeys(int keyCount, int maxUsesPerKey) setReaderEphemeralPublicKey(java.security.PublicKey readerEphemeralPublicKey) storeStaticAuthenticationData(java.security.cert.X509Certificate authenticationKey, byte[] staticAuthData) + storeStaticAuthenticationData(java.security.cert.X509Certificate authenticationKey, java.time.Instant expirationDate, byte[] staticAuthData) + update(android.security.identity.PersonalizationData personalizationData) class IdentityCredentialException #ctor(java.lang.String message) #ctor(java.lang.String message, java.lang.Throwable cause) @@ -14985,8 +15512,9 @@ package android.security.identity package android.security.keystore ;--------------------------------------- class BackendBusyException - #ctor(java.lang.String message) - #ctor(java.lang.String message, java.lang.Throwable cause) + #ctor(long backOffHintMillis) + #ctor(long backOffHintMillis, java.lang.String message) + #ctor(long backOffHintMillis, java.lang.String message, java.lang.Throwable cause) class KeyExpiredException #ctor(java.lang.String message) #ctor(java.lang.String message, java.lang.Throwable cause) @@ -14994,6 +15522,7 @@ package android.security.keystore #ctor(java.lang.String keystoreAlias, int purposes) setAlgorithmParameterSpec(java.security.spec.AlgorithmParameterSpec spec) setAttestationChallenge(byte[] attestationChallenge) + setAttestKeyAlias(java.lang.String attestKeyAlias) setBlockModes(java.lang.String... blockModes) setCertificateNotAfter(java.util.Date date) setCertificateNotBefore(java.util.Date date) @@ -15009,6 +15538,7 @@ package android.security.keystore setKeyValidityForConsumptionEnd(java.util.Date endDate) setKeyValidityForOriginationEnd(java.util.Date endDate) setKeyValidityStart(java.util.Date startDate) + setMaxUsageCount(int maxUsageCount) setRandomizedEncryptionRequired(boolean required) setSignaturePaddings(java.lang.String... paddings) setUnlockedDeviceRequired(boolean unlockedDeviceRequired) @@ -15035,6 +15565,7 @@ package android.security.keystore setKeyValidityForConsumptionEnd(java.util.Date endDate) setKeyValidityForOriginationEnd(java.util.Date endDate) setKeyValidityStart(java.util.Date startDate) + setMaxUsageCount(int maxUsageCount) setRandomizedEncryptionRequired(boolean required) setSignaturePaddings(java.lang.String... paddings) setUnlockedDeviceRequired(boolean unlockedDeviceRequired) @@ -15066,6 +15597,7 @@ package android.service.autofill class AutofillService onBind(android.content.Intent intent) onFillRequest(android.service.autofill.FillRequest request, android.os.CancellationSignal cancellationSignal, android.service.autofill.FillCallback callback) + onSavedDatasetsInfoRequest(android.service.autofill.SavedDatasetsInfoCallback callback) onSaveRequest(android.service.autofill.SaveRequest request, android.service.autofill.SaveCallback callback) class BatchUpdates writeToParcel(android.os.Parcel dest, int flags) @@ -15091,12 +15623,15 @@ package android.service.autofill setAuthentication(android.content.IntentSender authentication) setId(java.lang.String id) setInlinePresentation(android.service.autofill.InlinePresentation inlinePresentation) + setInlinePresentation(android.service.autofill.InlinePresentation inlinePresentation, android.service.autofill.InlinePresentation inlineTooltipPresentation) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, android.widget.RemoteViews presentation) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation) + setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation, android.service.autofill.InlinePresentation inlineTooltipPresentation) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, java.util.regex.Pattern filter) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, java.util.regex.Pattern filter, android.widget.RemoteViews presentation) setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, java.util.regex.Pattern filter, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation) + setValue(android.view.autofill.AutofillId id, android.view.autofill.AutofillValue value, java.util.regex.Pattern filter, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation, android.service.autofill.InlinePresentation inlineTooltipPresentation) class DateTransformation #ctor(android.view.autofill.AutofillId id, android.icu.text.DateFormat dateFormat) writeToParcel(android.os.Parcel parcel, int flags) @@ -15119,6 +15654,7 @@ package android.service.autofill disableAutofill(long duration) setAuthentication(android.view.autofill.AutofillId[] ids, android.content.IntentSender authentication, android.widget.RemoteViews presentation) setAuthentication(android.view.autofill.AutofillId[] ids, android.content.IntentSender authentication, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation) + setAuthentication(android.view.autofill.AutofillId[] ids, android.content.IntentSender authentication, android.widget.RemoteViews presentation, android.service.autofill.InlinePresentation inlinePresentation, android.service.autofill.InlinePresentation inlineTooltipPresentation) setClientState(android.os.Bundle clientState) setFieldClassificationIds(android.view.autofill.AutofillId... ids) setFlags(int flags) @@ -15136,6 +15672,7 @@ package android.service.autofill #ctor(android.view.autofill.AutofillId id, java.util.regex.Pattern regex, int resId) #ctor(android.view.autofill.AutofillId id, java.util.regex.Pattern regex, int resId, java.lang.CharSequence contentDescription) class InlinePresentation + createTooltipPresentation(android.app.slice.Slice slice, android.widget.inline.InlinePresentationSpec spec) equals(java.lang.Object o) #ctor(android.app.slice.Slice slice, android.widget.inline.InlinePresentationSpec inlinePresentationSpec, boolean pinned) writeToParcel(android.os.Parcel dest, int flags) @@ -15148,6 +15685,12 @@ package android.service.autofill class SaveCallback onFailure(java.lang.CharSequence message) onSuccess(android.content.IntentSender intentSender) + class SavedDatasetsInfo + equals(java.lang.Object o) + #ctor(java.lang.String type, int count) + interface SavedDatasetsInfoCallback + onError(int error) + onSuccess(java.util.Set results) class SaveInfo writeToParcel(android.os.Parcel parcel, int flags) class SaveInfo.Builder @@ -15391,6 +15934,7 @@ package android.service.notification getActiveNotifications(java.lang.String[] keys) getNotificationChannelGroups(java.lang.String pkg, android.os.UserHandle user) getNotificationChannels(java.lang.String pkg, android.os.UserHandle user) + migrateNotificationFilter(int defaultTypes, java.util.List disallowedPkgs) onBind(android.content.Intent intent) onInterruptionFilterChanged(int interruptionFilter) onListenerHintsChanged(int hints) @@ -15614,6 +16158,7 @@ package android.speech onResults(android.os.Bundle results) onRmsChanged(float rmsdB) class RecognitionService + createContext(android.content.ContextParams contextParams) onBind(android.content.Intent intent) onCancel(android.speech.RecognitionService.Callback listener) onStartListening(android.content.Intent recognizerIntent, android.speech.RecognitionService.Callback listener) @@ -15628,8 +16173,10 @@ package android.speech class RecognizerIntent getVoiceDetailsIntent(android.content.Context context) class SpeechRecognizer + createOnDeviceSpeechRecognizer(android.content.Context context) createSpeechRecognizer(android.content.Context context) createSpeechRecognizer(android.content.Context context, android.content.ComponentName serviceComponent) + isOnDeviceRecognitionAvailable(android.content.Context context) isRecognitionAvailable(android.content.Context context) setRecognitionListener(android.speech.RecognitionListener listener) startListening(android.content.Intent recognizerIntent) @@ -15771,10 +16318,12 @@ package android.system readv(java.io.FileDescriptor fd, java.lang.Object[] buffers, int[] offsets, int[] byteCounts) recvfrom(java.io.FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, java.net.InetSocketAddress srcAddress) recvfrom(java.io.FileDescriptor fd, java.nio.ByteBuffer buffer, int flags, java.net.InetSocketAddress srcAddress) + recvmsg(java.io.FileDescriptor fd, android.system.StructMsghdr msg, int flags) remove(java.lang.String path) removexattr(java.lang.String path, java.lang.String name) rename(java.lang.String oldPath, java.lang.String newPath) sendfile(java.io.FileDescriptor outFd, java.io.FileDescriptor inFd, android.system.Int64Ref offset, long byteCount) + sendmsg(java.io.FileDescriptor fd, android.system.StructMsghdr msg, int flags) sendto(java.io.FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, java.net.InetAddress inetAddress, int port) sendto(java.io.FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, java.net.SocketAddress address) sendto(java.io.FileDescriptor fd, java.nio.ByteBuffer buffer, int flags, java.net.InetAddress inetAddress, int port) @@ -15819,6 +16368,11 @@ package android.system WIFSTOPPED(int status) WSTOPSIG(int status) WTERMSIG(int status) + class StructCmsghdr + #ctor(int cmsg_level, int cmsg_type, byte[] value) + #ctor(int cmsg_level, int cmsg_type, short value) + class StructMsghdr + #ctor(java.net.SocketAddress msg_name, java.nio.ByteBuffer[] msg_iov, android.system.StructCmsghdr[] msg_control, int msg_flags) class StructStat #ctor(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid, long st_rdev, long st_size, android.system.StructTimespec st_atim, android.system.StructTimespec st_mtim, android.system.StructTimespec st_ctim, long st_blksize, long st_blocks) #ctor(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid, long st_rdev, long st_size, long st_atime, long st_mtime, long st_ctime, long st_blksize, long st_blocks) @@ -15898,7 +16452,10 @@ package android.telecom onScreenCall(android.telecom.Call.Details callDetails) onUnbind(android.content.Intent intent) respondToCall(android.telecom.Call.Details callDetails, android.telecom.CallScreeningService.CallResponse response) + class CallScreeningService.CallResponse + equals(java.lang.Object o) class CallScreeningService.CallResponse.Builder + setCallComposerAttachmentsToShow(int callComposerAttachmentsToShow) setDisallowCall(boolean shouldDisallowCall) setRejectCall(boolean shouldRejectCall) setSilenceCall(boolean shouldSilenceCall) @@ -16317,9 +16874,6 @@ package android.telephony equals(java.lang.Object o) #ctor(int scanType, android.telephony.RadioAccessSpecifier[] specifiers, int searchPeriodicity, int maxSearchTime, boolean incrementalResults, int incrementalResultsPeriodicity, java.util.ArrayList mccMncs) writeToParcel(android.os.Parcel dest, int flags) - class PhoneCapability - equals(java.lang.Object o) - writeToParcel(android.os.Parcel dest, int flags) class PhoneNumberFormattingTextWatcher afterTextChanged(android.text.Editable s) beforeTextChanged(java.lang.CharSequence s, int start, int count, int after) @@ -16393,50 +16947,6 @@ package android.telephony onSignalStrengthsChanged(android.telephony.SignalStrength signalStrength) onUserMobileDataStateChanged(boolean enabled) #ctor(java.util.concurrent.Executor executor) - interface PhoneStateListener.ActiveDataSubscriptionIdChangedListener - onActiveDataSubscriptionIdChanged(int subId) - interface PhoneStateListener.AlwaysReportedSignalStrengthChangedListener - onSignalStrengthsChanged(android.telephony.SignalStrength signalStrength) - interface PhoneStateListener.BarringInfoChangedListener - onBarringInfoChanged(android.telephony.BarringInfo barringInfo) - interface PhoneStateListener.CallDisconnectCauseChangedListener - onCallDisconnectCauseChanged(int disconnectCause, int preciseDisconnectCause) - interface PhoneStateListener.CallForwardingIndicatorChangedListener - onCallForwardingIndicatorChanged(boolean cfi) - interface PhoneStateListener.CallStateChangedListener - onCallStateChanged(int state, java.lang.String phoneNumber) - interface PhoneStateListener.CarrierNetworkChangeListener - onCarrierNetworkChange(boolean active) - interface PhoneStateListener.CellInfoChangedListener - onCellInfoChanged(java.util.List cellInfo) - interface PhoneStateListener.CellLocationChangedListener - onCellLocationChanged(android.telephony.CellLocation location) - interface PhoneStateListener.DataActivationStateChangedListener - onDataActivationStateChanged(int state) - interface PhoneStateListener.DataActivityListener - onDataActivity(int direction) - interface PhoneStateListener.DataConnectionStateChangedListener - onDataConnectionStateChanged(int state, int networkType) - interface PhoneStateListener.DisplayInfoChangedListener - onDisplayInfoChanged(android.telephony.TelephonyDisplayInfo telephonyDisplayInfo) - interface PhoneStateListener.EmergencyNumberListChangedListener - onEmergencyNumberListChanged(java.util.Map> emergencyNumberList) - interface PhoneStateListener.ImsCallDisconnectCauseChangedListener - onImsCallDisconnectCauseChanged(android.telephony.ims.ImsReasonInfo imsReasonInfo) - interface PhoneStateListener.MessageWaitingIndicatorChangedListener - onMessageWaitingIndicatorChanged(boolean mwi) - interface PhoneStateListener.PhoneCapabilityChangedListener - onPhoneCapabilityChanged(android.telephony.PhoneCapability capability) - interface PhoneStateListener.PreciseDataConnectionStateChangedListener - onPreciseDataConnectionStateChanged(android.telephony.PreciseDataConnectionState dataConnectionState) - interface PhoneStateListener.RegistrationFailedListener - onRegistrationFailed(android.telephony.CellIdentity cellIdentity, java.lang.String chosenPlmn, int domain, int causeCode, int additionalCauseCode) - interface PhoneStateListener.ServiceStateChangedListener - onServiceStateChanged(android.telephony.ServiceState serviceState) - interface PhoneStateListener.SignalStrengthsChangedListener - onSignalStrengthsChanged(android.telephony.SignalStrength signalStrength) - interface PhoneStateListener.UserMobileDataStateChangedListener - onUserMobileDataStateChanged(boolean enabled) class PhysicalChannelConfig equals(java.lang.Object o) writeToParcel(android.os.Parcel dest, int flags) @@ -16481,11 +16991,13 @@ package android.telephony createForSubscriptionId(int subId) divideMessage(java.lang.String text) downloadMultimediaMessage(android.content.Context context, java.lang.String locationUrl, android.net.Uri contentUri, android.os.Bundle configOverrides, android.app.PendingIntent downloadedIntent) + downloadMultimediaMessage(android.content.Context context, java.lang.String locationUrl, android.net.Uri contentUri, android.os.Bundle configOverrides, android.app.PendingIntent downloadedIntent, long messageId) getSmsManagerForSubscriptionId(int subId) getSmsMessagesForFinancialApp(android.os.Bundle params, java.util.concurrent.Executor executor, android.telephony.SmsManager.FinancialSmsCallback callback) injectSmsPdu(byte[] pdu, java.lang.String format, android.app.PendingIntent receivedIntent) sendDataMessage(java.lang.String destinationAddress, java.lang.String scAddress, short destinationPort, byte[] data, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) sendMultimediaMessage(android.content.Context context, android.net.Uri contentUri, java.lang.String locationUrl, android.os.Bundle configOverrides, android.app.PendingIntent sentIntent) + sendMultimediaMessage(android.content.Context context, android.net.Uri contentUri, java.lang.String locationUrl, android.os.Bundle configOverrides, android.app.PendingIntent sentIntent, long messageId) sendMultipartTextMessage(java.lang.String destinationAddress, java.lang.String scAddress, java.util.ArrayList parts, java.util.ArrayList sentIntents, java.util.ArrayList deliveryIntents) sendMultipartTextMessage(java.lang.String destinationAddress, java.lang.String scAddress, java.util.List parts, java.util.List sentIntents, java.util.List deliveryIntents, java.lang.String packageName, java.lang.String attributionTag) sendMultipartTextMessage(java.lang.String destinationAddress, java.lang.String scAddress, java.util.List parts, java.util.List sentIntents, java.util.List deliveryIntents, long messageId) @@ -16500,7 +17012,6 @@ package android.telephony calculateLength(java.lang.String messageBody, boolean use7bitOnly) createFromPdu(byte[] pdu) createFromPdu(byte[] pdu, java.lang.String format) - createSmsSubmitPdu(byte[] data, boolean isCdma) getSubmitPdu(java.lang.String scAddress, java.lang.String destinationAddress, java.lang.String message, boolean statusReportRequested) getSubmitPdu(java.lang.String scAddress, java.lang.String destinationAddress, short destinationPort, byte[] data, boolean statusReportRequested) getTPLayerLengthForPDU(java.lang.String pdu) @@ -16518,6 +17029,8 @@ package android.telephony from(android.content.Context context) getActiveSubscriptionInfo(int subId) getActiveSubscriptionInfoForSimSlotIndex(int slotIndex) + getDeviceToDeviceStatusSharingContacts(int subscriptionId) + getDeviceToDeviceStatusSharingPreference(int subscriptionId) getSlotIndex(int subscriptionId) getSubscriptionIds(int slotIndex) getSubscriptionPlans(int subId) @@ -16529,6 +17042,8 @@ package android.telephony removeOnOpportunisticSubscriptionsChangedListener(android.telephony.SubscriptionManager.OnOpportunisticSubscriptionsChangedListener listener) removeOnSubscriptionsChangedListener(android.telephony.SubscriptionManager.OnSubscriptionsChangedListener listener) removeSubscriptionsFromGroup(java.util.List subIdList, android.os.ParcelUuid groupUuid) + setDeviceToDeviceStatusSharingContacts(int subscriptionId, java.util.List contacts) + setDeviceToDeviceStatusSharingPreference(int subscriptionId, int sharing) setOpportunistic(boolean opportunistic, int subId) setSubscriptionOverrideCongested(int subId, boolean overrideCongested, int[] networkTypes, long timeoutMillis) setSubscriptionOverrideCongested(int subId, boolean overrideCongested, long timeoutMillis) @@ -16547,6 +17062,48 @@ package android.telephony setNetworkTypes(int[] networkTypes) setSummary(java.lang.CharSequence summary) setTitle(java.lang.CharSequence title) + interface TelephonyCallback.ActiveDataSubscriptionIdListener + onActiveDataSubscriptionIdChanged(int subId) + interface TelephonyCallback.BarringInfoListener + onBarringInfoChanged(android.telephony.BarringInfo barringInfo) + interface TelephonyCallback.CallDisconnectCauseListener + onCallDisconnectCauseChanged(int disconnectCause, int preciseDisconnectCause) + interface TelephonyCallback.CallForwardingIndicatorListener + onCallForwardingIndicatorChanged(boolean cfi) + interface TelephonyCallback.CallStateListener + onCallStateChanged(int state) + interface TelephonyCallback.CarrierNetworkListener + onCarrierNetworkChange(boolean active) + interface TelephonyCallback.CellInfoListener + onCellInfoChanged(java.util.List cellInfo) + interface TelephonyCallback.CellLocationListener + onCellLocationChanged(android.telephony.CellLocation location) + interface TelephonyCallback.DataActivationStateListener + onDataActivationStateChanged(int state) + interface TelephonyCallback.DataActivityListener + onDataActivity(int direction) + interface TelephonyCallback.DataConnectionStateListener + onDataConnectionStateChanged(int state, int networkType) + interface TelephonyCallback.DisplayInfoListener + onDisplayInfoChanged(android.telephony.TelephonyDisplayInfo telephonyDisplayInfo) + interface TelephonyCallback.EmergencyNumberListListener + onEmergencyNumberListChanged(java.util.Map> emergencyNumberList) + interface TelephonyCallback.ImsCallDisconnectCauseListener + onImsCallDisconnectCauseChanged(android.telephony.ims.ImsReasonInfo imsReasonInfo) + interface TelephonyCallback.MessageWaitingIndicatorListener + onMessageWaitingIndicatorChanged(boolean mwi) + interface TelephonyCallback.PhysicalChannelConfigListener + onPhysicalChannelConfigChanged(java.util.List configs) + interface TelephonyCallback.PreciseDataConnectionStateListener + onPreciseDataConnectionStateChanged(android.telephony.PreciseDataConnectionState dataConnectionState) + interface TelephonyCallback.RegistrationFailedListener + onRegistrationFailed(android.telephony.CellIdentity cellIdentity, java.lang.String chosenPlmn, int domain, int causeCode, int additionalCauseCode) + interface TelephonyCallback.ServiceStateListener + onServiceStateChanged(android.telephony.ServiceState serviceState) + interface TelephonyCallback.SignalStrengthsListener + onSignalStrengthsChanged(android.telephony.SignalStrength signalStrength) + interface TelephonyCallback.UserMobileDataStateListener + onUserMobileDataStateChanged(boolean enabled) class TelephonyDisplayInfo equals(java.lang.Object o) writeToParcel(android.os.Parcel dest, int flags) @@ -16561,6 +17118,7 @@ package android.telephony getManufacturerCode(int slotIndex) getMeid(int slotIndex) getNetworkCountryIso(int slotIndex) + getNetworkSlicingConfiguration(java.util.concurrent.Executor executor, android.os.OutcomeReceiver callback) getSimState(int slotIndex) getSubscriptionId(android.telecom.PhoneAccountHandle phoneAccountHandle) getTypeAllocationCode(int slotIndex) @@ -16574,9 +17132,10 @@ package android.telephony isDataEnabledForReason(int reason) isEmergencyNumber(java.lang.String number) isModemEnabledForSlot(int slotIndex) + isRadioInterfaceCapabilitySupported(java.lang.String capability) isVoicemailVibrationEnabled(android.telecom.PhoneAccountHandle accountHandle) listen(android.telephony.PhoneStateListener listener, int events) - registerPhoneStateListener(java.util.concurrent.Executor executor, android.telephony.PhoneStateListener listener) + registerTelephonyCallback(java.util.concurrent.Executor executor, android.telephony.TelephonyCallback callback) requestCellInfoUpdate(java.util.concurrent.Executor executor, android.telephony.TelephonyManager.CellInfoCallback callback) requestNetworkScan(android.telephony.NetworkScanRequest request, java.util.concurrent.Executor executor, android.telephony.TelephonyScanManager.NetworkScanCallback callback) sendDialerSpecialCode(java.lang.String inputCode) @@ -16598,7 +17157,7 @@ package android.telephony setVoicemailRingtoneUri(android.telecom.PhoneAccountHandle phoneAccountHandle, android.net.Uri uri) setVoicemailVibrationEnabled(android.telecom.PhoneAccountHandle phoneAccountHandle, boolean enabled) switchMultiSimConfig(int numOfSims) - unregisterPhoneStateListener(android.telephony.PhoneStateListener listener) + unregisterTelephonyCallback(android.telephony.TelephonyCallback callback) updateAvailableNetworks(java.util.List availableNetworks, java.util.concurrent.Executor executor, java.util.function.Consumer callback) uploadCallComposerPicture(java.io.InputStream pictureToUpload, java.lang.String contentType, java.util.concurrent.Executor executor, android.os.OutcomeReceiver callback) uploadCallComposerPicture(java.nio.file.Path pictureToUpload, java.lang.String contentType, java.util.concurrent.Executor executor, android.os.OutcomeReceiver callback) @@ -16669,6 +17228,30 @@ package android.telephony.data setProxyPort(int port) setRoamingProtocol(int roamingProtocol) setUser(java.lang.String user) + class NetworkSliceInfo + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class NetworkSliceInfo.Builder + setMappedHplmnSliceDifferentiator(int mappedHplmnSliceDifferentiator) + setMappedHplmnSliceServiceType(int mappedHplmnSliceServiceType) + setSliceDifferentiator(int sliceDifferentiator) + setSliceServiceType(int mSliceServiceType) + setStatus(int status) + class NetworkSlicingConfig + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class RouteSelectionDescriptor + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class TrafficDescriptor + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class TrafficDescriptor.Builder + setDataNetworkName(java.lang.String dnn) + setOsAppId(byte[] osAppId) + class UrspRule + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) package android.telephony.emergency ;--------------------------------------- @@ -16734,19 +17317,27 @@ package android.telephony.ims unregisterMmTelCapabilityCallback(android.telephony.ims.ImsMmTelManager.CapabilityCallback c) class ImsMmTelManager.CapabilityCallback onCapabilitiesStatusChanged(android.telephony.ims.feature.MmTelFeature.MmTelCapabilities capabilities) + class ImsRcsManager + getRegistrationState(java.util.concurrent.Executor executor, java.util.function.Consumer stateCallback) + getRegistrationTransportType(java.util.concurrent.Executor executor, java.util.function.Consumer transportTypeCallback) + registerImsRegistrationCallback(java.util.concurrent.Executor executor, android.telephony.ims.RegistrationManager.RegistrationCallback c) + unregisterImsRegistrationCallback(android.telephony.ims.RegistrationManager.RegistrationCallback c) class ImsReasonInfo #ctor(int code, int extraCode, java.lang.String extraMessage) writeToParcel(android.os.Parcel out, int flags) + class ImsRegistrationAttributes + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) interface RegistrationManager getRegistrationState(java.util.concurrent.Executor executor, java.util.function.Consumer stateCallback) getRegistrationTransportType(java.util.concurrent.Executor executor, java.util.function.Consumer transportTypeCallback) registerImsRegistrationCallback(java.util.concurrent.Executor executor, android.telephony.ims.RegistrationManager.RegistrationCallback c) unregisterImsRegistrationCallback(android.telephony.ims.RegistrationManager.RegistrationCallback c) class RegistrationManager.RegistrationCallback + onRegistered(android.telephony.ims.ImsRegistrationAttributes attributes) onRegistered(int imsTransportType) - onRegistered(int imsTransportType, int registrationAttributes) + onRegistering(android.telephony.ims.ImsRegistrationAttributes attributes) onRegistering(int imsTransportType) - onRegistering(int imsTransportType, int registrationAttributes) onTechnologyChangeFailed(int imsTransportType, android.telephony.ims.ImsReasonInfo info) onUnregistered(android.telephony.ims.ImsReasonInfo info) @@ -18217,9 +18808,11 @@ package android.util equals(java.lang.Object obj) parseSizeF(java.lang.String string) #ctor(float width, float height) + writeToParcel(android.os.Parcel out, int flags) class SparseArray append(int key, E value) contains(int key) + contentEquals(android.util.SparseArray other) delete(int key) get(int key) get(int key, E valueIfKeyNotFound) @@ -18370,12 +18963,17 @@ package android.view setVisibilityListener(android.view.ActionProvider.VisibilityListener listener) interface ActionProvider.VisibilityListener onActionProviderVisibilityChanged(boolean isVisible) + interface AttachedSurfaceControl + applyTransactionOnDraw(android.view.SurfaceControl.Transaction t) + buildReparentTransaction(android.view.SurfaceControl child) class Choreographer postFrameCallback(android.view.Choreographer.FrameCallback callback) postFrameCallbackDelayed(android.view.Choreographer.FrameCallback callback, long delayMillis) removeFrameCallback(android.view.Choreographer.FrameCallback callback) interface Choreographer.FrameCallback doFrame(long frameTimeNanos) + class ContentInfo + writeToParcel(android.os.Parcel dest, int flags) class ContentInfo.Builder #ctor(android.content.ClipData clip, int source) #ctor(android.view.ContentInfo other) @@ -18405,6 +19003,7 @@ package android.view getRealMetrics(android.util.DisplayMetrics outMetrics) getRealSize(android.graphics.Point outSize) getRectSize(android.graphics.Rect outSize) + getRoundedCorner(int position) getSize(android.graphics.Point outSize) class Display.HdrCapabilities equals(java.lang.Object other) @@ -18506,6 +19105,7 @@ package android.view class KeyCharacterMap deviceHasKey(int keyCode) deviceHasKeys(int[] keyCodes) + equals(java.lang.Object obj) get(int keyCode, int metaState) getDeadChar(int accent, int c) getDisplayLabel(int keyCode) @@ -18741,6 +19341,10 @@ package android.view getSystemIcon(android.content.Context context, int type) load(android.content.res.Resources resources, int resourceId) writeToParcel(android.os.Parcel out, int flags) + class RoundedCorner + equals(java.lang.Object o) + #ctor(int position, int radius, int centerX, int centerY) + writeToParcel(android.os.Parcel out, int flags) class ScaleGestureDetector onTouchEvent(android.view.MotionEvent event) #ctor(android.content.Context context, android.view.ScaleGestureDetector.OnScaleGestureListener listener) @@ -18755,9 +19359,20 @@ package android.view onScale(android.view.ScaleGestureDetector detector) onScaleBegin(android.view.ScaleGestureDetector detector) onScaleEnd(android.view.ScaleGestureDetector detector) + interface ScrollCaptureCallback + onScrollCaptureEnd(java.lang.Runnable onReady) + onScrollCaptureImageRequest(android.view.ScrollCaptureSession session, android.os.CancellationSignal signal, android.graphics.Rect captureArea, java.util.function.Consumer onComplete) + onScrollCaptureSearch(android.os.CancellationSignal signal, java.util.function.Consumer onReady) + onScrollCaptureStart(android.view.ScrollCaptureSession session, android.os.CancellationSignal signal, java.lang.Runnable onReady) + class ScrollCaptureSession + #ctor(android.view.Surface surface, android.graphics.Rect scrollBounds, android.graphics.Point positionInWindow) + class ScrollCaptureTarget + #ctor(android.view.View scrollTarget, android.graphics.Rect localVisibleRect, android.graphics.Point positionInWindow, android.view.ScrollCaptureCallback callback) + setScrollBounds(android.graphics.Rect scrollBounds) class SearchEvent #ctor(android.view.InputDevice inputDevice) class SoundEffectConstants + getConstantForFocusDirection(int direction, boolean repeating) getContantForFocusDirection(int direction) interface SubMenu setHeaderIcon(android.graphics.drawable.Drawable icon) @@ -18771,7 +19386,7 @@ package android.view lockCanvas(android.graphics.Rect inOutDirty) readFromParcel(android.os.Parcel source) setFrameRate(float frameRate, int compatibility) - setFrameRate(float frameRate, int compatibility, boolean shouldBeSeamless) + setFrameRate(float frameRate, int compatibility, int changeFrameRateStrategy) #ctor(android.graphics.SurfaceTexture surfaceTexture) #ctor(android.view.SurfaceControl from) unlockCanvas(android.graphics.Canvas canvas) @@ -18794,7 +19409,7 @@ package android.view setAlpha(android.view.SurfaceControl sc, float alpha) setBufferSize(android.view.SurfaceControl sc, int w, int h) setFrameRate(android.view.SurfaceControl sc, float frameRate, int compatibility) - setFrameRate(android.view.SurfaceControl sc, float frameRate, int compatibility, boolean shouldBeSeamless) + setFrameRate(android.view.SurfaceControl sc, float frameRate, int compatibility, int changeFrameRateStrategy) setGeometry(android.view.SurfaceControl sc, android.graphics.Rect sourceCrop, android.graphics.Rect destFrame, int orientation) setLayer(android.view.SurfaceControl sc, int z) setVisibility(android.view.SurfaceControl sc, boolean visible) @@ -18804,6 +19419,7 @@ package android.view setView(android.view.View view, int width, int height) #ctor(android.content.Context context, android.view.Display display, android.os.IBinder hostToken) class SurfaceControlViewHost.SurfacePackage + #ctor(android.view.SurfaceControlViewHost.SurfacePackage other) writeToParcel(android.os.Parcel out, int flags) interface SurfaceHolder addCallback(android.view.SurfaceHolder.Callback callback) @@ -18913,6 +19529,7 @@ package android.view dispatchApplyWindowInsets(android.view.WindowInsets insets) dispatchCapturedPointerEvent(android.view.MotionEvent event) dispatchConfigurationChanged(android.content.res.Configuration newConfig) + dispatchCreateViewTranslationRequest(java.util.Map viewIds, int[] supportedFormats, android.view.translation.TranslationCapability capability, java.util.List requests) dispatchDisplayHint(int hint) dispatchDragEvent(android.view.DragEvent event) dispatchDraw(android.graphics.Canvas canvas) @@ -18935,6 +19552,7 @@ package android.view dispatchProvideStructure(android.view.ViewStructure structure) dispatchRestoreInstanceState(android.util.SparseArray container) dispatchSaveInstanceState(android.util.SparseArray container) + dispatchScrollCaptureSearch(android.graphics.Rect localVisibleRect, android.graphics.Point windowOffset, java.util.function.Consumer targets) dispatchSetActivated(boolean activated) dispatchSetPressed(boolean pressed) dispatchSetSelected(boolean selected) @@ -18958,6 +19576,8 @@ package android.view fitSystemWindows(android.graphics.Rect insets) focusSearch(int direction) forceHasOverlappingRendering(boolean hasOverlappingRendering) + gatherTransparentRegion(android.graphics.Region region) + generateDisplayHash(java.lang.String hashAlgorithm, android.graphics.Rect bounds, java.util.concurrent.Executor executor, android.view.displayhash.DisplayHashResultCallback callback) getAttributeResolutionStack(int attribute) getClipBounds(android.graphics.Rect outRect) getDefaultSize(int size, int measureSpec) @@ -18991,6 +19611,8 @@ package android.view onCreateContextMenu(android.view.ContextMenu menu) onCreateDrawableState(int extraSpace) onCreateInputConnection(android.view.inputmethod.EditorInfo outAttrs) + onCreateViewTranslationRequest(int[] supportedFormats, java.util.function.Consumer requestsCollector) + onCreateVirtualViewTranslationRequests(long[] virtualIds, int[] supportedFormats, java.util.function.Consumer requestsCollector) onDisplayHint(int hint) onDragEvent(android.view.DragEvent event) onDraw(android.graphics.Canvas canvas) @@ -19024,11 +19646,14 @@ package android.view onRestoreInstanceState(android.os.Parcelable state) onRtlPropertiesChanged(int layoutDirection) onScreenStateChanged(int screenState) + onScrollCaptureSearch(android.graphics.Rect localVisibleRect, android.graphics.Point windowOffset, java.util.function.Consumer targets) onScrollChanged(int l, int t, int oldl, int oldt) onSetAlpha(int alpha) onSizeChanged(int w, int h, int oldw, int oldh) onTouchEvent(android.view.MotionEvent event) onTrackballEvent(android.view.MotionEvent event) + onViewTranslationResponse(android.view.translation.ViewTranslationResponse response) + onVirtualViewTranslationResponses(android.util.LongSparseArray response) onVisibilityAggregated(boolean isVisible) onVisibilityChanged(android.view.View changedView, int visibility) onWindowFocusChanged(boolean hasWindowFocus) @@ -19191,6 +19816,8 @@ package android.view setScrollbarFadingEnabled(boolean fadeScrollbars) setScrollBarSize(int scrollBarSize) setScrollBarStyle(int style) + setScrollCaptureCallback(android.view.ScrollCaptureCallback callback) + setScrollCaptureHint(int hint) setScrollContainer(boolean isScrollContainer) setScrollIndicators(int indicators) setScrollIndicators(int indicators, int mask) @@ -19220,6 +19847,7 @@ package android.view setVerticalScrollbarPosition(int position) setVerticalScrollbarThumbDrawable(android.graphics.drawable.Drawable drawable) setVerticalScrollbarTrackDrawable(android.graphics.drawable.Drawable drawable) + setViewTranslationCallback(android.view.translation.ViewTranslationCallback callback) setVisibility(int visibility) setWillNotCacheDrawing(boolean willNotCacheDrawing) setWillNotDraw(boolean willNotDraw) @@ -19342,6 +19970,7 @@ package android.view dispatchApplyWindowInsets(android.view.WindowInsets insets) dispatchCapturedPointerEvent(android.view.MotionEvent event) dispatchConfigurationChanged(android.content.res.Configuration newConfig) + dispatchCreateViewTranslationRequest(java.util.Map viewIds, int[] supportedFormats, android.view.translation.TranslationCapability capability, java.util.List requests) dispatchDisplayHint(int hint) dispatchDragEvent(android.view.DragEvent event) dispatchDraw(android.graphics.Canvas canvas) @@ -19358,6 +19987,7 @@ package android.view dispatchProvideStructure(android.view.ViewStructure structure) dispatchRestoreInstanceState(android.util.SparseArray container) dispatchSaveInstanceState(android.util.SparseArray container) + dispatchScrollCaptureSearch(android.graphics.Rect localVisibleRect, android.graphics.Point windowOffset, java.util.function.Consumer targets) dispatchSetActivated(boolean activated) dispatchSetPressed(boolean pressed) dispatchSetSelected(boolean selected) @@ -19593,8 +20223,8 @@ package android.view setMaxTextEms(int maxEms) setMaxTextLength(int maxLength) setMinTextEms(int minEms) - setOnReceiveContentMimeTypes(java.lang.String[] mimeTypes) setOpaque(boolean opaque) + setReceiveContentMimeTypes(java.lang.String[] mimeTypes) setSelected(boolean state) setText(java.lang.CharSequence text) setText(java.lang.CharSequence text, int selectionStart, int selectionEnd) @@ -19667,6 +20297,7 @@ package android.view performContextMenuIdentifierAction(int id, int flags) performPanelIdentifierAction(int featureId, int id, int flags) performPanelShortcut(int featureId, int keyCode, android.view.KeyEvent event, int flags) + registerScrollCaptureCallback(android.view.ScrollCaptureCallback callback) removeOnFrameMetricsAvailableListener(android.view.Window.OnFrameMetricsAvailableListener listener) requestFeature(int featureId) requireViewById(int id) @@ -19674,6 +20305,7 @@ package android.view setAllowEnterTransitionOverlap(boolean allow) setAllowReturnTransitionOverlap(boolean allow) setAttributes(android.view.WindowManager.LayoutParams a) + setBackgroundBlurRadius(int blurRadius) setBackgroundDrawable(android.graphics.drawable.Drawable drawable) setBackgroundDrawableResource(int resId) setCallback(android.view.Window.Callback callback) @@ -19744,6 +20376,7 @@ package android.view takeKeyEvents(boolean get) takeSurface(android.view.SurfaceHolder.Callback2 callback) togglePanel(int featureId, android.view.KeyEvent event) + unregisterScrollCaptureCallback(android.view.ScrollCaptureCallback callback) #ctor(android.content.Context context) interface Window.Callback dispatchGenericMotionEvent(android.view.MotionEvent event) @@ -19789,6 +20422,7 @@ package android.view equals(java.lang.Object o) getInsets(int typeMask) getInsetsIgnoringVisibility(int typeMask) + getRoundedCorner(int position) inset(android.graphics.Insets insets) inset(int left, int top, int right, int bottom) isVisible(int typeMask) @@ -19800,6 +20434,8 @@ package android.view setInsets(int typeMask, android.graphics.Insets insets) setInsetsIgnoringVisibility(int typeMask, android.graphics.Insets insets) setMandatorySystemGestureInsets(android.graphics.Insets insets) + setPrivacyIndicatorBounds(android.graphics.Rect bounds) + setRoundedCorner(int position, android.view.RoundedCorner roundedCorner) setStableInsets(android.graphics.Insets stableInsets) setSystemGestureInsets(android.graphics.Insets insets) setSystemWindowInsets(android.graphics.Insets systemWindowInsets) @@ -19837,6 +20473,9 @@ package android.view interface WindowInsetsController.OnControllableInsetsChangedListener onControllableInsetsChanged(android.view.WindowInsetsController controller, int typeMask) interface WindowManager + addCrossWindowBlurEnabledListener(java.util.concurrent.Executor executor, java.util.function.Consumer listener) + addCrossWindowBlurEnabledListener(java.util.function.Consumer listener) + removeCrossWindowBlurEnabledListener(java.util.function.Consumer listener) removeViewImmediate(android.view.View view) class WindowManager.BadTokenException #ctor(java.lang.String name) @@ -19846,6 +20485,7 @@ package android.view copyFrom(android.view.WindowManager.LayoutParams o) debug(java.lang.String output) mayUseInputMethod(int flags) + setBlurBehindRadius(int blurBehindRadius) setColorMode(int colorMode) setFitInsetsIgnoringVisibility(boolean ignore) setFitInsetsSides(int sides) @@ -20273,6 +20913,19 @@ package android.view.contentcapture onError(int errorCode) onWrite(android.os.ParcelFileDescriptor destination) +package android.view.displayhash +;--------------------------------------- + class DisplayHash + writeToParcel(android.os.Parcel dest, int flags) + class DisplayHashManager + verifyDisplayHash(android.view.displayhash.DisplayHash displayHash) + interface DisplayHashResultCallback + onDisplayHashError(int errorCode) + onDisplayHashResult(android.view.displayhash.DisplayHash displayHash) + class VerifiedDisplayHash + #ctor(long timeMillis, android.graphics.Rect boundsInWindow, java.lang.String hashAlgorithm, byte[] imageHash) + writeToParcel(android.os.Parcel dest, int flags) + package android.view.inputmethod ;--------------------------------------- class BaseInputConnection @@ -20351,6 +21004,7 @@ package android.view.inputmethod #ctor(java.util.List inlinePresentationSpecs) setExtras(android.os.Bundle value) setInlinePresentationSpecs(java.util.List value) + setInlineTooltipPresentationSpec(android.widget.inline.InlinePresentationSpec value) setMaxSuggestionCount(int value) setSupportedLocales(android.os.LocaleList value) class InlineSuggestionsResponse @@ -20382,7 +21036,7 @@ package android.view.inputmethod sendKeyEvent(android.view.KeyEvent event) setComposingRegion(int start, int end) setComposingText(java.lang.CharSequence text, int newCursorPosition) - setImeTemporarilyConsumesInput(boolean imeTemporarilyConsumesInput) + setImeConsumesInput(boolean imeConsumesInput) setSelection(int start, int end) class InputConnectionWrapper clearMetaKeyStates(int states) @@ -20407,7 +21061,7 @@ package android.view.inputmethod sendKeyEvent(android.view.KeyEvent event) setComposingRegion(int start, int end) setComposingText(java.lang.CharSequence text, int newCursorPosition) - setImeTemporarilyConsumesInput(boolean imeTemporarilyConsumesInput) + setImeConsumesInput(boolean imeConsumesInput) setSelection(int start, int end) setTarget(android.view.inputmethod.InputConnection target) class InputContentInfo @@ -20749,6 +21403,11 @@ package android.view.textservice interface SpellCheckerSession.SpellCheckerSessionListener onGetSentenceSuggestions(android.view.textservice.SentenceSuggestionsInfo[] results) onGetSuggestions(android.view.textservice.SuggestionsInfo[] results) + class SpellCheckerSession.SpellCheckerSessionParams.Builder + setExtras(android.os.Bundle extras) + setLocale(java.util.Locale locale) + setShouldReferToSpellCheckerLanguageSettings(boolean shouldReferToSpellCheckerLanguageSettings) + setSupportedAttributes(int supportedAttributes) class SpellCheckerSubtype containsExtraValueKey(java.lang.String key) equals(java.lang.Object o) @@ -20770,9 +21429,81 @@ package android.view.textservice #ctor(java.lang.String text, int cookie, int sequenceNumber) writeToParcel(android.os.Parcel dest, int flags) class TextServicesManager - getCurrentSpellCheckerSubtype(boolean allowImplicitlySelectedSubtype) newSpellCheckerSession(android.os.Bundle bundle, java.util.Locale locale, android.view.textservice.SpellCheckerSession.SpellCheckerSessionListener listener, boolean referToSpellCheckerLanguageSettings) - newSpellCheckerSession(android.os.Bundle bundle, java.util.Locale locale, android.view.textservice.SpellCheckerSession.SpellCheckerSessionListener listener, boolean referToSpellCheckerLanguageSettings, int supportedAttributes) + newSpellCheckerSession(android.view.textservice.SpellCheckerSession.SpellCheckerSessionParams params, java.util.concurrent.Executor executor, android.view.textservice.SpellCheckerSession.SpellCheckerSessionListener listener) + +package android.view.translation +;--------------------------------------- + class TranslationCapability + writeToParcel(android.os.Parcel dest, int flags) + class TranslationContext + writeToParcel(android.os.Parcel dest, int flags) + class TranslationContext.Builder + setTranslationFlags(int value) + #ctor(android.view.translation.TranslationSpec sourceSpec, android.view.translation.TranslationSpec targetSpec) + class TranslationManager + addOnDeviceTranslationCapabilityUpdateListener(java.util.concurrent.Executor executor, java.util.function.Consumer capabilityListener) + createOnDeviceTranslator(android.view.translation.TranslationContext translationContext, java.util.concurrent.Executor executor, java.util.function.Consumer callback) + getOnDeviceTranslationCapabilities(int sourceFormat, int targetFormat) + removeOnDeviceTranslationCapabilityUpdateListener(java.util.function.Consumer capabilityListener) + class TranslationRequest + writeToParcel(android.os.Parcel dest, int flags) + class TranslationRequest.Builder + setFlags(int value) + setTranslationRequestValues(java.util.List value) + setViewTranslationRequests(java.util.List value) + class TranslationRequestValue + equals(java.lang.Object o) + forText(java.lang.CharSequence text) + writeToParcel(android.os.Parcel dest, int flags) + class TranslationResponse + writeToParcel(android.os.Parcel dest, int flags) + class TranslationResponse.Builder + setFinalResponse(boolean value) + setTranslationResponseValue(int index, android.view.translation.TranslationResponseValue value) + setTranslationResponseValues(android.util.SparseArray value) + setViewTranslationResponse(int index, android.view.translation.ViewTranslationResponse response) + setViewTranslationResponses(android.util.SparseArray value) + #ctor(int translationStatus) + class TranslationResponseValue + equals(java.lang.Object o) + writeToParcel(android.os.Parcel dest, int flags) + class TranslationResponseValue.Builder + setExtras(android.os.Bundle value) + setText(java.lang.CharSequence value) + setTransliteration(java.lang.CharSequence value) + #ctor(int statusCode) + class TranslationSpec + equals(java.lang.Object o) + #ctor(android.icu.util.ULocale locale, int dataFormat) + writeToParcel(android.os.Parcel dest, int flags) + class Translator + translate(android.view.translation.TranslationRequest request, android.os.CancellationSignal cancellationSignal, java.util.concurrent.Executor executor, java.util.function.Consumer callback) + class UiTranslationManager + registerUiTranslationStateCallback(java.util.concurrent.Executor executor, android.view.translation.UiTranslationStateCallback callback) + unregisterUiTranslationStateCallback(android.view.translation.UiTranslationStateCallback callback) + interface UiTranslationStateCallback + onResumed(android.icu.util.ULocale sourceLocale, android.icu.util.ULocale targetLocale) + onStarted(android.icu.util.ULocale sourceLocale, android.icu.util.ULocale targetLocale) + interface ViewTranslationCallback + onClearTranslation(android.view.View view) + onHideTranslation(android.view.View view) + onShowTranslation(android.view.View view) + class ViewTranslationRequest + equals(java.lang.Object o) + getValue(java.lang.String key) + writeToParcel(android.os.Parcel dest, int flags) + class ViewTranslationRequest.Builder + setValue(java.lang.String key, android.view.translation.TranslationRequestValue value) + #ctor(android.view.autofill.AutofillId autofillId) + #ctor(android.view.autofill.AutofillId autofillId, long virtualChildId) + class ViewTranslationResponse + equals(java.lang.Object o) + getValue(java.lang.String key) + writeToParcel(android.os.Parcel dest, int flags) + class ViewTranslationResponse.Builder + setValue(java.lang.String key, android.view.translation.TranslationResponseValue value) + #ctor(android.view.autofill.AutofillId autofillId) package android.webkit ;--------------------------------------- @@ -20982,6 +21713,7 @@ package android.webkit clearCache(boolean includeDiskFiles) clearClientCertPreferences(java.lang.Runnable onCleared) createPrintDocumentAdapter(java.lang.String documentName) + dispatchCreateViewTranslationRequest(java.util.Map viewIds, int[] supportedFormats, android.view.translation.TranslationCapability capability, java.util.List requests) dispatchDraw(android.graphics.Canvas canvas) dispatchKeyEvent(android.view.KeyEvent event) documentHasImages(android.os.Message response) @@ -21003,6 +21735,7 @@ package android.webkit onChildViewRemoved(android.view.View p, android.view.View child) onConfigurationChanged(android.content.res.Configuration newConfig) onCreateInputConnection(android.view.inputmethod.EditorInfo outAttrs) + onCreateVirtualViewTranslationRequests(long[] virtualIds, int[] supportedFormats, java.util.function.Consumer requestsCollector) onDragEvent(android.view.DragEvent event) onDraw(android.graphics.Canvas canvas) onFocusChanged(boolean focused, int direction, android.graphics.Rect previouslyFocusedRect) @@ -21021,6 +21754,7 @@ package android.webkit onSizeChanged(int w, int h, int ow, int oh) onTouchEvent(android.view.MotionEvent event) onTrackballEvent(android.view.MotionEvent event) + onVirtualViewTranslationResponses(android.util.LongSparseArray response) onVisibilityChanged(android.view.View changedView, int visibility) onWindowFocusChanged(boolean hasWindowFocus) onWindowVisibilityChanged(int visibility) @@ -21377,6 +22111,20 @@ package android.widget onDraw(android.graphics.Canvas canvas) onMeasure(int widthMeasureSpec, int heightMeasureSpec) onSizeChanged(int w, int h, int oldw, int oldh) + onVisibilityAggregated(boolean isVisible) + setDial(android.graphics.drawable.Icon icon) + setDialTintBlendMode(android.graphics.BlendMode blendMode) + setDialTintList(android.content.res.ColorStateList tint) + setHourHand(android.graphics.drawable.Icon icon) + setHourHandTintBlendMode(android.graphics.BlendMode blendMode) + setHourHandTintList(android.content.res.ColorStateList tint) + setMinuteHand(android.graphics.drawable.Icon icon) + setMinuteHandTintBlendMode(android.graphics.BlendMode blendMode) + setMinuteHandTintList(android.content.res.ColorStateList tint) + setSecondHand(android.graphics.drawable.Icon icon) + setSecondHandTintBlendMode(android.graphics.BlendMode blendMode) + setSecondHandTintList(android.content.res.ColorStateList tint) + setTimeZone(java.lang.String timeZone) class ArrayAdapter add(T object) addAll(java.util.Collection collection) @@ -21535,6 +22283,7 @@ package android.widget onRestoreInstanceState(android.os.Parcelable state) setButtonDrawable(android.graphics.drawable.Drawable drawable) setButtonDrawable(int resId) + setButtonIcon(android.graphics.drawable.Icon icon) setButtonTintBlendMode(android.graphics.BlendMode tintMode) setButtonTintList(android.content.res.ColorStateList tint) setButtonTintMode(android.graphics.PorterDuff.Mode tintMode) @@ -21626,9 +22375,11 @@ package android.widget class EdgeEffect draw(android.graphics.Canvas canvas) #ctor(android.content.Context context) + #ctor(android.content.Context context, android.util.AttributeSet attrs) onAbsorb(int velocity) onPull(float deltaDistance) onPull(float deltaDistance, float displacement) + onPullDistance(float deltaDistance, float displacement) setBlendMode(android.graphics.BlendMode blendmode) setColor(int color) setSize(int width, int height) @@ -22316,6 +23067,7 @@ package android.widget removeRule(int verb) resolveLayoutDirection(int layoutDirection) class RemoteViews + addStableView(int viewId, android.widget.RemoteViews nestedView, int stableId) addView(int viewId, android.widget.RemoteViews nestedView) apply(android.content.Context context, android.view.ViewGroup parent) onLoadClass(java.lang.Class clazz) @@ -22324,39 +23076,62 @@ package android.widget #ctor(android.widget.RemoteViews src) #ctor(android.widget.RemoteViews landscape, android.widget.RemoteViews portrait) #ctor(java.lang.String packageName, int layoutId) + #ctor(java.lang.String packageName, int layoutId, int viewId) + #ctor(java.util.Map remoteViews) removeAllViews(int viewId) setAccessibilityTraversalAfter(int viewId, int nextId) setAccessibilityTraversalBefore(int viewId, int nextId) setBitmap(int viewId, java.lang.String methodName, android.graphics.Bitmap value) + setBlendMode(int viewId, java.lang.String methodName, android.graphics.BlendMode value) setBoolean(int viewId, java.lang.String methodName, boolean value) setBundle(int viewId, java.lang.String methodName, android.os.Bundle value) setByte(int viewId, java.lang.String methodName, byte value) setChar(int viewId, java.lang.String methodName, char value) + setCharSequence(int viewId, java.lang.String methodName, int stringResource) setCharSequence(int viewId, java.lang.String methodName, java.lang.CharSequence value) + setCharSequenceAttr(int viewId, java.lang.String methodName, int stringAttribute) setChronometer(int viewId, long base, java.lang.String format, boolean started) setChronometerCountDown(int viewId, boolean isCountDown) + setColor(int viewId, java.lang.String methodName, int colorResource) + setColorAttr(int viewId, java.lang.String methodName, int colorAttribute) + setColorInt(int viewId, java.lang.String methodName, int notNight, int night) + setColorStateList(int viewId, java.lang.String methodName, android.content.res.ColorStateList value) + setColorStateList(int viewId, java.lang.String methodName, android.content.res.ColorStateList notNight, android.content.res.ColorStateList night) + setColorStateList(int viewId, java.lang.String methodName, int colorResource) + setColorStateListAttr(int viewId, java.lang.String methodName, int colorAttr) + setCompoundButtonChecked(int viewId, boolean checked) setContentDescription(int viewId, java.lang.CharSequence contentDescription) setDisplayedChild(int viewId, int childIndex) setDouble(int viewId, java.lang.String methodName, double value) setEmptyView(int viewId, int emptyViewId) setFloat(int viewId, java.lang.String methodName, float value) + setFloatDimen(int viewId, java.lang.String methodName, float value, int unit) + setFloatDimen(int viewId, java.lang.String methodName, int dimenResource) + setFloatDimenAttr(int viewId, java.lang.String methodName, int dimenAttr) setIcon(int viewId, java.lang.String methodName, android.graphics.drawable.Icon value) + setIcon(int viewId, java.lang.String methodName, android.graphics.drawable.Icon notNight, android.graphics.drawable.Icon night) setImageViewBitmap(int viewId, android.graphics.Bitmap bitmap) setImageViewIcon(int viewId, android.graphics.drawable.Icon icon) setImageViewResource(int viewId, int srcId) setImageViewUri(int viewId, android.net.Uri uri) setInt(int viewId, java.lang.String methodName, int value) + setIntDimen(int viewId, java.lang.String methodName, float value, int unit) + setIntDimen(int viewId, java.lang.String methodName, int dimenResource) + setIntDimenAttr(int viewId, java.lang.String methodName, int dimenAttr) setIntent(int viewId, java.lang.String methodName, android.content.Intent value) setLabelFor(int viewId, int labeledId) setLightBackgroundLayoutId(int layoutId) setLong(int viewId, java.lang.String methodName, long value) + setOnCheckedChangeResponse(int viewId, android.widget.RemoteViews.RemoteResponse response) setOnClickFillInIntent(int viewId, android.content.Intent fillInIntent) setOnClickPendingIntent(int viewId, android.app.PendingIntent pendingIntent) setOnClickResponse(int viewId, android.widget.RemoteViews.RemoteResponse response) setPendingIntentTemplate(int viewId, android.app.PendingIntent pendingIntentTemplate) setProgressBar(int viewId, int max, int progress, boolean indeterminate) + setRadioGroupChecked(int viewId, int checkedId) setRelativeScrollPosition(int viewId, int offset) setRemoteAdapter(int viewId, android.content.Intent intent) + setRemoteAdapter(int viewId, android.widget.RemoteViews.RemoteCollectionItems items) setRemoteAdapter(int appWidgetId, int viewId, android.content.Intent intent) setScrollPosition(int viewId, int position) setShort(int viewId, java.lang.String methodName, short value) @@ -22367,6 +23142,18 @@ package android.widget setTextViewText(int viewId, java.lang.CharSequence text) setTextViewTextSize(int viewId, int units, float size) setUri(int viewId, java.lang.String methodName, android.net.Uri value) + setViewLayoutHeight(int viewId, float height, int units) + setViewLayoutHeightAttr(int viewId, int heightAttr) + setViewLayoutHeightDimen(int viewId, int heightDimen) + setViewLayoutMargin(int viewId, int type, float value, int units) + setViewLayoutMarginAttr(int viewId, int type, int attr) + setViewLayoutMarginDimen(int viewId, int type, int dimen) + setViewLayoutWidth(int viewId, float width, int units) + setViewLayoutWidthAttr(int viewId, int widthAttr) + setViewLayoutWidthDimen(int viewId, int widthDimen) + setViewOutlinePreferredRadius(int viewId, float radius, int units) + setViewOutlinePreferredRadiusAttr(int viewId, int attrId) + setViewOutlinePreferredRadiusDimen(int viewId, int resId) setViewPadding(int viewId, int left, int top, int right, int bottom) setViewVisibility(int viewId, int visibility) showNext(int viewId) @@ -22375,10 +23162,21 @@ package android.widget class RemoteViews.ActionException #ctor(java.lang.Exception ex) #ctor(java.lang.String message) + class RemoteViews.RemoteCollectionItems + getItemId(int position) + getItemView(int position) + writeToParcel(android.os.Parcel dest, int flags) + class RemoteViews.RemoteCollectionItems.Builder + addItem(long id, android.widget.RemoteViews view) + setHasStableIds(boolean hasStableIds) + setViewTypeCount(int viewTypeCount) class RemoteViews.RemoteResponse addSharedElement(int viewId, java.lang.String sharedElementName) fromFillInIntent(android.content.Intent fillIntent) fromPendingIntent(android.app.PendingIntent pendingIntent) + class RemoteViews.RemoteViewOutlineProvider + getOutline(android.view.View view, android.graphics.Outline outline) + #ctor(float radius) class RemoteViewsService onBind(android.content.Intent intent) onGetViewFactory(android.content.Intent intent) @@ -22642,12 +23440,14 @@ package android.widget setTextOff(java.lang.CharSequence textOff) setTextOn(java.lang.CharSequence textOn) setThumbDrawable(android.graphics.drawable.Drawable thumb) + setThumbIcon(android.graphics.drawable.Icon icon) setThumbResource(int resId) setThumbTextPadding(int pixels) setThumbTintBlendMode(android.graphics.BlendMode blendMode) setThumbTintList(android.content.res.ColorStateList tint) setThumbTintMode(android.graphics.PorterDuff.Mode tintMode) setTrackDrawable(android.graphics.drawable.Drawable track) + setTrackIcon(android.graphics.drawable.Icon icon) setTrackResource(int resId) setTrackTintBlendMode(android.graphics.BlendMode blendMode) setTrackTintList(android.content.res.ColorStateList tint) @@ -22788,6 +23588,7 @@ package android.widget onCreateContextMenu(android.view.ContextMenu menu) onCreateDrawableState(int extraSpace) onCreateInputConnection(android.view.inputmethod.EditorInfo outAttrs) + onCreateViewTranslationRequest(int[] supportedFormats, java.util.function.Consumer requestsCollector) onDragEvent(android.view.DragEvent event) onDraw(android.graphics.Canvas canvas) onEditorAction(int actionCode) @@ -22812,6 +23613,7 @@ package android.widget onTextContextMenuItem(int id) onTouchEvent(android.view.MotionEvent event) onTrackballEvent(android.view.MotionEvent event) + onViewTranslationResponse(android.view.translation.ViewTranslationResponse response) onVisibilityChanged(android.view.View changedView, int visibility) onWindowFocusChanged(boolean hasWindowFocus) removeTextChangedListener(android.text.TextWatcher watcher) @@ -23143,6 +23945,16 @@ package android.widget.inline #ctor(android.util.Size minSize, android.util.Size maxSize) setStyle(android.os.Bundle value) +package android.window +;--------------------------------------- + interface SplashScreen + setOnExitAnimationListener(android.window.SplashScreen.OnExitAnimationListener listener) + setSplashScreenTheme(int themeId) + interface SplashScreen.OnExitAnimationListener + onSplashScreenExit(android.window.SplashScreenView view) + class SplashScreenView + setAlpha(float alpha) + package dalvik.annotation ;--------------------------------------- @@ -27681,6 +28493,7 @@ package java.time addTo(java.time.temporal.Temporal temporal) between(java.time.temporal.Temporal startInclusive, java.time.temporal.Temporal endExclusive) compareTo(java.time.Duration otherDuration) + dividedBy(java.time.Duration divisor) dividedBy(long divisor) equals(java.lang.Object otherDuration) from(java.time.temporal.TemporalAmount amount) @@ -27712,6 +28525,7 @@ package java.time plusNanos(long nanosToAdd) plusSeconds(long secondsToAdd) subtractFrom(java.time.temporal.Temporal temporal) + truncatedTo(java.time.temporal.TemporalUnit unit) withNanos(int nanoOfSecond) withSeconds(long seconds) class Instant @@ -29344,6 +30158,7 @@ package java.util addAll(java.util.Collection c) contains(java.lang.Object o) containsAll(java.util.Collection c) + copyOf(java.util.Collection coll) equals(java.lang.Object o) get(int index) indexOf(java.lang.Object o) @@ -29424,6 +30239,7 @@ package java.util computeIfPresent(K key, java.util.function.BiFunction remappingFunction) containsKey(java.lang.Object key) containsValue(java.lang.Object value) + copyOf(java.util.Map map) entry(K k, V v) equals(java.lang.Object o) forEach(java.util.function.BiConsumer action) @@ -30010,9 +30826,17 @@ package java.util.concurrent applyToEitherAsync(java.util.concurrent.CompletionStage other, java.util.function.Function fn, java.util.concurrent.Executor executor) cancel(boolean mayInterruptIfRunning) complete(T value) + completeAsync(java.util.function.Supplier supplier) + completeAsync(java.util.function.Supplier supplier, java.util.concurrent.Executor executor) completedFuture(U value) + completedStage(U value) completeExceptionally(java.lang.Throwable ex) + completeOnTimeout(T value, long timeout, java.util.concurrent.TimeUnit unit) + delayedExecutor(long delay, java.util.concurrent.TimeUnit unit) + delayedExecutor(long delay, java.util.concurrent.TimeUnit unit, java.util.concurrent.Executor executor) exceptionally(java.util.function.Function fn) + failedFuture(java.lang.Throwable ex) + failedStage(java.lang.Throwable ex) get(long timeout, java.util.concurrent.TimeUnit unit) getNow(T valueIfAbsent) handle(java.util.function.BiFunction fn) @@ -30020,6 +30844,7 @@ package java.util.concurrent handleAsync(java.util.function.BiFunction fn, java.util.concurrent.Executor executor) obtrudeException(java.lang.Throwable ex) obtrudeValue(T value) + orTimeout(long timeout, java.util.concurrent.TimeUnit unit) runAfterBoth(java.util.concurrent.CompletionStage other, java.lang.Runnable action) runAfterBothAsync(java.util.concurrent.CompletionStage other, java.lang.Runnable action) runAfterBothAsync(java.util.concurrent.CompletionStage other, java.lang.Runnable action, java.util.concurrent.Executor executor) diff --git a/src/Mono.Android/map.csv b/src/Mono.Android/map.csv index 54ea3b5de5b..1426b835874 100644 --- a/src/Mono.Android/map.csv +++ b/src/Mono.Android/map.csv @@ -10,14 +10,17 @@ E,30,android/accessibilityservice/AccessibilityService.GESTURE_2_FINGER_SWIPE_LE E,30,android/accessibilityservice/AccessibilityService.GESTURE_2_FINGER_SWIPE_RIGHT,28,Android.AccessibilityServices.AccessibilityGesture,TwoFingerSwipeRight,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_2_FINGER_SWIPE_UP,25,Android.AccessibilityServices.AccessibilityGesture,TwoFingerSwipeUp,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_2_FINGER_TRIPLE_TAP,21,Android.AccessibilityServices.AccessibilityGesture,TwoFingerTripleTap,remove, +E,31,android/accessibilityservice/AccessibilityService.GESTURE_2_FINGER_TRIPLE_TAP_AND_HOLD,43,Android.AccessibilityServices.AccessibilityGesture,TwoFingerTripleTapAndHold,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_DOUBLE_TAP,23,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerDoubleTap,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_DOUBLE_TAP_AND_HOLD,41,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerDoubleTapAndHold,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SINGLE_TAP,22,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSingleTap,remove, +E,31,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SINGLE_TAP_AND_HOLD,44,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSingleTapAndHold,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SWIPE_DOWN,30,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSwipeDown,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SWIPE_LEFT,31,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSwipeLeft,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SWIPE_RIGHT,32,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSwipeRight,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_SWIPE_UP,29,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerSwipeUp,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_TRIPLE_TAP,24,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerTripleTap,remove, +E,31,android/accessibilityservice/AccessibilityService.GESTURE_3_FINGER_TRIPLE_TAP_AND_HOLD,45,Android.AccessibilityServices.AccessibilityGesture,ThreeFingerTripleTapAndHold,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_4_FINGER_DOUBLE_TAP,38,Android.AccessibilityServices.AccessibilityGesture,FourFingerDoubleTap,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_4_FINGER_DOUBLE_TAP_AND_HOLD,42,Android.AccessibilityServices.AccessibilityGesture,FourFingerDoubleTapAndHold,remove, E,30,android/accessibilityservice/AccessibilityService.GESTURE_4_FINGER_SINGLE_TAP,37,Android.AccessibilityServices.AccessibilityGesture,FourFingerSingleTap,remove, @@ -44,8 +47,15 @@ E,16,android/accessibilityservice/AccessibilityService.GESTURE_SWIPE_UP,1,Androi E,16,android/accessibilityservice/AccessibilityService.GESTURE_SWIPE_UP_AND_DOWN,7,Android.AccessibilityServices.AccessibilityGesture,SwipeUpAndDown,remove, E,16,android/accessibilityservice/AccessibilityService.GESTURE_SWIPE_UP_AND_LEFT,13,Android.AccessibilityServices.AccessibilityGesture,SwipeUpAndLeft,remove, E,16,android/accessibilityservice/AccessibilityService.GESTURE_SWIPE_UP_AND_RIGHT,14,Android.AccessibilityServices.AccessibilityGesture,SwipeUpAndRight,remove, +E,31,android/accessibilityservice/AccessibilityService.GESTURE_UNKNOWN,0,Android.AccessibilityServices.AccessibilityGesture,Unknown,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_ACCESSIBILITY_ALL_APPS,14,Android.AccessibilityServices.GlobalAction,AccessibilityAllApps,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_ACCESSIBILITY_BUTTON,11,Android.AccessibilityServices.GlobalAction,AccessibilityButton,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_ACCESSIBILITY_BUTTON_CHOOSER,12,Android.AccessibilityServices.GlobalAction,AccessibilityButtonChooser,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_ACCESSIBILITY_SHORTCUT,13,Android.AccessibilityServices.GlobalAction,AccessibilityShortcut,remove, E,16,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_BACK,1,Android.AccessibilityServices.GlobalAction,Back,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_DISMISS_NOTIFICATION_SHADE,15,Android.AccessibilityServices.GlobalAction,DismissNotificationShade,remove, E,16,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_HOME,2,Android.AccessibilityServices.GlobalAction,Home,remove, +E,31,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_KEYCODE_HEADSETHOOK,10,Android.AccessibilityServices.GlobalAction,KeycodeHeadsetHook,remove, E,28,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_LOCK_SCREEN,8,Android.AccessibilityServices.GlobalAction,LockScreen,remove, E,16,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_NOTIFICATIONS,4,Android.AccessibilityServices.GlobalAction,Notifications,remove, E,21,android/accessibilityservice/AccessibilityService.GLOBAL_ACTION_POWER_DIALOG,6,Android.AccessibilityServices.GlobalAction,PowerDialog,remove, @@ -76,6 +86,7 @@ E,10,android/accessibilityservice/AccessibilityServiceInfo.FEEDBACK_VISUAL,8,And E,26,android/accessibilityservice/AccessibilityServiceInfo.FLAG_ENABLE_ACCESSIBILITY_VOLUME,128,Android.AccessibilityServices.AccessibilityServiceFlags,EnableAccessibilityVolume,remove,flags E,16,android/accessibilityservice/AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS,2,Android.AccessibilityServices.AccessibilityServiceFlags,IncludeNotImportantViews,remove,flags E,18,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REPORT_VIEW_IDS,16,Android.AccessibilityServices.AccessibilityServiceFlags,ReportViewIds,remove,flags +E,31,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_2_FINGER_PASSTHROUGH,8192,Android.AccessibilityServices.AccessibilityServiceFlags,RequestTwoFingerPassthrough,remove, E,26,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_ACCESSIBILITY_BUTTON,256,Android.AccessibilityServices.AccessibilityServiceFlags,RequestAccessibilityButton,remove,flags E,18,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY,8,Android.AccessibilityServices.AccessibilityServiceFlags,RequestEnhancedWebAccessibility,remove,flags E,18,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS,32,Android.AccessibilityServices.AccessibilityServiceFlags,RequestFilterKeyEvents,remove,flags @@ -84,6 +95,7 @@ E,30,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_MULTI_FI E,29,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_SHORTCUT_WARNING_DIALOG_SPOKEN_FEEDBACK,1024,Android.AccessibilityServices.AccessibilityServiceFlags,RequestShortcutWarningDialogSpokenFeedback,remove,flags E,16,android/accessibilityservice/AccessibilityServiceInfo.FLAG_REQUEST_TOUCH_EXPLORATION_MODE,4,Android.AccessibilityServices.AccessibilityServiceFlags,RequestTouchExplorationMode,remove,flags E,21,android/accessibilityservice/AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS,64,Android.AccessibilityServices.AccessibilityServiceFlags,RetrieveInteractiveWindows,remove,flags +E,31,android/accessibilityservice/AccessibilityServiceInfo.FLAG_SEND_MOTION_EVENTS,16384,Android.AccessibilityServices.AccessibilityServiceFlags,SendMotionEvents,remove, E,30,android/accessibilityservice/AccessibilityServiceInfo.FLAG_SERVICE_HANDLES_DOUBLE_TAP,2048,Android.AccessibilityServices.AccessibilityServiceFlags,ServiceHandlesDoubleTap,remove,flags E,26,android/accessibilityservice/FingerprintGestureController.FINGERPRINT_GESTURE_SWIPE_DOWN,8,Android.AccessibilityServices.FingerptintGestureTypes,SwipeDown,keep, E,26,android/accessibilityservice/FingerprintGestureController.FINGERPRINT_GESTURE_SWIPE_LEFT,2,Android.AccessibilityServices.FingerptintGestureTypes,SwipeLeft,keep, @@ -107,10 +119,9 @@ E,15,android/animation/LayoutTransition.CHANGE_APPEARING,0,Android.Animation.Lay E,15,android/animation/LayoutTransition.CHANGE_DISAPPEARING,1,Android.Animation.LayoutTransitionType,ChangeDisappearing,remove, E,16,android/animation/LayoutTransition.CHANGING,4,Android.Animation.LayoutTransitionType,Changing,remove, E,15,android/animation/LayoutTransition.DISAPPEARING,3,Android.Animation.LayoutTransitionType,Disappearing,remove, -?,15,android/animation/ValueAnimator.INFINITE,-1,,,, +I,15,android/animation/ValueAnimator.INFINITE,-1,,,, E,15,android/animation/ValueAnimator.RESTART,1,Android.Animation.ValueAnimatorRepeatMode,Restart,remove, E,15,android/animation/ValueAnimator.REVERSE,2,Android.Animation.ValueAnimatorRepeatMode,Reverse,remove, -?,15,android/app/ActionBar$Tab.INVALID_POSITION,-1,,,, E,15,android/app/ActionBar.DISPLAY_HOME_AS_UP,4,Android.App.ActionBarDisplayOptions,HomeAsUp,keep, E,15,android/app/ActionBar.DISPLAY_SHOW_CUSTOM,16,Android.App.ActionBarDisplayOptions,ShowCustom,keep, E,15,android/app/ActionBar.DISPLAY_SHOW_HOME,2,Android.App.ActionBarDisplayOptions,ShowHome,keep, @@ -119,6 +130,7 @@ E,15,android/app/ActionBar.DISPLAY_USE_LOGO,1,Android.App.ActionBarDisplayOption E,15,android/app/ActionBar.NAVIGATION_MODE_LIST,1,Android.App.ActionBarNavigationMode,List,keep, E,15,android/app/ActionBar.NAVIGATION_MODE_STANDARD,0,Android.App.ActionBarNavigationMode,Standard,keep, E,15,android/app/ActionBar.NAVIGATION_MODE_TABS,2,Android.App.ActionBarNavigationMode,Tabs,keep, +I,15,android/app/ActionBar$Tab.INVALID_POSITION,-1,,,, E,10,android/app/Activity.DEFAULT_KEYS_DIALER,1,Android.App.DefaultKey,Dialer,keep, E,10,android/app/Activity.DEFAULT_KEYS_DISABLE,0,Android.App.DefaultKey,Disable,keep, E,10,android/app/Activity.DEFAULT_KEYS_SEARCH_GLOBAL,4,Android.App.DefaultKey,SearchGlobal,keep, @@ -127,6 +139,13 @@ E,10,android/app/Activity.DEFAULT_KEYS_SHORTCUT,2,Android.App.DefaultKey,Shortcu E,10,android/app/Activity.RESULT_CANCELED,0,Android.App.Result,Canceled,keep, E,10,android/app/Activity.RESULT_FIRST_USER,1,Android.App.Result,FirstUser,keep, E,10,android/app/Activity.RESULT_OK,-1,Android.App.Result,Ok,keep, +E,23,android/app/ActivityManager.LOCK_TASK_MODE_LOCKED,1,Android.App.LockTaskMode,Locked,keep, +E,23,android/app/ActivityManager.LOCK_TASK_MODE_NONE,0,Android.App.LockTaskMode,None,keep, +E,23,android/app/ActivityManager.LOCK_TASK_MODE_PINNED,2,Android.App.LockTaskMode,Pinned,keep, +E,15,android/app/ActivityManager.MOVE_TASK_NO_USER_ACTION,2,Android.App.MoveTaskFlags,NoUserAction,keep,flags +E,15,android/app/ActivityManager.MOVE_TASK_WITH_HOME,1,Android.App.MoveTaskFlags,WithHome,keep,flags +E,15,android/app/ActivityManager.RECENT_IGNORE_UNAVAILABLE,2,Android.App.RecentTaskFlags,IgnoreUnavailable,keep,flags +E,10,android/app/ActivityManager.RECENT_WITH_EXCLUDED,1,Android.App.RecentTaskFlags,WithExcluded,keep,flags E,10,android/app/ActivityManager$ProcessErrorStateInfo.CRASHED,1,Android.App.ProcessError,Crashed,remove, E,10,android/app/ActivityManager$ProcessErrorStateInfo.NO_ERROR,0,Android.App.ProcessError,NoError,remove, E,10,android/app/ActivityManager$ProcessErrorStateInfo.NOT_RESPONDING,2,Android.App.ProcessError,NotResponding,remove, @@ -150,13 +169,6 @@ E,10,android/app/ActivityManager$RunningServiceInfo.FLAG_FOREGROUND,2,Android.Ap E,10,android/app/ActivityManager$RunningServiceInfo.FLAG_PERSISTENT_PROCESS,8,Android.App.ServiceInfoFlags,PersistentProcess,remove,flags E,10,android/app/ActivityManager$RunningServiceInfo.FLAG_STARTED,1,Android.App.ServiceInfoFlags,Started,remove,flags E,10,android/app/ActivityManager$RunningServiceInfo.FLAG_SYSTEM_PROCESS,4,Android.App.ServiceInfoFlags,SystemProcess,remove,flags -E,23,android/app/ActivityManager.LOCK_TASK_MODE_LOCKED,1,Android.App.LockTaskMode,Locked,keep, -E,23,android/app/ActivityManager.LOCK_TASK_MODE_NONE,0,Android.App.LockTaskMode,None,keep, -E,23,android/app/ActivityManager.LOCK_TASK_MODE_PINNED,2,Android.App.LockTaskMode,Pinned,keep, -E,15,android/app/ActivityManager.MOVE_TASK_NO_USER_ACTION,2,Android.App.MoveTaskFlags,NoUserAction,keep,flags -E,15,android/app/ActivityManager.MOVE_TASK_WITH_HOME,1,Android.App.MoveTaskFlags,WithHome,keep,flags -E,15,android/app/ActivityManager.RECENT_IGNORE_UNAVAILABLE,2,Android.App.RecentTaskFlags,IgnoreUnavailable,keep,flags -E,10,android/app/ActivityManager.RECENT_WITH_EXCLUDED,1,Android.App.RecentTaskFlags,WithExcluded,keep,flags E,15,android/app/admin/DeviceAdminInfo.USES_ENCRYPTED_STORAGE,7,Android.App.Admin.DeviceAdminUses,EncryptedStorage,remove, E,15,android/app/admin/DeviceAdminInfo.USES_POLICY_DISABLE_CAMERA,8,Android.App.Admin.DeviceAdminUses,PolicyDisableCamera,remove, E,17,android/app/admin/DeviceAdminInfo.USES_POLICY_DISABLE_KEYGUARD_FEATURES,9,Android.App.Admin.DeviceAdminUses,PolicyDisableKeyguardFeatures,remove, @@ -168,11 +180,6 @@ E,10,android/app/admin/DeviceAdminInfo.USES_POLICY_WATCH_LOGIN,1,Android.App.Adm E,10,android/app/admin/DeviceAdminInfo.USES_POLICY_WIPE_DATA,4,Android.App.Admin.DeviceAdminUses,PolicyWipeData,remove, E,24,android/app/admin/DeviceAdminReceiver.BUGREPORT_FAILURE_FAILED_COMPLETING,0,Android.App.Admin.BugReportFailureReason,FailedCompleting,remove, E,24,android/app/admin/DeviceAdminReceiver.BUGREPORT_FAILURE_FILE_NO_LONGER_AVAILABLE,1,Android.App.Admin.BugReportFailureReason,FileNoLongerAvailable,remove, -E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_BATTERY_LOW,5,Android.App.Admin.UpdateErrorCode,BatteryLow,remove, -E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_FILE_NOT_FOUND,4,Android.App.Admin.UpdateErrorCode,FileNotFound,remove, -E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_INCORRECT_OS_VERSION,2,Android.App.Admin.UpdateErrorCode,IncorrectOsVersion,remove, -E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_UNKNOWN,1,Android.App.Admin.UpdateErrorCode,Unknown,remove, -E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_UPDATE_FILE_INVALID,3,Android.App.Admin.UpdateErrorCode,UpdateFileInvalid,remove, E,15,android/app/admin/DevicePolicyManager.ENCRYPTION_STATUS_ACTIVATING,2,Android.App.Admin.EncryptionStatus,Activating,keep, E,15,android/app/admin/DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE,3,Android.App.Admin.EncryptionStatus,Active,keep, E,23,android/app/admin/DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY,4,Android.App.Admin.EncryptionStatus,ActiveDefaultKey,keep, @@ -213,6 +220,12 @@ E,28,android/app/admin/DevicePolicyManager.LOCK_TASK_FEATURE_NOTIFICATIONS,2,And E,28,android/app/admin/DevicePolicyManager.LOCK_TASK_FEATURE_OVERVIEW,8,Android.App.Admin.LockTaskFeatures,Overview,remove, E,28,android/app/admin/DevicePolicyManager.LOCK_TASK_FEATURE_SYSTEM_INFO,1,Android.App.Admin.LockTaskFeatures,SystemInfo,remove, E,28,android/app/admin/DevicePolicyManager.MAKE_USER_EPHEMERAL,2,Android.App.Admin.UserManagementFlags,MakeUserEphemeral,remove, +E,31,android/app/admin/DevicePolicyManager.NEARBY_STREAMING_DISABLED,1,Android.App.Admin.NearbyStreaming,Disabled,remove, +E,31,android/app/admin/DevicePolicyManager.NEARBY_STREAMING_ENABLED,2,Android.App.Admin.NearbyStreaming,Enabled,remove, +E,31,android/app/admin/DevicePolicyManager.NEARBY_STREAMING_NOT_CONTROLLED_BY_POLICY,0,Android.App.Admin.NearbyStreaming,NotControlledByPolicy,remove, +E,31,android/app/admin/DevicePolicyManager.NEARBY_STREAMING_SAME_MANAGED_ACCOUNT_ONLY,3,Android.App.Admin.NearbyStreaming,SameManagedAccountOnly,remove, +A,31,,0,Android.App.Admin.OperationSafetyReason,None,remove, +E,31,android/app/admin/DevicePolicyManager.OPERATION_SAFETY_REASON_DRIVING_DISTRACTION,1,Android.App.Admin.OperationSafetyReason,DrivingDistraction,remove, E,29,android/app/admin/DevicePolicyManager.PASSWORD_COMPLEXITY_HIGH,327680,Android.App.Admin.PasswordComplexity,High,remove, E,29,android/app/admin/DevicePolicyManager.PASSWORD_COMPLEXITY_LOW,65536,Android.App.Admin.PasswordComplexity,Low,remove, E,29,android/app/admin/DevicePolicyManager.PASSWORD_COMPLEXITY_MEDIUM,196608,Android.App.Admin.PasswordComplexity,Medium,remove, @@ -241,8 +254,9 @@ E,29,android/app/admin/DevicePolicyManager.PRIVATE_DNS_MODE_UNKNOWN,0,Android.Ap E,29,android/app/admin/DevicePolicyManager.PRIVATE_DNS_SET_ERROR_FAILURE_SETTING,2,Android.App.Admin.PrivateDnsSet,ErrorFailureSetting,remove, E,29,android/app/admin/DevicePolicyManager.PRIVATE_DNS_SET_ERROR_HOST_NOT_SERVING,1,Android.App.Admin.PrivateDnsSet,ErrorHostNotServing,remove, E,29,android/app/admin/DevicePolicyManager.PRIVATE_DNS_SET_NO_ERROR,0,Android.App.Admin.PrivateDnsSet,NoError,remove, -?,29,android/app/admin/DevicePolicyManager.PROVISIONING_MODE_FULLY_MANAGED_DEVICE,1,,,, -?,29,android/app/admin/DevicePolicyManager.PROVISIONING_MODE_MANAGED_PROFILE,2,,,, +I,29,android/app/admin/DevicePolicyManager.PROVISIONING_MODE_FULLY_MANAGED_DEVICE,1,,,, +I,29,android/app/admin/DevicePolicyManager.PROVISIONING_MODE_MANAGED_PROFILE,2,,,, +I,31,android/app/admin/DevicePolicyManager.PROVISIONING_MODE_MANAGED_PROFILE_ON_PERSONAL_DEVICE,3,,,, E,23,android/app/admin/DevicePolicyManager.RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT,2,Android.App.Admin.ResetPasswordFlags,DoNotAskCredentialsOnBoot,remove,flags E,10,android/app/admin/DevicePolicyManager.RESET_PASSWORD_REQUIRE_ENTRY,1,Android.App.Admin.ResetPasswordFlags,RequireEntry,remove,flags E,24,android/app/admin/DevicePolicyManager.SKIP_SETUP_WIZARD,1,Android.App.Admin.UserManagementFlags,SkipSetupWizard,remove, @@ -250,7 +264,12 @@ A,0,,0,Android.App.Admin.WipeDataFlags,None,remove,flags E,28,android/app/admin/DevicePolicyManager.WIPE_EUICC,4,Android.App.Admin.WipeDataFlags,WipeEuicc,remove,flags E,10,android/app/admin/DevicePolicyManager.WIPE_EXTERNAL_STORAGE,1,Android.App.Admin.WipeDataFlags,WipeExternalStorage,remove,flags E,22,android/app/admin/DevicePolicyManager.WIPE_RESET_PROTECTION_DATA,2,Android.App.Admin.WipeDataFlags,WipeResetProtectionData,remove,flags -?,29,android/app/admin/DevicePolicyManager.WIPE_SILENTLY,8,,,, +I,29,android/app/admin/DevicePolicyManager.WIPE_SILENTLY,8,,,, +E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_BATTERY_LOW,5,Android.App.Admin.UpdateErrorCode,BatteryLow,remove, +E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_FILE_NOT_FOUND,4,Android.App.Admin.UpdateErrorCode,FileNotFound,remove, +E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_INCORRECT_OS_VERSION,2,Android.App.Admin.UpdateErrorCode,IncorrectOsVersion,remove, +E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_UNKNOWN,1,Android.App.Admin.UpdateErrorCode,Unknown,remove, +E,29,android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback.UPDATE_ERROR_UPDATE_FILE_INVALID,3,Android.App.Admin.UpdateErrorCode,UpdateFileInvalid,remove, E,28,android/app/admin/SecurityLog.LEVEL_ERROR,3,Android.App.Admin.SecurityLogLevel,Error,remove, E,28,android/app/admin/SecurityLog.LEVEL_INFO,1,Android.App.Admin.SecurityLogLevel,Info,remove, E,28,android/app/admin/SecurityLog.LEVEL_WARNING,2,Android.App.Admin.SecurityLogLevel,Warning,remove, @@ -279,6 +298,7 @@ E,28,android/app/admin/SecurityLog.TAG_MEDIA_MOUNT,210013,Android.App.Admin.Secu E,28,android/app/admin/SecurityLog.TAG_MEDIA_UNMOUNT,210014,Android.App.Admin.SecurityLogTags,MediaUnmount,remove, E,28,android/app/admin/SecurityLog.TAG_OS_SHUTDOWN,210010,Android.App.Admin.SecurityLogTags,OsShutdown,remove, E,28,android/app/admin/SecurityLog.TAG_OS_STARTUP,210009,Android.App.Admin.SecurityLogTags,OsStartup,remove, +E,31,android/app/admin/SecurityLog.TAG_PASSWORD_COMPLEXITY_REQUIRED,210035,Android.App.Admin.SecurityLogTags,PasswordComplexityRequired,remove, E,28,android/app/admin/SecurityLog.TAG_PASSWORD_COMPLEXITY_SET,210017,Android.App.Admin.SecurityLogTags,PasswordComplexitySet,remove, E,28,android/app/admin/SecurityLog.TAG_PASSWORD_EXPIRATION_SET,210016,Android.App.Admin.SecurityLogTags,PasswordExpirationSet,remove, E,28,android/app/admin/SecurityLog.TAG_PASSWORD_HISTORY_LENGTH_SET,210018,Android.App.Admin.SecurityLogTags,PasswordHistoryLengthSet,remove, @@ -291,24 +311,24 @@ E,28,android/app/admin/SecurityLog.TAG_WIPE_FAILURE,210023,Android.App.Admin.Sec E,26,android/app/admin/SystemUpdateInfo.SECURITY_PATCH_STATE_FALSE,1,Android.App.Admin.SecurityPatchStates,StateFalse,keep, E,26,android/app/admin/SystemUpdateInfo.SECURITY_PATCH_STATE_TRUE,2,Android.App.Admin.SecurityPatchStates,StateTrue,keep, E,26,android/app/admin/SystemUpdateInfo.SECURITY_PATCH_STATE_UNKNOWN,0,Android.App.Admin.SecurityPatchStates,StateUnknown,keep, +E,23,android/app/admin/SystemUpdatePolicy.TYPE_INSTALL_AUTOMATIC,1,Android.App.Admin.SystemUpdatePolicyType,InstallAutomatic,keep, +E,23,android/app/admin/SystemUpdatePolicy.TYPE_INSTALL_WINDOWED,2,Android.App.Admin.SystemUpdatePolicyType,InstallWindowed,keep, +E,23,android/app/admin/SystemUpdatePolicy.TYPE_POSTPONE,3,Android.App.Admin.SystemUpdatePolicyType,Postpone,keep, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_COMBINED_FREEZE_PERIOD_TOO_CLOSE,6,Android.App.Admin.SystemUpdatePolicyErrorCode,CombinedFreezePeriodTooClose,remove, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_COMBINED_FREEZE_PERIOD_TOO_LONG,5,Android.App.Admin.SystemUpdatePolicyErrorCode,CombinedFreezePeriodTooLong,remove, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_DUPLICATE_OR_OVERLAP,2,Android.App.Admin.SystemUpdatePolicyErrorCode,DuplicateOrOverlap,remove, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_NEW_FREEZE_PERIOD_TOO_CLOSE,4,Android.App.Admin.SystemUpdatePolicyErrorCode,NewFreezePeriodTooClose,remove, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_NEW_FREEZE_PERIOD_TOO_LONG,3,Android.App.Admin.SystemUpdatePolicyErrorCode,NewFreezePeriodTooLong,remove, E,28,android/app/admin/SystemUpdatePolicy$ValidationFailedException.ERROR_UNKNOWN,1,Android.App.Admin.SystemUpdatePolicyErrorCode,Unknown,remove, -E,23,android/app/admin/SystemUpdatePolicy.TYPE_INSTALL_AUTOMATIC,1,Android.App.Admin.SystemUpdatePolicyType,InstallAutomatic,keep, -E,23,android/app/admin/SystemUpdatePolicy.TYPE_INSTALL_WINDOWED,2,Android.App.Admin.SystemUpdatePolicyType,InstallWindowed,keep, -E,23,android/app/admin/SystemUpdatePolicy.TYPE_POSTPONE,3,Android.App.Admin.SystemUpdatePolicyType,Postpone,keep, E,10,android/app/AlarmManager.ELAPSED_REALTIME,3,Android.App.AlarmType,ElapsedRealtime,keep, E,10,android/app/AlarmManager.ELAPSED_REALTIME_WAKEUP,2,Android.App.AlarmType,ElapsedRealtimeWakeup,keep, E,10,android/app/AlarmManager.RTC,1,Android.App.AlarmType,Rtc,keep, E,10,android/app/AlarmManager.RTC_WAKEUP,0,Android.App.AlarmType,RtcWakeup,keep, -?,15,android/app/AlertDialog.THEME_DEVICE_DEFAULT_DARK,4,,,, -?,15,android/app/AlertDialog.THEME_DEVICE_DEFAULT_LIGHT,5,,,, -?,15,android/app/AlertDialog.THEME_HOLO_DARK,2,,,, -?,15,android/app/AlertDialog.THEME_HOLO_LIGHT,3,,,, -?,15,android/app/AlertDialog.THEME_TRADITIONAL,1,,,, +I,15,android/app/AlertDialog.THEME_DEVICE_DEFAULT_DARK,4,,,, +I,15,android/app/AlertDialog.THEME_DEVICE_DEFAULT_LIGHT,5,,,, +I,15,android/app/AlertDialog.THEME_HOLO_DARK,2,,,, +I,15,android/app/AlertDialog.THEME_HOLO_LIGHT,3,,,, +I,15,android/app/AlertDialog.THEME_TRADITIONAL,1,,,, E,15,android/app/ApplicationErrorReport.TYPE_ANR,2,Android.App.ApplicationErrorReportType,Anr,remove, E,15,android/app/ApplicationErrorReport.TYPE_BATTERY,3,Android.App.ApplicationErrorReportType,Battery,remove, E,15,android/app/ApplicationErrorReport.TYPE_CRASH,1,Android.App.ApplicationErrorReportType,Crash,remove, @@ -334,7 +354,39 @@ E,19,android/app/AppOpsManager.MODE_ERRORED,2,Android.App.AppOpsManagerMode,Erro E,29,android/app/AppOpsManager.MODE_FOREGROUND,4,Android.App.AppOpsManagerMode,Foreground,remove, E,19,android/app/AppOpsManager.MODE_IGNORED,1,Android.App.AppOpsManagerMode,Ignored,remove, E,29,android/app/AppOpsManager.WATCH_FOREGROUND_CHANGES,1,Android.App.WatchForeground,Changes,remove, -?,23,android/app/assist/AssistStructure$ViewNode.TEXT_COLOR_UNDEFINED,1,,,, +E,31,android/app/appsearch/AppSearchResult.RESULT_INTERNAL_ERROR,2,Android.App.Appsearch.AppSearchResultCode,InternalError,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_INVALID_ARGUMENT,3,Android.App.Appsearch.AppSearchResultCode,InvalidArgument,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_INVALID_SCHEMA,7,Android.App.Appsearch.AppSearchResultCode,InvalidSchema,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_IO_ERROR,4,Android.App.Appsearch.AppSearchResultCode,IoError,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_NOT_FOUND,6,Android.App.Appsearch.AppSearchResultCode,NotFound,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_OK,0,Android.App.Appsearch.AppSearchResultCode,Ok,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_OUT_OF_SPACE,5,Android.App.Appsearch.AppSearchResultCode,OutOfSpace,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_SECURITY_ERROR,8,Android.App.Appsearch.AppSearchResultCode,SecurityError,remove, +E,31,android/app/appsearch/AppSearchResult.RESULT_UNKNOWN_ERROR,1,Android.App.Appsearch.AppSearchResultCode,UnknownError,remove, +E,31,android/app/appsearch/AppSearchSchema$PropertyConfig.CARDINALITY_OPTIONAL,2,Android.App.Appsearch.Cardinality,Optional,remove, +E,31,android/app/appsearch/AppSearchSchema$PropertyConfig.CARDINALITY_REPEATED,1,Android.App.Appsearch.Cardinality,Repeated,remove, +E,31,android/app/appsearch/AppSearchSchema$PropertyConfig.CARDINALITY_REQUIRED,3,Android.App.Appsearch.Cardinality,Required,remove, +E,31,android/app/appsearch/AppSearchSchema$StringPropertyConfig.INDEXING_TYPE_EXACT_TERMS,1,Android.App.AppSearch.IndexingType,ExactTerms,remove, +E,31,android/app/appsearch/AppSearchSchema$StringPropertyConfig.INDEXING_TYPE_NONE,0,Android.App.AppSearch.IndexingType,None,remove, +E,31,android/app/appsearch/AppSearchSchema$StringPropertyConfig.INDEXING_TYPE_PREFIXES,2,Android.App.AppSearch.IndexingType,Prefixes,remove, +E,31,android/app/appsearch/AppSearchSchema$StringPropertyConfig.TOKENIZER_TYPE_NONE,0,Android.App.AppSearch.TokenizerType,None,remove, +E,31,android/app/appsearch/AppSearchSchema$StringPropertyConfig.TOKENIZER_TYPE_PLAIN,1,Android.App.AppSearch.TokenizerType,Plain,remove, +A,31,,0,Android.App.AppSearch.GroupingType,None,remove, +E,31,android/app/appsearch/SearchSpec.GROUPING_TYPE_PER_NAMESPACE,2,Android.App.AppSearch.GroupingType,PerNamespace,remove, +E,31,android/app/appsearch/SearchSpec.GROUPING_TYPE_PER_PACKAGE,1,Android.App.AppSearch.GroupingType,PerPackage,remove, +E,31,android/app/appsearch/SearchSpec.ORDER_ASCENDING,1,Android.App.AppSearch.SearchOrder,Ascending,remove, +E,31,android/app/appsearch/SearchSpec.ORDER_DESCENDING,0,Android.App.AppSearch.SearchOrder,Descending,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_CREATION_TIMESTAMP,2,Android.App.AppSearch.RankingStrategy,CreationTimestamp,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_DOCUMENT_SCORE,1,Android.App.AppSearch.RankingStrategy,DocumentScore,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_NONE,0,Android.App.AppSearch.RankingStrategy,None,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_RELEVANCE_SCORE,3,Android.App.AppSearch.RankingStrategy,RelevanceScore,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_SYSTEM_USAGE_COUNT,6,Android.App.AppSearch.RankingStrategy,SystemUsageCount,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_SYSTEM_USAGE_LAST_USED_TIMESTAMP,7,Android.App.AppSearch.RankingStrategy,SystemUsageLastUsedTimestamp,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_USAGE_COUNT,4,Android.App.AppSearch.RankingStrategy,UsageCount,remove, +E,31,android/app/appsearch/SearchSpec.RANKING_STRATEGY_USAGE_LAST_USED_TIMESTAMP,5,Android.App.AppSearch.RankingStrategy,UsageLastUsedTimestamp,remove, +E,31,android/app/appsearch/SearchSpec.TERM_MATCH_EXACT_ONLY,1,Android.App.AppSearch.SearchTermMatch,ExactOnly,remove, +E,31,android/app/appsearch/SearchSpec.TERM_MATCH_PREFIX,2,Android.App.AppSearch.SearchTermMatch,Prefix,remove, +I,23,android/app/assist/AssistStructure$ViewNode.TEXT_COLOR_UNDEFINED,1,,,, E,23,android/app/assist/AssistStructure$ViewNode.TEXT_STYLE_BOLD,1,Android.App.Assist.AssistTextStyle,Bold,keep, E,23,android/app/assist/AssistStructure$ViewNode.TEXT_STYLE_ITALIC,2,Android.App.Assist.AssistTextStyle,Italic,keep, E,23,android/app/assist/AssistStructure$ViewNode.TEXT_STYLE_STRIKE_THRU,8,Android.App.Assist.AssistTextStyle,StrikeThru,keep, @@ -347,12 +399,6 @@ E,15,android/app/DialogFragment.STYLE_NO_FRAME,2,Android.App.DialogFragmentStyle E,15,android/app/DialogFragment.STYLE_NO_INPUT,3,Android.App.DialogFragmentStyle,NoInput,keep, E,15,android/app/DialogFragment.STYLE_NO_TITLE,1,Android.App.DialogFragmentStyle,NoTitle,keep, E,15,android/app/DialogFragment.STYLE_NORMAL,0,Android.App.DialogFragmentStyle,Normal,keep, -E,10,android/app/DownloadManager$Request.NETWORK_MOBILE,1,Android.App.DownloadNetwork,Mobile,remove, -E,10,android/app/DownloadManager$Request.NETWORK_WIFI,2,Android.App.DownloadNetwork,Wifi,remove, -E,15,android/app/DownloadManager$Request.VISIBILITY_HIDDEN,2,Android.App.DownloadVisibility,Hidden,remove, -E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE,0,Android.App.DownloadVisibility,Visible,remove, -E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED,1,Android.App.DownloadVisibility,VisibleNotifyCompleted,remove, -E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION,3,Android.App.DownloadVisibility,VisibleNotifyOnlyCompletion,remove, E,10,android/app/DownloadManager.ERROR_CANNOT_RESUME,1008,Android.App.DownloadError,CannotResume,remove, E,10,android/app/DownloadManager.ERROR_DEVICE_NOT_FOUND,1007,Android.App.DownloadError,DeviceNotFound,remove, E,10,android/app/DownloadManager.ERROR_FILE_ALREADY_EXISTS,1009,Android.App.DownloadError,FileAlreadyExists,remove, @@ -371,6 +417,12 @@ E,10,android/app/DownloadManager.STATUS_PAUSED,4,Android.App.DownloadStatus,Paus E,10,android/app/DownloadManager.STATUS_PENDING,1,Android.App.DownloadStatus,Pending,remove, E,10,android/app/DownloadManager.STATUS_RUNNING,2,Android.App.DownloadStatus,Running,remove, E,10,android/app/DownloadManager.STATUS_SUCCESSFUL,8,Android.App.DownloadStatus,Successful,remove, +E,10,android/app/DownloadManager$Request.NETWORK_MOBILE,1,Android.App.DownloadNetwork,Mobile,remove, +E,10,android/app/DownloadManager$Request.NETWORK_WIFI,2,Android.App.DownloadNetwork,Wifi,remove, +E,15,android/app/DownloadManager$Request.VISIBILITY_HIDDEN,2,Android.App.DownloadVisibility,Hidden,remove, +E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE,0,Android.App.DownloadVisibility,Visible,remove, +E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED,1,Android.App.DownloadVisibility,VisibleNotifyCompleted,remove, +E,15,android/app/DownloadManager$Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION,3,Android.App.DownloadVisibility,VisibleNotifyOnlyCompletion,remove, A,0,,0,Android.App.PopBackStackFlags,None,remove,flags E,15,android/app/FragmentManager.POP_BACK_STACK_INCLUSIVE,1,Android.App.PopBackStackFlags,Inclusive,remove,flags E,15,android/app/FragmentTransaction.TRANSIT_ENTER_MASK,4096,Android.App.FragmentTransit,EnterMask,keep, @@ -380,44 +432,42 @@ E,15,android/app/FragmentTransaction.TRANSIT_FRAGMENT_FADE,4099,Android.App.Frag E,15,android/app/FragmentTransaction.TRANSIT_FRAGMENT_OPEN,4097,Android.App.FragmentTransit,FragmentOpen,keep, E,15,android/app/FragmentTransaction.TRANSIT_NONE,0,Android.App.FragmentTransit,None,keep, E,15,android/app/FragmentTransaction.TRANSIT_UNSET,-1,Android.App.FragmentTransit,Unset,keep, -A,0,,0,Android.App.Job.TriggerContentUriFlags,None,remove, -E,24,android/app/job/JobInfo$TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS,1,Android.App.Job.TriggerContentUriFlags,NotifyForDescendants,remove, +E,31,android/app/GameManager.GAME_MODE_BATTERY,3,Android.App.GameMode,Battery,remove, +E,31,android/app/GameManager.GAME_MODE_PERFORMANCE,2,Android.App.GameMode,Performance,remove, +E,31,android/app/GameManager.GAME_MODE_STANDARD,1,Android.App.GameMode,Standard,remove, +E,31,android/app/GameManager.GAME_MODE_UNSUPPORTED,0,Android.App.GameMode,Unsupported,remove, E,21,android/app/job/JobInfo.BACKOFF_POLICY_EXPONENTIAL,1,Android.App.Job.BackoffPolicy,Exponential,keep, E,21,android/app/job/JobInfo.BACKOFF_POLICY_LINEAR,0,Android.App.Job.BackoffPolicy,Linear,keep, -?,28,android/app/job/JobInfo.NETWORK_BYTES_UNKNOWN,-1,,,, +I,28,android/app/job/JobInfo.NETWORK_BYTES_UNKNOWN,-1,,,, E,21,android/app/job/JobInfo.NETWORK_TYPE_ANY,1,Android.App.Job.NetworkType,Any,keep, E,28,android/app/job/JobInfo.NETWORK_TYPE_CELLULAR,4,Android.App.Job.NetworkType,Cellular,keep, E,26,android/app/job/JobInfo.NETWORK_TYPE_METERED,4,Android.App.Job.NetworkType,Metered,keep, E,21,android/app/job/JobInfo.NETWORK_TYPE_NONE,0,Android.App.Job.NetworkType,None,keep, E,24,android/app/job/JobInfo.NETWORK_TYPE_NOT_ROAMING,3,Android.App.Job.NetworkType,NotRoaming,keep, E,21,android/app/job/JobInfo.NETWORK_TYPE_UNMETERED,2,Android.App.Job.NetworkType,Unmetered,keep, -?,21,android/app/job/JobScheduler.RESULT_FAILURE,0,,,, -?,21,android/app/job/JobScheduler.RESULT_SUCCESS,1,,,, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_ARCHIVE,5,Android.App.SemanticAction,Archive,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_CALL,10,Android.App.SemanticAction,Call,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_DELETE,4,Android.App.SemanticAction,Delete,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_MARK_AS_READ,2,Android.App.SemanticAction,MarkAsRead,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_MARK_AS_UNREAD,3,Android.App.SemanticAction,MarkAsUnread,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_MUTE,6,Android.App.SemanticAction,Mute,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_NONE,0,Android.App.SemanticAction,None,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_REPLY,1,Android.App.SemanticAction,Reply,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_THUMBS_DOWN,9,Android.App.SemanticAction,ThumbsDown,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_THUMBS_UP,8,Android.App.SemanticAction,ThumbsUp,remove, -E,28,android/app/Notification$Action.SEMANTIC_ACTION_UNMUTE,7,Android.App.SemanticAction,Unmute,remove, -?,24,android/app/Notification$MessagingStyle.MAXIMUM_RETAINED_MESSAGES,25,,,, -?,22,android/app/Notification$WearableExtender.SCREEN_TIMEOUT_LONG,-1,,,, -?,22,android/app/Notification$WearableExtender.SCREEN_TIMEOUT_SHORT,0,,,, -E,20,android/app/Notification$WearableExtender.SIZE_DEFAULT,0,Android.App.WearableSizePreset,Default,keep, -E,20,android/app/Notification$WearableExtender.SIZE_FULL_SCREEN,5,Android.App.WearableSizePreset,FullScreen,keep, -E,20,android/app/Notification$WearableExtender.SIZE_LARGE,4,Android.App.WearableSizePreset,Large,keep, -E,20,android/app/Notification$WearableExtender.SIZE_MEDIUM,3,Android.App.WearableSizePreset,Medium,keep, -E,20,android/app/Notification$WearableExtender.SIZE_SMALL,2,Android.App.WearableSizePreset,Small,keep, -E,20,android/app/Notification$WearableExtender.SIZE_XSMALL,1,Android.App.WearableSizePreset,Xsmall,keep, -?,20,android/app/Notification$WearableExtender.UNSET_ACTION_INDEX,-1,,,, +A,0,,0,Android.App.Job.TriggerContentUriFlags,None,remove, +E,24,android/app/job/JobInfo$TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS,1,Android.App.Job.TriggerContentUriFlags,NotifyForDescendants,remove, +E,31,android/app/job/JobParameters.STOP_REASON_APP_STANDBY,12,Android.App.Job.StopReason,AppStandby,remove, +E,31,android/app/job/JobParameters.STOP_REASON_BACKGROUND_RESTRICTION,11,Android.App.Job.StopReason,BackgroundRestriction,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CANCELLED_BY_APP,1,Android.App.Job.StopReason,CancelledByApp,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CONSTRAINT_BATTERY_NOT_LOW,5,Android.App.Job.StopReason,ConstraintBatteryNotLow,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CONSTRAINT_CHARGING,6,Android.App.Job.StopReason,ConstraintCharging,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CONSTRAINT_CONNECTIVITY,7,Android.App.Job.StopReason,ConstraintConnectivity,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CONSTRAINT_DEVICE_IDLE,8,Android.App.Job.StopReason,ConstraintDeviceIdle,remove, +E,31,android/app/job/JobParameters.STOP_REASON_CONSTRAINT_STORAGE_NOT_LOW,9,Android.App.Job.StopReason,ConstraintStorageNotLow,remove, +E,31,android/app/job/JobParameters.STOP_REASON_DEVICE_STATE,4,Android.App.Job.StopReason,DeviceState,remove, +E,31,android/app/job/JobParameters.STOP_REASON_PREEMPT,2,Android.App.Job.StopReason,Preempt,remove, +E,31,android/app/job/JobParameters.STOP_REASON_QUOTA,10,Android.App.Job.StopReason,Quota,remove, +E,31,android/app/job/JobParameters.STOP_REASON_SYSTEM_PROCESSING,14,Android.App.Job.StopReason,SystemProcessing,remove, +E,31,android/app/job/JobParameters.STOP_REASON_TIMEOUT,3,Android.App.Job.StopReason,Timeout,remove, +E,31,android/app/job/JobParameters.STOP_REASON_UNDEFINED,0,Android.App.Job.StopReason,Undefined,remove, +E,31,android/app/job/JobParameters.STOP_REASON_USER,13,Android.App.Job.StopReason,User,remove, +I,21,android/app/job/JobScheduler.RESULT_FAILURE,0,,,, +I,21,android/app/job/JobScheduler.RESULT_SUCCESS,1,,,, E,26,android/app/Notification.BADGE_ICON_LARGE,2,Android.App.NotificationBadgeIconType,Large,keep, E,26,android/app/Notification.BADGE_ICON_NONE,0,Android.App.NotificationBadgeIconType,None,keep, E,26,android/app/Notification.BADGE_ICON_SMALL,1,Android.App.NotificationBadgeIconType,Small,keep, -?,21,android/app/Notification.COLOR_DEFAULT,0,,,, +I,21,android/app/Notification.COLOR_DEFAULT,0,,,, E,10,android/app/Notification.DEFAULT_ALL,-1,Android.App.NotificationDefaults,All,keep,flags E,10,android/app/Notification.DEFAULT_LIGHTS,4,Android.App.NotificationDefaults,Lights,keep,flags E,10,android/app/Notification.DEFAULT_SOUND,1,Android.App.NotificationDefaults,Sound,keep,flags @@ -433,6 +483,9 @@ E,10,android/app/Notification.FLAG_NO_CLEAR,32,Android.App.NotificationFlags,NoC E,10,android/app/Notification.FLAG_ONGOING_EVENT,2,Android.App.NotificationFlags,OngoingEvent,keep,flags E,10,android/app/Notification.FLAG_ONLY_ALERT_ONCE,8,Android.App.NotificationFlags,OnlyAlertOnce,keep,flags E,10,android/app/Notification.FLAG_SHOW_LIGHTS,1,Android.App.NotificationFlags,ShowLights,keep,flags +E,31,android/app/Notification.FOREGROUND_SERVICE_DEFAULT,0,Android.App.NotificationForegroundService,Default,remove, +E,31,android/app/Notification.FOREGROUND_SERVICE_DEFERRED,2,Android.App.NotificationForegroundService,Deferred,remove, +E,31,android/app/Notification.FOREGROUND_SERVICE_IMMEDIATE,1,Android.App.NotificationForegroundService,Immediate,remove, E,26,android/app/Notification.GROUP_ALERT_ALL,0,Android.App.NotificationGroupAlertBehavior,All,keep, E,26,android/app/Notification.GROUP_ALERT_CHILDREN,2,Android.App.NotificationGroupAlertBehavior,Children,keep, E,26,android/app/Notification.GROUP_ALERT_SUMMARY,1,Android.App.NotificationGroupAlertBehavior,Summary,keep, @@ -445,6 +498,46 @@ E,1,android/app/Notification.STREAM_DEFAULT,-1,Android.Media.Stream,Notification E,21,android/app/Notification.VISIBILITY_PRIVATE,0,Android.App.NotificationVisibility,Private,keep, E,21,android/app/Notification.VISIBILITY_PUBLIC,1,Android.App.NotificationVisibility,Public,keep, E,21,android/app/Notification.VISIBILITY_SECRET,-1,Android.App.NotificationVisibility,Secret,keep, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_ARCHIVE,5,Android.App.SemanticAction,Archive,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_CALL,10,Android.App.SemanticAction,Call,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_DELETE,4,Android.App.SemanticAction,Delete,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_MARK_AS_READ,2,Android.App.SemanticAction,MarkAsRead,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_MARK_AS_UNREAD,3,Android.App.SemanticAction,MarkAsUnread,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_MUTE,6,Android.App.SemanticAction,Mute,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_NONE,0,Android.App.SemanticAction,None,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_REPLY,1,Android.App.SemanticAction,Reply,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_THUMBS_DOWN,9,Android.App.SemanticAction,ThumbsDown,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_THUMBS_UP,8,Android.App.SemanticAction,ThumbsUp,remove, +E,28,android/app/Notification$Action.SEMANTIC_ACTION_UNMUTE,7,Android.App.SemanticAction,Unmute,remove, +I,24,android/app/Notification$MessagingStyle.MAXIMUM_RETAINED_MESSAGES,25,,,, +I,22,android/app/Notification$WearableExtender.SCREEN_TIMEOUT_LONG,-1,,,, +I,22,android/app/Notification$WearableExtender.SCREEN_TIMEOUT_SHORT,0,,,, +E,20,android/app/Notification$WearableExtender.SIZE_DEFAULT,0,Android.App.WearableSizePreset,Default,keep, +E,20,android/app/Notification$WearableExtender.SIZE_FULL_SCREEN,5,Android.App.WearableSizePreset,FullScreen,keep, +E,20,android/app/Notification$WearableExtender.SIZE_LARGE,4,Android.App.WearableSizePreset,Large,keep, +E,20,android/app/Notification$WearableExtender.SIZE_MEDIUM,3,Android.App.WearableSizePreset,Medium,keep, +E,20,android/app/Notification$WearableExtender.SIZE_SMALL,2,Android.App.WearableSizePreset,Small,keep, +E,20,android/app/Notification$WearableExtender.SIZE_XSMALL,1,Android.App.WearableSizePreset,Xsmall,keep, +I,20,android/app/Notification$WearableExtender.UNSET_ACTION_INDEX,-1,,,, +E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_DISABLED,2,Android.App.AutomaticRuleStatus,Disabled,remove, +E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_ENABLED,1,Android.App.AutomaticRuleStatus,Enabled,remove, +E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_REMOVED,3,Android.App.AutomaticRuleStatus,Removed,remove, +E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_UNKNOWN,-1,Android.App.AutomaticRuleStatus,Unknown,remove, +E,31,android/app/NotificationManager.BUBBLE_PREFERENCE_ALL,1,Android.App.NotificationBubblePreference,All,remove, +E,31,android/app/NotificationManager.BUBBLE_PREFERENCE_NONE,0,Android.App.NotificationBubblePreference,None,remove, +E,31,android/app/NotificationManager.BUBBLE_PREFERENCE_SELECTED,2,Android.App.NotificationBubblePreference,Selected,remove, +E,24,android/app/NotificationManager.IMPORTANCE_DEFAULT,3,Android.App.NotificationImportance,Default,remove, +E,24,android/app/NotificationManager.IMPORTANCE_HIGH,4,Android.App.NotificationImportance,High,remove, +E,24,android/app/NotificationManager.IMPORTANCE_LOW,2,Android.App.NotificationImportance,Low,remove, +E,24,android/app/NotificationManager.IMPORTANCE_MAX,5,Android.App.NotificationImportance,Max,remove, +E,24,android/app/NotificationManager.IMPORTANCE_MIN,1,Android.App.NotificationImportance,Min,remove, +E,24,android/app/NotificationManager.IMPORTANCE_NONE,0,Android.App.NotificationImportance,None,remove, +E,24,android/app/NotificationManager.IMPORTANCE_UNSPECIFIED,-1000,Android.App.NotificationImportance,Unspecified,remove, +E,23,android/app/NotificationManager.INTERRUPTION_FILTER_ALARMS,4,Android.App.InterruptionFilter,Alarms,keep, +E,23,android/app/NotificationManager.INTERRUPTION_FILTER_ALL,1,Android.App.InterruptionFilter,All,keep, +E,23,android/app/NotificationManager.INTERRUPTION_FILTER_NONE,3,Android.App.InterruptionFilter,None,keep, +E,23,android/app/NotificationManager.INTERRUPTION_FILTER_PRIORITY,2,Android.App.InterruptionFilter,Priority,keep, +E,23,android/app/NotificationManager.INTERRUPTION_FILTER_UNKNOWN,0,Android.App.InterruptionFilter,Unknown,keep, E,30,android/app/NotificationManager$Policy.CONVERSATION_SENDERS_ANYONE,1,Android.App.ConversationSenders,Anyone,remove, E,30,android/app/NotificationManager$Policy.CONVERSATION_SENDERS_IMPORTANT,2,Android.App.ConversationSenders,Important,remove, E,30,android/app/NotificationManager$Policy.CONVERSATION_SENDERS_NONE,3,Android.App.ConversationSenders,None,remove, @@ -469,27 +562,25 @@ E,28,android/app/NotificationManager$Policy.SUPPRESSED_EFFECT_PEEK,16,Android.Ap E,24,android/app/NotificationManager$Policy.SUPPRESSED_EFFECT_SCREEN_OFF,1,Android.App.SuppressedEffects,ScreenOff,remove, E,24,android/app/NotificationManager$Policy.SUPPRESSED_EFFECT_SCREEN_ON,2,Android.App.SuppressedEffects,ScreenOn,remove, E,28,android/app/NotificationManager$Policy.SUPPRESSED_EFFECT_STATUS_BAR,32,Android.App.SuppressedEffects,StatusBar,remove, -E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_DISABLED,2,Android.App.AutomaticRuleStatus,Disabled,remove, -E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_ENABLED,1,Android.App.AutomaticRuleStatus,Enabled,remove, -E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_REMOVED,3,Android.App.AutomaticRuleStatus,Removed,remove, -E,30,android/app/NotificationManager.AUTOMATIC_RULE_STATUS_UNKNOWN,-1,Android.App.AutomaticRuleStatus,Unknown,remove, -E,24,android/app/NotificationManager.IMPORTANCE_DEFAULT,3,Android.App.NotificationImportance,Default,remove, -E,24,android/app/NotificationManager.IMPORTANCE_HIGH,4,Android.App.NotificationImportance,High,remove, -E,24,android/app/NotificationManager.IMPORTANCE_LOW,2,Android.App.NotificationImportance,Low,remove, -E,24,android/app/NotificationManager.IMPORTANCE_MAX,5,Android.App.NotificationImportance,Max,remove, -E,24,android/app/NotificationManager.IMPORTANCE_MIN,1,Android.App.NotificationImportance,Min,remove, -E,24,android/app/NotificationManager.IMPORTANCE_NONE,0,Android.App.NotificationImportance,None,remove, -E,24,android/app/NotificationManager.IMPORTANCE_UNSPECIFIED,-1000,Android.App.NotificationImportance,Unspecified,remove, -E,23,android/app/NotificationManager.INTERRUPTION_FILTER_ALARMS,4,Android.App.InterruptionFilter,Alarms,keep, -E,23,android/app/NotificationManager.INTERRUPTION_FILTER_ALL,1,Android.App.InterruptionFilter,All,keep, -E,23,android/app/NotificationManager.INTERRUPTION_FILTER_NONE,3,Android.App.InterruptionFilter,None,keep, -E,23,android/app/NotificationManager.INTERRUPTION_FILTER_PRIORITY,2,Android.App.InterruptionFilter,Priority,keep, -E,23,android/app/NotificationManager.INTERRUPTION_FILTER_UNKNOWN,0,Android.App.InterruptionFilter,Unknown,keep, E,10,android/app/PendingIntent.FLAG_CANCEL_CURRENT,268435456,Android.App.PendingIntentFlags,CancelCurrent,keep,flags E,23,android/app/PendingIntent.FLAG_IMMUTABLE,67108864,Android.App.PendingIntentFlags,Immutable,keep,flags +E,31,android/app/PendingIntent.FLAG_MUTABLE,33554432,Android.App.PendingIntentFlags,Mutable,remove,flags E,10,android/app/PendingIntent.FLAG_NO_CREATE,536870912,Android.App.PendingIntentFlags,NoCreate,keep,flags E,10,android/app/PendingIntent.FLAG_ONE_SHOT,1073741824,Android.App.PendingIntentFlags,OneShot,keep,flags E,10,android/app/PendingIntent.FLAG_UPDATE_CURRENT,134217728,Android.App.PendingIntentFlags,UpdateCurrent,keep,flags +E,31,android/app/people/ConversationStatus.ACTIVITY_ANNIVERSARY,2,Android.App.People.ConversationActivity,Anniversary,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_AUDIO,4,Android.App.People.ConversationActivity,Audio,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_BIRTHDAY,1,Android.App.People.ConversationActivity,Birthday,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_GAME,6,Android.App.People.ConversationActivity,Game,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_LOCATION,7,Android.App.People.ConversationActivity,Location,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_NEW_STORY,3,Android.App.People.ConversationActivity,NewStory,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_OTHER,0,Android.App.People.ConversationActivity,Other,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_UPCOMING_BIRTHDAY,8,Android.App.People.ConversationActivity,UpcomingBirthday,remove, +E,31,android/app/people/ConversationStatus.ACTIVITY_VIDEO,5,Android.App.People.ConversationActivity,Video,remove, +E,31,android/app/people/ConversationStatus.AVAILABILITY_AVAILABLE,0,Android.App.People.ConversationAvailability,Available,remove, +E,31,android/app/people/ConversationStatus.AVAILABILITY_BUSY,1,Android.App.People.ConversationAvailability,Busy,remove, +E,31,android/app/people/ConversationStatus.AVAILABILITY_OFFLINE,2,Android.App.People.ConversationAvailability,Offline,remove, +E,31,android/app/people/ConversationStatus.AVAILABILITY_UNKNOWN,-1,Android.App.People.ConversationAvailability,Unknown,remove, E,23,android/app/Policy.PRIORITY_SENDERS_ANY,0,Android.App.PolicyPrioritySendersType,PrioritySendersAny,remove, E,23,android/app/Policy.PRIORITY_SENDERS_CONTACTS,1,Android.App.PolicyPrioritySendersType,PrioritySendersContacts,remove, E,23,android/app/Policy.PRIORITY_SENDERS_STARRED,2,Android.App.PolicyPrioritySendersType,PrioritySendersStarred,remove, @@ -509,8 +600,8 @@ E,9,android/app/RunningAppProcessInfo.IMPORTANCE_PERCEPTIBLE,230,Android.App.Run E,3,android/app/RunningAppProcessInfo.IMPORTANCE_SERVICE,300,Android.App.RunningAppProcessInfoImportanceType,ImportanceService,remove, E,23,android/app/RunningAppProcessInfo.IMPORTANCE_TOP_SLEEPING,325,Android.App.RunningAppProcessInfoImportanceType,ImportanceTopSleeping,remove, E,3,android/app/RunningAppProcessInfo.IMPORTANCE_VISIBLE,200,Android.App.RunningAppProcessInfoImportanceType,ImportanceVisible,remove, -?,15,android/app/SearchManager.FLAG_QUERY_REFINEMENT,1,,,, -?,0,android/app/SearchManager.MENU_KEYCODE,47,,,, +I,15,android/app/SearchManager.FLAG_QUERY_REFINEMENT,1,,,, +I,0,android/app/SearchManager.MENU_KEYCODE,47,,,, E,10,android/app/Service.START_CONTINUATION_MASK,15,Android.App.StartCommandResult,ContinuationMask,keep,flags E,10,android/app/Service.START_FLAG_REDELIVERY,1,Android.App.StartCommandFlags,Redelivery,keep,flags E,10,android/app/Service.START_FLAG_RETRY,2,Android.App.StartCommandFlags,Retry,keep,flags @@ -522,6 +613,7 @@ E,24,android/app/Service.STOP_FOREGROUND_DETACH,2,Android.App.StopForegroundFlag E,24,android/app/Service.STOP_FOREGROUND_REMOVE,1,Android.App.StopForegroundFlags,Remove,remove, A,0,,0,Android.App.UiAutomationFlags,None,remove, E,24,android/app/UiAutomation.FLAG_DONT_SUPPRESS_ACCESSIBILITY_SERVICES,1,Android.App.UiAutomationFlags,DontSuppressAccessibilityServices,remove, +E,31,android/app/UiAutomation.FLAG_DONT_USE_ACCESSIBILITY,2,Android.App.UiAutomationFlags,DontUseAccessibility,remove, E,18,android/app/UiAutomation.ROTATION_FREEZE_0,0,Android.App.UiAutomationRotation,Freeze0,remove, E,18,android/app/UiAutomation.ROTATION_FREEZE_180,2,Android.App.UiAutomationRotation,Freeze180,remove, E,18,android/app/UiAutomation.ROTATION_FREEZE_270,3,Android.App.UiAutomationRotation,Freeze270,remove, @@ -549,10 +641,10 @@ E,24,android/app/usage/NetworkStats$Bucket.ROAMING_YES,2,Android.App.Usage.Netwo E,23,android/app/usage/NetworkStats$Bucket.STATE_ALL,-1,Android.App.Usage.NetworkUsageState,All,keep, E,23,android/app/usage/NetworkStats$Bucket.STATE_DEFAULT,1,Android.App.Usage.NetworkUsageState,Default,keep, E,23,android/app/usage/NetworkStats$Bucket.STATE_FOREGROUND,2,Android.App.Usage.NetworkUsageState,Foreground,keep, -?,24,android/app/usage/NetworkStats$Bucket.TAG_NONE,0,,,, -?,23,android/app/usage/NetworkStats$Bucket.UID_ALL,-1,,,, -?,23,android/app/usage/NetworkStats$Bucket.UID_REMOVED,-4,,,, -?,23,android/app/usage/NetworkStats$Bucket.UID_TETHERING,-5,,,, +I,24,android/app/usage/NetworkStats$Bucket.TAG_NONE,0,,,, +I,23,android/app/usage/NetworkStats$Bucket.UID_ALL,-1,,,, +I,23,android/app/usage/NetworkStats$Bucket.UID_REMOVED,-4,,,, +I,23,android/app/usage/NetworkStats$Bucket.UID_TETHERING,-5,,,, E,29,android/app/usage/UsageEvents$Event.ACTIVITY_PAUSED,2,Android.App.Usage.UsageEventType,ActivityPaused,keep, E,29,android/app/usage/UsageEvents$Event.ACTIVITY_RESUMED,1,Android.App.Usage.UsageEventType,ActivityResumed,keep, E,29,android/app/usage/UsageEvents$Event.ACTIVITY_STOPPED,23,Android.App.Usage.UsageEventType,ActivityStopped,keep, @@ -581,9 +673,11 @@ E,28,android/app/usage/UsageStatsManager.STANDBY_BUCKET_FREQUENT,30,Android.App. E,28,android/app/usage/UsageStatsManager.STANDBY_BUCKET_RARE,40,Android.App.Usage.StandbyBucket,Rare,remove, E,30,android/app/usage/UsageStatsManager.STANDBY_BUCKET_RESTRICTED,45,Android.App.Usage.UsageStatsInterval,Restricted,remove, E,28,android/app/usage/UsageStatsManager.STANDBY_BUCKET_WORKING_SET,20,Android.App.Usage.StandbyBucket,WorkingSet,remove, +E,31,android/app/WallpaperColors.HINT_SUPPORTS_DARK_TEXT,1,Android.App.WallpaperColorsHint,SupportsDarkText,remove,flags +E,31,android/app/WallpaperColors.HINT_SUPPORTS_DARK_THEME,2,Android.App.WallpaperColorsHint,SupportsDarkTheme,remove,flags E,24,android/app/WallpaperManager.FLAG_LOCK,2,Android.App.WallpaperManagerFlags,Lock,remove, E,24,android/app/WallpaperManager.FLAG_SYSTEM,1,Android.App.WallpaperManagerFlags,System,remove, -?,0,android/appwidget/AppWidgetManager.INVALID_APPWIDGET_ID,0,,,, +I,0,android/appwidget/AppWidgetManager.INVALID_APPWIDGET_ID,0,,,, E,15,android/appwidget/AppWidgetProviderInfo.RESIZE_BOTH,3,Android.Appwidget.ResizeMode,Both,keep, E,15,android/appwidget/AppWidgetProviderInfo.RESIZE_HORIZONTAL,1,Android.Appwidget.ResizeMode,Horizontal,keep, E,15,android/appwidget/AppWidgetProviderInfo.RESIZE_NONE,0,Android.Appwidget.ResizeMode,None,keep, @@ -591,11 +685,12 @@ E,15,android/appwidget/AppWidgetProviderInfo.RESIZE_VERTICAL,2,Android.Appwidget E,17,android/appwidget/AppWidgetProviderInfo.WIDGET_CATEGORY_HOME_SCREEN,1,Android.Appwidget.AppWidgetCategory,HomeScreen,remove, E,17,android/appwidget/AppWidgetProviderInfo.WIDGET_CATEGORY_KEYGUARD,2,Android.Appwidget.AppWidgetCategory,Keyguard,remove, E,21,android/appwidget/AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX,4,Android.Appwidget.AppWidgetCategory,Searchbox,remove, +E,31,android/appwidget/AppWidgetProviderInfo.WIDGET_FEATURE_CONFIGURATION_OPTIONAL,4,Android.Appwidget.WidgetFeatures,ConfigurationOptional,remove, E,28,android/appwidget/AppWidgetProviderInfo.WIDGET_FEATURE_HIDE_FROM_PICKER,2,Android.Appwidget.WidgetFeatures,HideFromPicker,remove, E,28,android/appwidget/AppWidgetProviderInfo.WIDGET_FEATURE_RECONFIGURABLE,1,Android.Appwidget.WidgetFeatures,Reconfigurable,remove, E,15,android/bluetooth/BluetoothA2dp.STATE_NOT_PLAYING,11,Android.Bluetooth.A2dpState,NotPlaying,remove, E,15,android/bluetooth/BluetoothA2dp.STATE_PLAYING,10,Android.Bluetooth.A2dpState,Playing,remove, -?,0,android/bluetooth/BluetoothAdapter.ERROR,-2147483648,,,, +I,0,android/bluetooth/BluetoothAdapter.ERROR,-2147483648,,,, E,10,android/bluetooth/BluetoothAdapter.SCAN_MODE_CONNECTABLE,21,Android.Bluetooth.ScanMode,Connectable,keep, E,10,android/bluetooth/BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE,23,Android.Bluetooth.ScanMode,ConnectableDiscoverable,keep, E,10,android/bluetooth/BluetoothAdapter.SCAN_MODE_NONE,20,Android.Bluetooth.ScanMode,None,keep, @@ -607,244 +702,233 @@ E,10,android/bluetooth/BluetoothAdapter.STATE_OFF,10,Android.Bluetooth.State,Off E,10,android/bluetooth/BluetoothAdapter.STATE_ON,12,Android.Bluetooth.State,On,keep, E,10,android/bluetooth/BluetoothAdapter.STATE_TURNING_OFF,13,Android.Bluetooth.State,TurningOff,keep, E,10,android/bluetooth/BluetoothAdapter.STATE_TURNING_ON,11,Android.Bluetooth.State,TurningOn,keep, -?,19,android/bluetooth/BluetoothAssignedNumbers.A_AND_D_ENGINEERING,105,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.A_AND_R_CAMBRIDGE,124,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.AAMP_OF_AMERICA,190,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ACCEL_SEMICONDUCTOR,74,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ACE_SENSOR,188,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ADIDAS,195,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ADVANCED_PANMOBIL_SYSTEMS,145,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.AIROHA_TECHNOLOGY,148,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ALCATEL,36,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ALPWISE,154,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.AMICCOM_ELECTRONICS,192,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.APLIX,189,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.APPLE,76,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.APT_LICENSING,79,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ARCHOS,207,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ARP_DEVICES,168,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ATHEROS_COMMUNICATIONS,69,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ATMEL,19,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.AUSTCO_COMMUNICATION_SYSTEMS,213,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.AUTONET_MOBILE,127,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.AVAGO,78,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.AVM_BERLIN,31,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BAND_XI_INTERNATIONAL,100,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.BANDSPEED,32,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BDE_TECHNOLOGY,180,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BEATS_ELECTRONICS,204,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BEAUTIFUL_ENTERPRISE,108,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BEKEY,178,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.BELKIN_INTERNATIONAL,92,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BINAURIC,203,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BIOSENTRONICS,219,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.BLUEGIGA,71,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BLUERADIOS,133,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.BLUETOOTH_SIG,63,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BLUETREK_TECHNOLOGIES,151,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BOSE,158,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.BRIARTEK,109,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.BROADCOM,15,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.C_TECHNOLOGIES,38,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.CAEN_RFID,170,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.CAMBRIDGE_SILICON_RADIO,10,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.CATC,52,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.CINETIX,175,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.CLARINOX_TECHNOLOGIES,179,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.COLORFY,156,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.COMMIL,51,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.CONEXANT_SYSTEMS,28,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.CONNECTBLUE,113,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.CONTINENTAL_AUTOMOTIVE,75,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.CONWISE_TECHNOLOGY,66,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.CREATIVE_TECHNOLOGY,118,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.DANLERS,225,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.DELORME_PUBLISHING_COMPANY,128,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.DEXCOM,208,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.DIALOG_SEMICONDUCTOR,210,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.DIGIANSWER,12,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ECLIPSE,53,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ECOTEST,136,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ELGATO_SYSTEMS,206,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.EM_MICROELECTRONIC_MARIN,90,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.EQUINOX_AG,134,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ERICSSON_TECHNOLOGY,0,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.EVLUMA,201,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.FREE2MOVE,83,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.FUNAI_ELECTRIC,144,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GARMIN_INTERNATIONAL,135,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.GCT_SEMICONDUCTOR,45,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GELO,200,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GENEQ,194,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GENERAL_MOTORS,104,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.GENNUM,59,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GEOFORCE,157,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GIBSON_GUITARS,98,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GN_NETCOM,103,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GN_RESOUND,137,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GOOGLE,224,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GREEN_THROTTLE_GAMES,172,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.GROUP_SENSE,115,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.HANLYNN_TECHNOLOGIES,123,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.HARMAN_INTERNATIONAL,87,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.HEWLETT_PACKARD,101,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.HITACHI,41,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.HOSIDEN,221,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.I_TECH_DYNAMIC_GLOBAL_DISTRIBUTION,153,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.IBM,3,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.INFINEON_TECHNOLOGIES,9,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.INGENIEUR_SYSTEMGRUPPE_ZAHN,171,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.INTEGRATED_SILICON_SOLUTION,65,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.INTEGRATED_SYSTEM_SOLUTION,57,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.INTEL,2,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.INVENTEL,30,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.IPEXTREME,61,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.J_AND_M,82,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.JAWBONE,138,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.JIANGSU_TOPPOWER_AUTOMOTIVE_ELECTRONICS,155,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.JOHNSON_CONTROLS,185,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.KAWANTECH,212,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.KC_TECHNOLOGY,22,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.KENSINGTON_COMPUTER_PRODUCTS_GROUP,160,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.LAIRD_TECHNOLOGIES,119,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.LESSWIRE,121,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.LG_ELECTRONICS,196,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.LINAK,164,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.LUCENT,7,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.LUDUS_HELSINKI,132,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MACRONIX,44,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MAGNETI_MARELLI,169,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MANSELLA,33,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MARVELL,72,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MATSUSHITA_ELECTRIC,58,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MC10,202,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MEDIATEK,70,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MESO_INTERNATIONAL,182,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.META_WATCH,163,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MEWTEL_TECHNOLOGY,47,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MICOMMAND,99,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MICROCHIP_TECHNOLOGY,205,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MICROSOFT,6,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MINDTREE,106,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MISFIT_WEARABLES,223,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MITEL_SEMICONDUCTOR,16,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MITSUBISHI_ELECTRIC,20,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MOBILIAN_CORPORATION,55,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MONSTER,112,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.MOTOROLA,8,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MSTAR_SEMICONDUCTOR,122,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.MUZIK,222,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.NEC,34,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.NEC_LIGHTING,149,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.NEWLOGIC,23,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.NIKE,120,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.NINE_SOLUTIONS,102,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.NOKIA_MOBILE_PHONES,1,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.NORDIC_SEMICONDUCTOR,89,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.NORWOOD_SYSTEMS,46,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ODM_TECHNOLOGY,150,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.OMEGAWAVE,174,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ONSET_COMPUTER,197,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.OPEN_INTERFACE,39,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.OTL_DYNAMICS,165,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.PANDA_OCEAN,166,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.PARROT,67,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.PARTHUS_TECHNOLOGIES,14,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.PASSIF_SEMICONDUCTOR,176,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.PETER_SYSTEMTECHNIK,173,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.PHILIPS_SEMICONDUCTORS,37,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.PLANTRONICS,85,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.POLAR_ELECTRO,107,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.POLAR_ELECTRO_EUROPE,209,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.PROCTER_AND_GAMBLE,220,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM,29,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_CONNECTED_EXPERIENCES,216,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_INNOVATION_CENTER,184,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_LABS,140,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_TECHNOLOGIES,215,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUINTIC,142,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.QUUPPA,199,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RALINK_TECHNOLOGY,91,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.RDA_MICROELECTRONICS,97,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.REALTEK_SEMICONDUCTOR,93,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RED_M,50,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RENESAS_TECHNOLOGY,54,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RESEARCH_IN_MOTION,60,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RF_MICRO_DEVICES,40,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RIVIERAWAVES,96,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ROHDE_AND_SCHWARZ,25,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.RTX_TELECOM,21,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.S_POWER_ELECTRONICS,187,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SAMSUNG_ELECTRONICS,117,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SARIS_CYCLING_GROUP,177,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SEERS_TECHNOLOGY,125,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SEIKO_EPSON,64,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SELFLY,198,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SEMILINK,226,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SENNHEISER_COMMUNICATIONS,130,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SHANGHAI_SUPER_SMART_ELECTRONICS,114,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SHENZHEN_EXCELSECU_DATA_TECHNOLOGY,193,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SIGNIA_TECHNOLOGIES,27,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SILICON_WAVE,11,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SIRF_TECHNOLOGY,80,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SOCKET_MOBILE,68,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SONY_ERICSSON,86,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SOUND_ID,111,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SPORTS_TRACKING_TECHNOLOGIES,126,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SR_MEDIZINELEKTRONIK,161,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ST_MICROELECTRONICS,48,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.STACCATO_COMMUNICATIONS,77,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.STALMART_TECHNOLOGY,191,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.STARKEY_LABORATORIES,186,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.STOLLMAN_E_PLUS_V,143,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.STONESTREET_ONE,94,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SUMMIT_DATA_COMMUNICATIONS,110,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SUUNTO,159,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.SWIRL_NETWORKS,181,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SYMBOL_TECHNOLOGIES,42,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SYNOPSYS,49,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.SYSTEMS_AND_CHIPS,62,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TAIXINGBANG_TECHNOLOGY,211,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TENOVIS,43,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TERAX,56,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TEXAS_INSTRUMENTS,13,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.THINKOPTICS,146,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.THREE_DIJOY,84,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.THREE_DSP,73,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.THREECOM,5,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TIMEKEEPING_SYSTEMS,131,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TIMEX_GROUP_USA,214,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TOPCORN_POSITIONING_SYSTEMS,139,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TOSHIBA,4,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TRANSILICA,24,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TRELAB,183,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TTPCOM,26,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.TXTR,218,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.TZERO_TECHNOLOGIES,81,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.UNIVERSAL_ELECTRONICS,147,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.VERTU,162,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.VISTEON,167,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.VIZIO,88,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.VOYETRA_TURTLE_BEACH,217,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.WAVEPLUS_TECHNOLOGY,35,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.WICENTRIC,95,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.WIDCOMM,17,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.WUXI_VIMICRO,129,,,, -?,15,android/bluetooth/BluetoothAssignedNumbers.ZEEVO,18,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ZER01_TV,152,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ZOMM,116,,,, -?,19,android/bluetooth/BluetoothAssignedNumbers.ZSCAN_SOFTWARE,141,,,, -E,10,android/bluetooth/BluetoothClass$Device$Major.AUDIO_VIDEO,1024,Android.Bluetooth.MajorDeviceClass,AudioVideo,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.COMPUTER,256,Android.Bluetooth.MajorDeviceClass,Computer,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.HEALTH,2304,Android.Bluetooth.MajorDeviceClass,Health,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.IMAGING,1536,Android.Bluetooth.MajorDeviceClass,Imaging,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.MISC,0,Android.Bluetooth.MajorDeviceClass,Misc,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.NETWORKING,768,Android.Bluetooth.MajorDeviceClass,Networking,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.PERIPHERAL,1280,Android.Bluetooth.MajorDeviceClass,Peripheral,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.PHONE,512,Android.Bluetooth.MajorDeviceClass,Phone,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.TOY,2048,Android.Bluetooth.MajorDeviceClass,Toy,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.UNCATEGORIZED,7936,Android.Bluetooth.MajorDeviceClass,Uncategorized,keep, -E,10,android/bluetooth/BluetoothClass$Device$Major.WEARABLE,1792,Android.Bluetooth.MajorDeviceClass,Wearable,keep, +I,19,android/bluetooth/BluetoothAssignedNumbers.A_AND_D_ENGINEERING,105,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.A_AND_R_CAMBRIDGE,124,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.AAMP_OF_AMERICA,190,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ACCEL_SEMICONDUCTOR,74,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ACE_SENSOR,188,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ADIDAS,195,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ADVANCED_PANMOBIL_SYSTEMS,145,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.AIROHA_TECHNOLOGY,148,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ALCATEL,36,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ALPWISE,154,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.AMICCOM_ELECTRONICS,192,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.APLIX,189,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.APPLE,76,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.APT_LICENSING,79,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ARCHOS,207,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ARP_DEVICES,168,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ATHEROS_COMMUNICATIONS,69,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ATMEL,19,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.AUSTCO_COMMUNICATION_SYSTEMS,213,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.AUTONET_MOBILE,127,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.AVAGO,78,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.AVM_BERLIN,31,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BAND_XI_INTERNATIONAL,100,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.BANDSPEED,32,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BDE_TECHNOLOGY,180,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BEATS_ELECTRONICS,204,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BEAUTIFUL_ENTERPRISE,108,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BEKEY,178,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.BELKIN_INTERNATIONAL,92,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BINAURIC,203,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BIOSENTRONICS,219,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.BLUEGIGA,71,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BLUERADIOS,133,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.BLUETOOTH_SIG,63,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BLUETREK_TECHNOLOGIES,151,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BOSE,158,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.BRIARTEK,109,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.BROADCOM,15,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.C_TECHNOLOGIES,38,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.CAEN_RFID,170,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.CAMBRIDGE_SILICON_RADIO,10,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.CATC,52,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.CINETIX,175,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.CLARINOX_TECHNOLOGIES,179,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.COLORFY,156,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.COMMIL,51,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.CONEXANT_SYSTEMS,28,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.CONNECTBLUE,113,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.CONTINENTAL_AUTOMOTIVE,75,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.CONWISE_TECHNOLOGY,66,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.CREATIVE_TECHNOLOGY,118,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.DANLERS,225,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.DELORME_PUBLISHING_COMPANY,128,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.DEXCOM,208,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.DIALOG_SEMICONDUCTOR,210,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.DIGIANSWER,12,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ECLIPSE,53,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ECOTEST,136,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ELGATO_SYSTEMS,206,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.EM_MICROELECTRONIC_MARIN,90,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.EQUINOX_AG,134,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ERICSSON_TECHNOLOGY,0,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.EVLUMA,201,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.FREE2MOVE,83,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.FUNAI_ELECTRIC,144,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GARMIN_INTERNATIONAL,135,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.GCT_SEMICONDUCTOR,45,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GELO,200,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GENEQ,194,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GENERAL_MOTORS,104,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.GENNUM,59,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GEOFORCE,157,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GIBSON_GUITARS,98,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GN_NETCOM,103,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GN_RESOUND,137,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GOOGLE,224,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GREEN_THROTTLE_GAMES,172,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.GROUP_SENSE,115,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.HANLYNN_TECHNOLOGIES,123,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.HARMAN_INTERNATIONAL,87,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.HEWLETT_PACKARD,101,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.HITACHI,41,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.HOSIDEN,221,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.I_TECH_DYNAMIC_GLOBAL_DISTRIBUTION,153,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.IBM,3,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.INFINEON_TECHNOLOGIES,9,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.INGENIEUR_SYSTEMGRUPPE_ZAHN,171,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.INTEGRATED_SILICON_SOLUTION,65,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.INTEGRATED_SYSTEM_SOLUTION,57,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.INTEL,2,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.INVENTEL,30,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.IPEXTREME,61,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.J_AND_M,82,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.JAWBONE,138,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.JIANGSU_TOPPOWER_AUTOMOTIVE_ELECTRONICS,155,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.JOHNSON_CONTROLS,185,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.KAWANTECH,212,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.KC_TECHNOLOGY,22,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.KENSINGTON_COMPUTER_PRODUCTS_GROUP,160,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.LAIRD_TECHNOLOGIES,119,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.LESSWIRE,121,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.LG_ELECTRONICS,196,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.LINAK,164,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.LUCENT,7,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.LUDUS_HELSINKI,132,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MACRONIX,44,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MAGNETI_MARELLI,169,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MANSELLA,33,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MARVELL,72,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MATSUSHITA_ELECTRIC,58,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MC10,202,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MEDIATEK,70,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MESO_INTERNATIONAL,182,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.META_WATCH,163,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MEWTEL_TECHNOLOGY,47,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MICOMMAND,99,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MICROCHIP_TECHNOLOGY,205,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MICROSOFT,6,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MINDTREE,106,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MISFIT_WEARABLES,223,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MITEL_SEMICONDUCTOR,16,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MITSUBISHI_ELECTRIC,20,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MOBILIAN_CORPORATION,55,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MONSTER,112,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.MOTOROLA,8,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MSTAR_SEMICONDUCTOR,122,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.MUZIK,222,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.NEC,34,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.NEC_LIGHTING,149,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.NEWLOGIC,23,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.NIKE,120,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.NINE_SOLUTIONS,102,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.NOKIA_MOBILE_PHONES,1,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.NORDIC_SEMICONDUCTOR,89,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.NORWOOD_SYSTEMS,46,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ODM_TECHNOLOGY,150,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.OMEGAWAVE,174,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ONSET_COMPUTER,197,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.OPEN_INTERFACE,39,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.OTL_DYNAMICS,165,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.PANDA_OCEAN,166,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.PARROT,67,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.PARTHUS_TECHNOLOGIES,14,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.PASSIF_SEMICONDUCTOR,176,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.PETER_SYSTEMTECHNIK,173,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.PHILIPS_SEMICONDUCTORS,37,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.PLANTRONICS,85,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.POLAR_ELECTRO,107,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.POLAR_ELECTRO_EUROPE,209,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.PROCTER_AND_GAMBLE,220,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM,29,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_CONNECTED_EXPERIENCES,216,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_INNOVATION_CENTER,184,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_LABS,140,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUALCOMM_TECHNOLOGIES,215,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUINTIC,142,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.QUUPPA,199,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RALINK_TECHNOLOGY,91,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.RDA_MICROELECTRONICS,97,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.REALTEK_SEMICONDUCTOR,93,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RED_M,50,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RENESAS_TECHNOLOGY,54,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RESEARCH_IN_MOTION,60,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RF_MICRO_DEVICES,40,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RIVIERAWAVES,96,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ROHDE_AND_SCHWARZ,25,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.RTX_TELECOM,21,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.S_POWER_ELECTRONICS,187,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SAMSUNG_ELECTRONICS,117,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SARIS_CYCLING_GROUP,177,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SEERS_TECHNOLOGY,125,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SEIKO_EPSON,64,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SELFLY,198,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SEMILINK,226,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SENNHEISER_COMMUNICATIONS,130,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SHANGHAI_SUPER_SMART_ELECTRONICS,114,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SHENZHEN_EXCELSECU_DATA_TECHNOLOGY,193,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SIGNIA_TECHNOLOGIES,27,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SILICON_WAVE,11,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SIRF_TECHNOLOGY,80,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SOCKET_MOBILE,68,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SONY_ERICSSON,86,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SOUND_ID,111,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SPORTS_TRACKING_TECHNOLOGIES,126,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SR_MEDIZINELEKTRONIK,161,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ST_MICROELECTRONICS,48,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.STACCATO_COMMUNICATIONS,77,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.STALMART_TECHNOLOGY,191,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.STARKEY_LABORATORIES,186,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.STOLLMAN_E_PLUS_V,143,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.STONESTREET_ONE,94,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SUMMIT_DATA_COMMUNICATIONS,110,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SUUNTO,159,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.SWIRL_NETWORKS,181,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SYMBOL_TECHNOLOGIES,42,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SYNOPSYS,49,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.SYSTEMS_AND_CHIPS,62,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TAIXINGBANG_TECHNOLOGY,211,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TENOVIS,43,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TERAX,56,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TEXAS_INSTRUMENTS,13,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.THINKOPTICS,146,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.THREE_DIJOY,84,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.THREE_DSP,73,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.THREECOM,5,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TIMEKEEPING_SYSTEMS,131,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TIMEX_GROUP_USA,214,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TOPCORN_POSITIONING_SYSTEMS,139,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TOSHIBA,4,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TRANSILICA,24,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TRELAB,183,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TTPCOM,26,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.TXTR,218,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.TZERO_TECHNOLOGIES,81,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.UNIVERSAL_ELECTRONICS,147,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.VERTU,162,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.VISTEON,167,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.VIZIO,88,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.VOYETRA_TURTLE_BEACH,217,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.WAVEPLUS_TECHNOLOGY,35,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.WICENTRIC,95,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.WIDCOMM,17,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.WUXI_VIMICRO,129,,,, +I,15,android/bluetooth/BluetoothAssignedNumbers.ZEEVO,18,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ZER01_TV,152,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ZOMM,116,,,, +I,19,android/bluetooth/BluetoothAssignedNumbers.ZSCAN_SOFTWARE,141,,,, E,10,android/bluetooth/BluetoothClass$Device.AUDIO_VIDEO_CAMCORDER,1076,Android.Bluetooth.DeviceClass,AudioVideoCamcorder,remove, E,10,android/bluetooth/BluetoothClass$Device.AUDIO_VIDEO_CAR_AUDIO,1056,Android.Bluetooth.DeviceClass,AudioVideoCarAudio,remove, E,10,android/bluetooth/BluetoothClass$Device.AUDIO_VIDEO_HANDSFREE,1032,Android.Bluetooth.DeviceClass,AudioVideoHandsfree,remove, @@ -895,6 +979,17 @@ E,10,android/bluetooth/BluetoothClass$Device.WEARABLE_JACKET,1804,Android.Blueto E,10,android/bluetooth/BluetoothClass$Device.WEARABLE_PAGER,1800,Android.Bluetooth.DeviceClass,WearablePager,remove, E,10,android/bluetooth/BluetoothClass$Device.WEARABLE_UNCATEGORIZED,1792,Android.Bluetooth.DeviceClass,WearableUncategorized,remove, E,10,android/bluetooth/BluetoothClass$Device.WEARABLE_WRIST_WATCH,1796,Android.Bluetooth.DeviceClass,WearableWristWatch,remove, +E,10,android/bluetooth/BluetoothClass$Device$Major.AUDIO_VIDEO,1024,Android.Bluetooth.MajorDeviceClass,AudioVideo,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.COMPUTER,256,Android.Bluetooth.MajorDeviceClass,Computer,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.HEALTH,2304,Android.Bluetooth.MajorDeviceClass,Health,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.IMAGING,1536,Android.Bluetooth.MajorDeviceClass,Imaging,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.MISC,0,Android.Bluetooth.MajorDeviceClass,Misc,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.NETWORKING,768,Android.Bluetooth.MajorDeviceClass,Networking,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.PERIPHERAL,1280,Android.Bluetooth.MajorDeviceClass,Peripheral,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.PHONE,512,Android.Bluetooth.MajorDeviceClass,Phone,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.TOY,2048,Android.Bluetooth.MajorDeviceClass,Toy,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.UNCATEGORIZED,7936,Android.Bluetooth.MajorDeviceClass,Uncategorized,keep, +E,10,android/bluetooth/BluetoothClass$Device$Major.WEARABLE,1792,Android.Bluetooth.MajorDeviceClass,Wearable,keep, E,10,android/bluetooth/BluetoothClass$Service.AUDIO,2097152,Android.Bluetooth.ServiceClass,Audio,keep, E,10,android/bluetooth/BluetoothClass$Service.CAPTURE,524288,Android.Bluetooth.ServiceClass,Capture,keep, E,10,android/bluetooth/BluetoothClass$Service.INFORMATION,8388608,Android.Bluetooth.ServiceClass,Information,keep, @@ -904,6 +999,8 @@ E,10,android/bluetooth/BluetoothClass$Service.OBJECT_TRANSFER,1048576,Android.Bl E,10,android/bluetooth/BluetoothClass$Service.POSITIONING,65536,Android.Bluetooth.ServiceClass,Positioning,keep, E,10,android/bluetooth/BluetoothClass$Service.RENDER,262144,Android.Bluetooth.ServiceClass,Render,keep, E,10,android/bluetooth/BluetoothClass$Service.TELEPHONY,4194304,Android.Bluetooth.ServiceClass,Telephony,keep, +E,31,android/bluetooth/BluetoothDevice.ADDRESS_TYPE_PUBLIC,0,Android.Bluetooth.AddressType,Public,remove, +E,31,android/bluetooth/BluetoothDevice.ADDRESS_TYPE_RANDOM,1,Android.Bluetooth.AddressType,Random,remove, E,10,android/bluetooth/BluetoothDevice.BOND_BONDED,12,Android.Bluetooth.Bond,Bonded,keep, E,10,android/bluetooth/BluetoothDevice.BOND_BONDING,11,Android.Bluetooth.Bond,Bonding,keep, E,10,android/bluetooth/BluetoothDevice.BOND_NONE,10,Android.Bluetooth.Bond,None,keep, @@ -911,9 +1008,9 @@ E,18,android/bluetooth/BluetoothDevice.DEVICE_TYPE_CLASSIC,1,Android.Bluetooth.B E,18,android/bluetooth/BluetoothDevice.DEVICE_TYPE_DUAL,3,Android.Bluetooth.BluetoothDeviceType,Dual,remove, E,18,android/bluetooth/BluetoothDevice.DEVICE_TYPE_LE,2,Android.Bluetooth.BluetoothDeviceType,Le,remove, E,18,android/bluetooth/BluetoothDevice.DEVICE_TYPE_UNKNOWN,0,Android.Bluetooth.BluetoothDeviceType,Unknown,remove, -?,0,android/bluetooth/BluetoothDevice.ERROR,-2147483648,,,, -?,19,android/bluetooth/BluetoothDevice.PAIRING_VARIANT_PASSKEY_CONFIRMATION,2,,,, -?,19,android/bluetooth/BluetoothDevice.PAIRING_VARIANT_PIN,0,,,, +I,0,android/bluetooth/BluetoothDevice.ERROR,-2147483648,,,, +I,19,android/bluetooth/BluetoothDevice.PAIRING_VARIANT_PASSKEY_CONFIRMATION,2,,,, +I,19,android/bluetooth/BluetoothDevice.PAIRING_VARIANT_PIN,0,,,, E,26,android/bluetooth/BluetoothDevice.PHY_LE_1M,1,Android.Bluetooth.BluetoothPhy,Le1m,keep, E,26,android/bluetooth/BluetoothDevice.PHY_LE_1M_MASK,1,Android.Bluetooth.BluetoothPhy,Le1mMask,keep, E,26,android/bluetooth/BluetoothDevice.PHY_LE_2M,2,Android.Bluetooth.BluetoothPhy,Le2m,keep, @@ -996,13 +1093,19 @@ E,15,android/bluetooth/BluetoothHealth.STATE_CHANNEL_CONNECTED,2,Android.Bluetoo E,15,android/bluetooth/BluetoothHealth.STATE_CHANNEL_CONNECTING,1,Android.Bluetooth.HealthState,ChannelConnecting,remove, E,15,android/bluetooth/BluetoothHealth.STATE_CHANNEL_DISCONNECTED,0,Android.Bluetooth.HealthState,ChannelDisconnected,remove, E,15,android/bluetooth/BluetoothHealth.STATE_CHANNEL_DISCONNECTING,3,Android.Bluetooth.HealthState,ChannelDisconnecting,remove, -?,28,android/bluetooth/BluetoothHidDeviceAppQosSettings.MAX,-1,,,, +I,28,android/bluetooth/BluetoothHidDeviceAppQosSettings.MAX,-1,,,, E,28,android/bluetooth/BluetoothHidDeviceAppQosSettings.SERVICE_BEST_EFFORT,1,Android.Bluetooth.HidDeviceAppQosSettingsServiceType,BestEffort,remove, E,28,android/bluetooth/BluetoothHidDeviceAppQosSettings.SERVICE_GUARANTEED,2,Android.Bluetooth.HidDeviceAppQosSettingsServiceType,Guaranteed,remove, E,28,android/bluetooth/BluetoothHidDeviceAppQosSettings.SERVICE_NO_TRAFFIC,0,Android.Bluetooth.HidDeviceAppQosSettingsServiceType,NoTraffic,remove, E,23,android/bluetooth/BluetoothSocket.TYPE_L2CAP,3,Android.Bluetooth.BluetoothConnectionType,L2cap,keep, E,23,android/bluetooth/BluetoothSocket.TYPE_RFCOMM,1,Android.Bluetooth.BluetoothConnectionType,Rfcomm,keep, E,23,android/bluetooth/BluetoothSocket.TYPE_SCO,2,Android.Bluetooth.BluetoothConnectionType,Sco,keep, +E,31,android/bluetooth/BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ALLOWED,2,Android.Bluetooth.CurrentBluetoothStatusCodes,ErrorBluetoothNotAllowed,remove, +E,31,android/bluetooth/BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED,1,Android.Bluetooth.CurrentBluetoothStatusCodes,ErrorBluetoothNotEnabled,remove, +E,31,android/bluetooth/BluetoothStatusCodes.ERROR_DEVICE_NOT_BONDED,3,Android.Bluetooth.CurrentBluetoothStatusCodes,ErrorDeviceNotBonded,remove, +E,31,android/bluetooth/BluetoothStatusCodes.ERROR_MISSING_BLUETOOTH_CONNECT_PERMISSION,6,Android.Bluetooth.CurrentBluetoothStatusCodes,ErrorMissingBluetoothConnectPermission,remove, +E,31,android/bluetooth/BluetoothStatusCodes.ERROR_UNKNOWN,2147483647,Android.Bluetooth.CurrentBluetoothStatusCodes,ErrorUnknown,remove, +E,31,android/bluetooth/BluetoothStatusCodes.SUCCESS,0,Android.Bluetooth.CurrentBluetoothStatusCodes,Success,remove, E,21,android/bluetooth/le/AdvertiseCallback.ADVERTISE_FAILED_ALREADY_STARTED,3,Android.Bluetooth.LE.AdvertiseFailure,AlreadyStarted,keep, E,21,android/bluetooth/le/AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE,1,Android.Bluetooth.LE.AdvertiseFailure,DataTooLarge,keep, E,21,android/bluetooth/le/AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED,5,Android.Bluetooth.LE.AdvertiseFailure,FeatureUnsupported,keep, @@ -1021,11 +1124,11 @@ E,26,android/bluetooth/le/AdvertisingSetCallback.ADVERTISE_FAILED_FEATURE_UNSUPP E,26,android/bluetooth/le/AdvertisingSetCallback.ADVERTISE_FAILED_INTERNAL_ERROR,4,Android.Bluetooth.LE.AdvertiseResult,FailedInternalError,keep, E,26,android/bluetooth/le/AdvertisingSetCallback.ADVERTISE_FAILED_TOO_MANY_ADVERTISERS,2,Android.Bluetooth.LE.AdvertiseResult,FailedTooManyAdvertisers,keep, E,26,android/bluetooth/le/AdvertisingSetCallback.ADVERTISE_SUCCESS,0,Android.Bluetooth.LE.AdvertiseResult,Success,keep, -?,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_HIGH,1600,,,, -?,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_LOW,160,,,, -?,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MAX,16777215,,,, -?,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MEDIUM,400,,,, -?,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MIN,160,,,, +I,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_HIGH,1600,,,, +I,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_LOW,160,,,, +I,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MAX,16777215,,,, +I,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MEDIUM,400,,,, +I,26,android/bluetooth/le/AdvertisingSetParameters.INTERVAL_MIN,160,,,, E,26,android/bluetooth/le/AdvertisingSetParameters.TX_POWER_HIGH,1,Android.Bluetooth.LE.AdvertiseTxPower,High,keep, E,26,android/bluetooth/le/AdvertisingSetParameters.TX_POWER_LOW,-15,Android.Bluetooth.LE.AdvertiseTxPower,Low,keep, E,26,android/bluetooth/le/AdvertisingSetParameters.TX_POWER_MAX,1,Android.Bluetooth.LE.AdvertiseTxPower,Max,keep, @@ -1038,10 +1141,10 @@ E,21,android/bluetooth/le/ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED,4,Android E,21,android/bluetooth/le/ScanCallback.SCAN_FAILED_INTERNAL_ERROR,3,Android.Bluetooth.LE.ScanFailure,InternalError,keep, E,26,android/bluetooth/le/ScanResult.DATA_COMPLETE,0,Android.Bluetooth.LE.DataStatus,Complete,keep, E,26,android/bluetooth/le/ScanResult.DATA_TRUNCATED,2,Android.Bluetooth.LE.DataStatus,Truncated,keep, -?,26,android/bluetooth/le/ScanResult.PERIODIC_INTERVAL_NOT_PRESENT,0,,,, +I,26,android/bluetooth/le/ScanResult.PERIODIC_INTERVAL_NOT_PRESENT,0,,,, E,26,android/bluetooth/le/ScanResult.PHY_UNUSED,0,Android.Bluetooth.LE.BluetoothPhy,Unused,keep, -?,26,android/bluetooth/le/ScanResult.SID_NOT_PRESENT,255,,,, -?,26,android/bluetooth/le/ScanResult.TX_POWER_NOT_PRESENT,127,,,, +I,26,android/bluetooth/le/ScanResult.SID_NOT_PRESENT,255,,,, +I,26,android/bluetooth/le/ScanResult.TX_POWER_NOT_PRESENT,127,,,, E,21,android/bluetooth/le/ScanSettings.CALLBACK_TYPE_ALL_MATCHES,1,Android.Bluetooth.LE.ScanCallbackType,AllMatches,keep, E,23,android/bluetooth/le/ScanSettings.CALLBACK_TYPE_FIRST_MATCH,2,Android.Bluetooth.LE.ScanCallbackType,FirstMatch,keep, E,23,android/bluetooth/le/ScanSettings.CALLBACK_TYPE_MATCH_LOST,4,Android.Bluetooth.LE.ScanCallbackType,MatchLost,keep, @@ -1055,7 +1158,10 @@ E,21,android/bluetooth/le/ScanSettings.SCAN_MODE_BALANCED,1,Android.Bluetooth.LE E,21,android/bluetooth/le/ScanSettings.SCAN_MODE_LOW_LATENCY,2,Android.Bluetooth.LE.ScanMode,LowLatency,keep, E,21,android/bluetooth/le/ScanSettings.SCAN_MODE_LOW_POWER,0,Android.Bluetooth.LE.ScanMode,LowPower,keep, E,23,android/bluetooth/le/ScanSettings.SCAN_MODE_OPPORTUNISTIC,-1,Android.Bluetooth.LE.ScanMode,Opportunistic,keep, -?,0,android/content/AbstractThreadedSyncAdapter.LOG_SYNC_DETAILS,2743,,,, +I,0,android/content/AbstractThreadedSyncAdapter.LOG_SYNC_DETAILS,2743,,,, +E,31,android/content/ClipDescription.CLASSIFICATION_COMPLETE,3,Android.Content.ClipDescriptionClassification,Complete,remove, +E,31,android/content/ClipDescription.CLASSIFICATION_NOT_COMPLETE,1,Android.Content.ClipDescriptionClassification,NotComplete,remove, +E,31,android/content/ClipDescription.CLASSIFICATION_NOT_PERFORMED,2,Android.Content.ClipDescriptionClassification,NotPerformed,remove, E,30,android/content/ContentResolver.NOTIFY_DELETE,16,Android.Content.NotifyChangeFlags,Delete,remove, E,30,android/content/ContentResolver.NOTIFY_INSERT,4,Android.Content.NotifyChangeFlags,Insert,remove, E,24,android/content/ContentResolver.NOTIFY_SKIP_NOTIFY_FOR_DESCENDANTS,2,Android.Content.NotifyChangeFlags,SkipNotifyForDescendants,remove, @@ -1088,7 +1194,7 @@ E,24,android/content/Context.MODE_NO_LOCALIZED_COLLATORS,16,Android.Content.File E,10,android/content/Context.MODE_PRIVATE,0,Android.Content.FileCreationMode,Private,keep,flags E,10,android/content/Context.MODE_WORLD_READABLE,1,Android.Content.FileCreationMode,WorldReadable,keep,flags E,10,android/content/Context.MODE_WORLD_WRITEABLE,2,Android.Content.FileCreationMode,WorldWriteable,keep,flags -?,26,android/content/Context.RECEIVER_VISIBLE_TO_INSTANT_APPS,1,,,, +I,26,android/content/Context.RECEIVER_VISIBLE_TO_INSTANT_APPS,1,,,, E,10,android/content/Intent.EXTRA_DOCK_STATE_CAR,2,Android.Content.ExtraDockState,Car,keep, E,10,android/content/Intent.EXTRA_DOCK_STATE_DESK,1,Android.Content.ExtraDockState,Desk,keep, E,15,android/content/Intent.EXTRA_DOCK_STATE_HE_DESK,4,Android.Content.ExtraDockState,HeDesk,keep, @@ -1167,6 +1273,7 @@ E,26,android/content/pm/ActivityInfo.COLOR_MODE_WIDE_COLOR_GAMUT,1,Android.Conte E,26,android/content/pm/ActivityInfo.CONFIG_COLOR_MODE,16384,Android.Content.PM.ConfigChanges,ColorMode,keep,flags E,17,android/content/pm/ActivityInfo.CONFIG_DENSITY,4096,Android.Content.PM.ConfigChanges,Density,keep,flags E,10,android/content/pm/ActivityInfo.CONFIG_FONT_SCALE,1073741824,Android.Content.PM.ConfigChanges,FontScale,keep,flags +E,31,android/content/pm/ActivityInfo.CONFIG_FONT_WEIGHT_ADJUSTMENT,268435456,Android.Content.PM.ConfigChanges,FontWeightAdjustment,remove,flags E,10,android/content/pm/ActivityInfo.CONFIG_KEYBOARD,16,Android.Content.PM.ConfigChanges,Keyboard,keep,flags E,10,android/content/pm/ActivityInfo.CONFIG_KEYBOARD_HIDDEN,32,Android.Content.PM.ConfigChanges,KeyboardHidden,keep,flags E,17,android/content/pm/ActivityInfo.CONFIG_LAYOUT_DIRECTION,8192,Android.Content.PM.ConfigChanges,LayoutDirection,keep,flags @@ -1204,6 +1311,7 @@ E,17,android/content/pm/ActivityInfo.FLAG_SINGLE_USER,1073741824,Android.Content E,10,android/content/pm/ActivityInfo.FLAG_STATE_NOT_NEEDED,16,Android.Content.PM.ActivityInfoFlags,StateNotNeeded,keep,flags E,10,android/content/pm/ActivityInfo.LAUNCH_MULTIPLE,0,Android.Content.PM.LaunchMode,Multiple,keep, E,10,android/content/pm/ActivityInfo.LAUNCH_SINGLE_INSTANCE,3,Android.Content.PM.LaunchMode,SingleInstance,keep, +E,31,android/content/pm/ActivityInfo.LAUNCH_SINGLE_INSTANCE_PER_TASK,4,Android.Content.PM.LaunchMode,SingleInstancePerTask,remove, E,10,android/content/pm/ActivityInfo.LAUNCH_SINGLE_TASK,2,Android.Content.PM.LaunchMode,SingleTask,keep, E,10,android/content/pm/ActivityInfo.LAUNCH_SINGLE_TOP,1,Android.Content.PM.LaunchMode,SingleTop,keep, E,21,android/content/pm/ActivityInfo.PERSIST_ACROSS_REBOOTS,2,Android.Content.PM.ActivityPersistableMode,AcrossReboots,keep, @@ -1227,6 +1335,7 @@ E,18,android/content/pm/ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE,11,Androi E,18,android/content/pm/ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT,12,Android.Content.PM.ScreenOrientation,UserPortrait,keep, A,0,,0,Android.Content.PM.UiOptions,None,, E,15,android/content/pm/ActivityInfo.UIOPTION_SPLIT_ACTION_BAR_WHEN_NARROW,1,Android.Content.PM.UiOptions,SplitActionBarWhenNarrow,keep, +E,31,android/content/pm/ApplicationInfo.CATEGORY_ACCESSIBILITY,8,Android.Content.PM.ApplicationCategories,Accessibility,remove, E,26,android/content/pm/ApplicationInfo.CATEGORY_AUDIO,1,Android.Content.PM.ApplicationCategories,Audio,keep, E,26,android/content/pm/ApplicationInfo.CATEGORY_GAME,0,Android.Content.PM.ApplicationCategories,Game,keep, E,26,android/content/pm/ApplicationInfo.CATEGORY_IMAGE,3,Android.Content.PM.ApplicationCategories,Image,keep, @@ -1272,13 +1381,31 @@ E,10,android/content/pm/ApplicationInfo.FLAG_VM_SAFE_MODE,16384,Android.Content. E,30,android/content/pm/ApplicationInfo.GWP_ASAN_ALWAYS,1,Android.Content.PM.GwpAsan,Always,remove, E,30,android/content/pm/ApplicationInfo.GWP_ASAN_DEFAULT,-1,Android.Content.PM.GwpAsan,Default,remove, E,30,android/content/pm/ApplicationInfo.GWP_ASAN_NEVER,0,Android.Content.PM.GwpAsan,Never,remove, -?,0,android/content/pm/ConfigurationInfo.GL_ES_VERSION_UNDEFINED,0,,,, +E,31,android/content/pm/ApplicationInfo.MEMTAG_ASYNC,1,Android.Content.PM.ApplicationInfoMemtag,Async,remove, +E,31,android/content/pm/ApplicationInfo.MEMTAG_DEFAULT,-1,Android.Content.PM.ApplicationInfoMemtag,Default,remove, +E,31,android/content/pm/ApplicationInfo.MEMTAG_OFF,0,Android.Content.PM.ApplicationInfoMemtag,Off,remove, +E,31,android/content/pm/ApplicationInfo.MEMTAG_SYNC,2,Android.Content.PM.ApplicationInfoMemtag,Sync,remove, +E,31,android/content/pm/ApplicationInfo.RAW_EXTERNAL_STORAGE_ACCESS_DEFAULT,0,Android.Content.PM.RawExternalStorageAccess,Default,remove, +E,31,android/content/pm/ApplicationInfo.RAW_EXTERNAL_STORAGE_ACCESS_NOT_REQUESTED,2,Android.Content.PM.RawExternalStorageAccess,NotRequested,remove, +E,31,android/content/pm/ApplicationInfo.RAW_EXTERNAL_STORAGE_ACCESS_REQUESTED,1,Android.Content.PM.RawExternalStorageAccess,Requested,remove, +E,31,android/content/pm/ApplicationInfo.ZEROINIT_DEFAULT,-1,Android.Content.PM.ApplicationInfoZeroInit,Default,remove, +E,31,android/content/pm/ApplicationInfo.ZEROINIT_DISABLED,0,Android.Content.PM.ApplicationInfoZeroInit,Disabled,remove, +E,31,android/content/pm/ApplicationInfo.ZEROINIT_ENABLED,1,Android.Content.PM.ApplicationInfoZeroInit,ZeroinitEnabled,remove, +A,31,,0,Android.Content.PM.ChecksumType,None,remove,flags +E,31,android/content/pm/Checksum.TYPE_PARTIAL_MERKLE_ROOT_1M_SHA256,32,Android.Content.PM.ChecksumType,PartialMerkleRoot1mSha256,remove,flags +E,31,android/content/pm/Checksum.TYPE_PARTIAL_MERKLE_ROOT_1M_SHA512,64,Android.Content.PM.ChecksumType,PartialMerkleRoot1mSha512,remove,flags +E,31,android/content/pm/Checksum.TYPE_WHOLE_MD5,2,Android.Content.PM.ChecksumType,WholeMd5,remove,flags +E,31,android/content/pm/Checksum.TYPE_WHOLE_MERKLE_ROOT_4K_SHA256,1,Android.Content.PM.ChecksumType,WholeMerkleRoot4kSha256,remove,flags +E,31,android/content/pm/Checksum.TYPE_WHOLE_SHA1,4,Android.Content.PM.ChecksumType,WholeSha1,remove,flags +E,31,android/content/pm/Checksum.TYPE_WHOLE_SHA256,8,Android.Content.PM.ChecksumType,WholeSha256,remove,flags +E,31,android/content/pm/Checksum.TYPE_WHOLE_SHA512,16,Android.Content.PM.ChecksumType,WholeSha512,remove,flags +I,0,android/content/pm/ConfigurationInfo.GL_ES_VERSION_UNDEFINED,0,,,, A,0,,0,Android.Content.PM.InputFeature,None,remove, E,10,android/content/pm/ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV,2,Android.Content.PM.InputFeature,FiveWayNav,remove, E,10,android/content/pm/ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD,1,Android.Content.PM.InputFeature,HardKeyboard,remove, A,0,,0,Android.Content.PM.FeatureFlags,None,remove,flags E,10,android/content/pm/FeatureInfo.FLAG_REQUIRED,1,Android.Content.PM.FeatureFlags,Required,remove,flags -?,0,android/content/pm/FeatureInfo.GL_ES_VERSION_UNDEFINED,0,,,, +I,0,android/content/pm/FeatureInfo.GL_ES_VERSION_UNDEFINED,0,,,, E,26,android/content/pm/LauncherApps$PinItemRequest.REQUEST_TYPE_APPWIDGET,2,Android.Content.PM.PinItemRequestType,Appwidget,remove, E,26,android/content/pm/LauncherApps$PinItemRequest.REQUEST_TYPE_SHORTCUT,1,Android.Content.PM.PinItemRequestType,Shortcut,remove, A,0,,0,Android.Content.PM.LauncherAppsShortcutQueryFlags,None,remove, @@ -1292,14 +1419,8 @@ E,21,android/content/pm/PackageInfo.INSTALL_LOCATION_AUTO,0,Android.Content.PM.P E,21,android/content/pm/PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY,1,Android.Content.PM.PackageInstallLocation,InternalOnly,keep, E,21,android/content/pm/PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL,2,Android.Content.PM.PackageInstallLocation,PreferExternal,keep, E,16,android/content/pm/PackageInfo.REQUESTED_PERMISSION_GRANTED,2,Android.Content.PM.RequestedPermission,Granted,remove, +E,31,android/content/pm/PackageInfo.REQUESTED_PERMISSION_NEVER_FOR_LOCATION,65536,Android.Content.PM.RequestedPermission,NeverForLocation,remove, E,16,android/content/pm/PackageInfo.REQUESTED_PERMISSION_REQUIRED,1,Android.Content.PM.RequestedPermission,Required,remove, -?,29,android/content/pm/PackageInstaller$SessionInfo.INVALID_ID,-1,,,, -E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_ACTIVATION_FAILED,2,Android.Content.PM.StagedSession,ActivationFailed,remove, -E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_NO_ERROR,0,Android.Content.PM.StagedSession,NoError,remove, -E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_UNKNOWN,3,Android.Content.PM.StagedSession,Unknown,remove, -E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_VERIFICATION_FAILED,1,Android.Content.PM.StagedSession,VerificationFailed,remove, -E,21,android/content/pm/PackageInstaller$SessionParams.MODE_FULL_INSTALL,1,Android.Content.PM.PackageInstallMode,FullInstall,keep, -E,21,android/content/pm/PackageInstaller$SessionParams.MODE_INHERIT_EXISTING,2,Android.Content.PM.PackageInstallMode,InheritExisting,keep, E,21,android/content/pm/PackageInstaller.STATUS_FAILURE,1,Android.Content.PM.PackageInstallStatus,Failure,keep, E,21,android/content/pm/PackageInstaller.STATUS_FAILURE_ABORTED,3,Android.Content.PM.PackageInstallStatus,FailureAborted,keep, E,21,android/content/pm/PackageInstaller.STATUS_FAILURE_BLOCKED,2,Android.Content.PM.PackageInstallStatus,FailureBlocked,keep, @@ -1309,6 +1430,17 @@ E,21,android/content/pm/PackageInstaller.STATUS_FAILURE_INVALID,4,Android.Conten E,21,android/content/pm/PackageInstaller.STATUS_FAILURE_STORAGE,6,Android.Content.PM.PackageInstallStatus,FailureStorage,keep, E,21,android/content/pm/PackageInstaller.STATUS_PENDING_USER_ACTION,-1,Android.Content.PM.PackageInstallStatus,PendingUserAction,keep, E,21,android/content/pm/PackageInstaller.STATUS_SUCCESS,0,Android.Content.PM.PackageInstallStatus,Success,keep, +I,29,android/content/pm/PackageInstaller$SessionInfo.INVALID_ID,-1,,,, +E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_ACTIVATION_FAILED,2,Android.Content.PM.StagedSession,ActivationFailed,remove, +E,31,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_CONFLICT,4,Android.Content.PM.StagedSession,Conflict,remove, +E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_NO_ERROR,0,Android.Content.PM.StagedSession,NoError,remove, +E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_UNKNOWN,3,Android.Content.PM.StagedSession,Unknown,remove, +E,29,android/content/pm/PackageInstaller$SessionInfo.STAGED_SESSION_VERIFICATION_FAILED,1,Android.Content.PM.StagedSession,VerificationFailed,remove, +E,21,android/content/pm/PackageInstaller$SessionParams.MODE_FULL_INSTALL,1,Android.Content.PM.PackageInstallMode,FullInstall,keep, +E,21,android/content/pm/PackageInstaller$SessionParams.MODE_INHERIT_EXISTING,2,Android.Content.PM.PackageInstallMode,InheritExisting,keep, +E,31,android/content/pm/PackageInstaller$SessionParams.USER_ACTION_NOT_REQUIRED,2,Android.Content.PM.PackageInstallUserAction,NotRequired,remove, +E,31,android/content/pm/PackageInstaller$SessionParams.USER_ACTION_REQUIRED,1,Android.Content.PM.PackageInstallUserAction,Required,remove, +E,31,android/content/pm/PackageInstaller$SessionParams.USER_ACTION_UNSPECIFIED,0,Android.Content.PM.PackageInstallUserAction,Unspecified,remove, E,28,android/content/pm/PackageManager.CERT_INPUT_RAW_X509,0,Android.Content.PM.CertificateType,RawX509,remove, E,28,android/content/pm/PackageManager.CERT_INPUT_SHA256,1,Android.Content.PM.CertificateType,Sha256,remove, E,10,android/content/pm/PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,0,Android.Content.PM.ComponentEnabledState,Default,keep, @@ -1322,6 +1454,7 @@ E,29,android/content/pm/PackageManager.FLAG_PERMISSION_WHITELIST_INSTALLER,2,And E,29,android/content/pm/PackageManager.FLAG_PERMISSION_WHITELIST_SYSTEM,1,Android.Content.PM.FlagPermission,WhitelistSystem,remove, E,29,android/content/pm/PackageManager.FLAG_PERMISSION_WHITELIST_UPGRADE,4,Android.Content.PM.FlagPermission,WhitelistUpgrade,remove, E,10,android/content/pm/PackageManager.GET_ACTIVITIES,1,Android.Content.PM.PackageInfoFlags,Activities,keep,flags +E,31,android/content/pm/PackageManager.GET_ATTRIBUTIONS,-2147483648,Android.Content.PM.PackageInfoFlags,Attributions,remove,flags E,10,android/content/pm/PackageManager.GET_CONFIGURATIONS,16384,Android.Content.PM.PackageInfoFlags,Configurations,keep,flags E,10,android/content/pm/PackageManager.GET_DISABLED_COMPONENTS,512,Android.Content.PM.PackageInfoFlags,DisabledComponents,keep,flags E,18,android/content/pm/PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,32768,Android.Content.PM.PackageInfoFlags,DisabledUntilUsedComponents,keep,flags @@ -1349,10 +1482,14 @@ E,26,android/content/pm/PackageManager.INSTALL_REASON_UNKNOWN,0,Android.Content. E,26,android/content/pm/PackageManager.INSTALL_REASON_UNKNOWN,0,Android.Content.PM.InstallReason,Unknown,remove, E,26,android/content/pm/PackageManager.INSTALL_REASON_USER,4,Android.Content.PM.PackageInstallReason,User,keep, E,26,android/content/pm/PackageManager.INSTALL_REASON_USER,4,Android.Content.PM.InstallReason,User,remove, +E,31,android/content/pm/PackageManager.INSTALL_SCENARIO_BULK,2,Android.Content.PM.PackageInstallScenario,Bulk,remove, +E,31,android/content/pm/PackageManager.INSTALL_SCENARIO_BULK_SECONDARY,3,Android.Content.PM.PackageInstallScenario,BulkSecondary,remove, +E,31,android/content/pm/PackageManager.INSTALL_SCENARIO_DEFAULT,0,Android.Content.PM.PackageInstallScenario,Default,remove, +E,31,android/content/pm/PackageManager.INSTALL_SCENARIO_FAST,1,Android.Content.PM.PackageInstallScenario,Fast,remove, E,23,android/content/pm/PackageManager.MATCH_ALL,131072,Android.Content.PM.PackageInfoFlags,MatchAll,keep,flags -?,29,android/content/pm/PackageManager.MATCH_APEX,1073741824,,,, +I,29,android/content/pm/PackageManager.MATCH_APEX,1073741824,,,, E,10,android/content/pm/PackageManager.MATCH_DEFAULT_ONLY,65536,Android.Content.PM.PackageInfoFlags,MatchDefaultOnly,keep,flags -?,29,android/content/pm/PackageManager.MATCH_DIRECT_BOOT_AUTO,268435456,,,, +I,29,android/content/pm/PackageManager.MATCH_DIRECT_BOOT_AUTO,268435456,,,, E,24,android/content/pm/PackageManager.MATCH_DIRECT_BOOT_AWARE,524288,Android.Content.PM.PackageInfoFlags,MatchDirectBootAware,keep,flags E,24,android/content/pm/PackageManager.MATCH_DIRECT_BOOT_UNAWARE,262144,Android.Content.PM.PackageInfoFlags,MatchDirectBootUnaware,keep,flags E,24,android/content/pm/PackageManager.MATCH_DISABLED_COMPONENTS,512,Android.Content.PM.PackageInfoFlags,MatchDisabledComponents,keep,flags @@ -1370,7 +1507,7 @@ E,10,android/content/pm/PackageManager.SIGNATURE_UNKNOWN_PACKAGE,-4,Android.Cont E,30,android/content/pm/PackageManager.SYNCHRONOUS,2,Android.Content.PM.ComponentEnableOption,Synchronous,remove, E,15,android/content/pm/PackageManager.VERIFICATION_ALLOW,1,Android.Content.PM.PackageInstallVerification,Allow,remove, E,15,android/content/pm/PackageManager.VERIFICATION_REJECT,-1,Android.Content.PM.PackageInstallVerification,Reject,remove, -?,26,android/content/pm/PackageManager.VERSION_CODE_HIGHEST,-1,,,, +I,26,android/content/pm/PackageManager.VERSION_CODE_HIGHEST,-1,,,, A,0,,0,Android.Content.PM.PermissionGroupInfoFlags,None,remove,flags E,17,android/content/pm/PermissionGroupInfo.FLAG_PERSONAL_INFO,1,Android.Content.PM.PermissionGroupInfoFlags,PersonalInfo,remove,flags A,0,,0,Android.Content.PM.PermissionInfoFlags,None,remove,flags @@ -1391,6 +1528,7 @@ E,26,android/content/pm/PermissionInfo.PROTECTION_FLAG_RUNTIME_ONLY,8192,Android E,24,android/content/pm/PermissionInfo.PROTECTION_FLAG_SETUP,2048,Android.Content.PM.Protection,FlagSetup,keep, E,16,android/content/pm/PermissionInfo.PROTECTION_FLAG_SYSTEM,16,Android.Content.PM.Protection,FlagSystem,keep, E,23,android/content/pm/PermissionInfo.PROTECTION_FLAG_VERIFIER,512,Android.Content.PM.Protection,FlagVerifier,keep, +E,31,android/content/pm/PermissionInfo.PROTECTION_INTERNAL,4,Android.Content.PM.Protection,Internal,remove, E,16,android/content/pm/PermissionInfo.PROTECTION_MASK_BASE,15,Android.Content.PM.Protection,MaskBase,keep, E,16,android/content/pm/PermissionInfo.PROTECTION_MASK_FLAGS,65520,Android.Content.PM.Protection,MaskFlags,keep, E,10,android/content/pm/PermissionInfo.PROTECTION_NORMAL,0,Android.Content.PM.Protection,Normal,keep, @@ -1416,7 +1554,7 @@ E,29,android/content/pm/ServiceInfo.FOREGROUND_SERVICE_TYPE_PHONE_CALL,4,Android E,26,android/content/pm/SharedLibraryInfo.TYPE_BUILTIN,0,Android.Content.PM.SharedLibraryType,Builtin,remove, E,26,android/content/pm/SharedLibraryInfo.TYPE_DYNAMIC,1,Android.Content.PM.SharedLibraryType,Dynamic,remove, E,26,android/content/pm/SharedLibraryInfo.TYPE_STATIC,2,Android.Content.PM.SharedLibraryType,Static,remove, -?,26,android/content/pm/SharedLibraryInfo.VERSION_UNDEFINED,-1,,,, +I,26,android/content/pm/SharedLibraryInfo.VERSION_UNDEFINED,-1,,,, E,28,android/content/pm/ShortcutInfo.DISABLED_REASON_APP_CHANGED,2,Android.Content.PM.ShortcutDisabledReason,AppChanged,remove, E,28,android/content/pm/ShortcutInfo.DISABLED_REASON_BACKUP_NOT_SUPPORTED,101,Android.Content.PM.ShortcutDisabledReason,BackupNotSupported,remove, E,28,android/content/pm/ShortcutInfo.DISABLED_REASON_BY_APP,1,Android.Content.PM.ShortcutDisabledReason,ByApp,remove, @@ -1430,6 +1568,9 @@ E,30,android/content/pm/ShortcutManager.FLAG_MATCH_CACHED,8,Android.Content.PM.S E,30,android/content/pm/ShortcutManager.FLAG_MATCH_DYNAMIC,2,Android.Content.PM.ShortcutManagerMatchFlags,Dynamic,remove, E,30,android/content/pm/ShortcutManager.FLAG_MATCH_MANIFEST,1,Android.Content.PM.ShortcutManagerMatchFlags,Manifest,remove, E,30,android/content/pm/ShortcutManager.FLAG_MATCH_PINNED,4,Android.Content.PM.ShortcutManagerMatchFlags,Pinned,remove, +E,31,android/content/pm/verify/domain/DomainVerificationUserState.DOMAIN_STATE_NONE,0,Android.Content.PM.Verify.Domain.DomainState,None,remove, +E,31,android/content/pm/verify/domain/DomainVerificationUserState.DOMAIN_STATE_SELECTED,1,Android.Content.PM.Verify.Domain.DomainState,Selected,remove, +E,31,android/content/pm/verify/domain/DomainVerificationUserState.DOMAIN_STATE_VERIFIED,2,Android.Content.PM.Verify.Domain.DomainState,Verified,remove, E,10,android/content/res/AssetManager.ACCESS_BUFFER,3,Android.Content.Res.Access,Buffer,keep, E,10,android/content/res/AssetManager.ACCESS_RANDOM,1,Android.Content.Res.Access,Random,keep, E,10,android/content/res/AssetManager.ACCESS_STREAMING,2,Android.Content.Res.Access,Streaming,keep, @@ -1444,7 +1585,8 @@ E,26,android/content/res/Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_MASK,3,Androi E,26,android/content/res/Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO,1,Android.Content.Res.ColorMode,WideColorGamutNo,remove, E,26,android/content/res/Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_UNDEFINED,0,Android.Content.Res.ColorMode,WideColorGamutUndefined,remove, E,26,android/content/res/Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES,2,Android.Content.Res.ColorMode,WideColorGamutYes,remove, -?,17,android/content/res/Configuration.DENSITY_DPI_UNDEFINED,0,,,, +I,17,android/content/res/Configuration.DENSITY_DPI_UNDEFINED,0,,,, +I,31,android/content/res/Configuration.FONT_WEIGHT_ADJUSTMENT_UNDEFINED,2147483647,,,, E,10,android/content/res/Configuration.HARDKEYBOARDHIDDEN_NO,1,Android.Content.Res.HardKeyboardHidden,No,keep, E,10,android/content/res/Configuration.HARDKEYBOARDHIDDEN_UNDEFINED,0,Android.Content.Res.HardKeyboardHidden,Undefined,keep, E,10,android/content/res/Configuration.HARDKEYBOARDHIDDEN_YES,2,Android.Content.Res.HardKeyboardHidden,Yes,keep, @@ -1455,7 +1597,7 @@ E,10,android/content/res/Configuration.KEYBOARD_UNDEFINED,0,Android.Content.Res. E,10,android/content/res/Configuration.KEYBOARDHIDDEN_NO,1,Android.Content.Res.KeyboardHidden,No,keep, E,10,android/content/res/Configuration.KEYBOARDHIDDEN_UNDEFINED,0,Android.Content.Res.KeyboardHidden,Undefined,keep, E,10,android/content/res/Configuration.KEYBOARDHIDDEN_YES,2,Android.Content.Res.KeyboardHidden,Yes,keep, -?,19,android/content/res/Configuration.MNC_ZERO,65535,,,, +I,19,android/content/res/Configuration.MNC_ZERO,65535,,,, E,10,android/content/res/Configuration.NAVIGATION_DPAD,2,Android.Content.Res.Navigation,Dpad,keep, E,10,android/content/res/Configuration.NAVIGATION_NONAV,1,Android.Content.Res.Navigation,Nonav,keep, E,10,android/content/res/Configuration.NAVIGATION_TRACKBALL,3,Android.Content.Res.Navigation,Trackball,keep, @@ -1490,7 +1632,7 @@ E,10,android/content/res/Configuration.SCREENLAYOUT_SIZE_SMALL,1,Android.Content E,10,android/content/res/Configuration.SCREENLAYOUT_SIZE_UNDEFINED,0,Android.Content.Res.ScreenLayout,SizeUndefined,keep, E,10,android/content/res/Configuration.SCREENLAYOUT_SIZE_XLARGE,4,Android.Content.Res.ScreenLayout,SizeXlarge,keep, E,17,android/content/res/Configuration.SCREENLAYOUT_UNDEFINED,0,Android.Content.Res.ScreenLayout,Undefined,keep, -?,15,android/content/res/Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED,0,,,, +I,15,android/content/res/Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED,0,,,, E,10,android/content/res/Configuration.TOUCHSCREEN_FINGER,3,Android.Content.Res.TouchScreenType,Finger,keep, E,10,android/content/res/Configuration.TOUCHSCREEN_NOTOUCH,1,Android.Content.Res.TouchScreenType,Notouch,keep, E,10,android/content/res/Configuration.TOUCHSCREEN_STYLUS,2,Android.Content.Res.TouchScreenType,Stylus,keep, @@ -1510,7 +1652,7 @@ E,26,android/content/res/Configuration.UI_MODE_TYPE_VR_HEADSET,7,Android.Content E,20,android/content/res/Configuration.UI_MODE_TYPE_WATCH,6,Android.Content.Res.UiMode,TypeWatch,remove, A,0,,0,Android.Content.Res.ObbFlags,None,remove,flags E,10,android/content/res/ObbInfo.OBB_OVERLAY,1,Android.Content.Res.ObbFlags,Overlay,remove,flags -?,29,android/content/res/Resources.ID_NULL,0,,,, +I,29,android/content/res/Resources.ID_NULL,0,,,, E,18,android/content/RestrictionEntry.TYPE_BOOLEAN,1,Android.Content.RestrictionEntryType,Boolean,remove, E,23,android/content/RestrictionEntry.TYPE_BUNDLE,7,Android.Content.RestrictionEntryType,Bundle,remove, E,23,android/content/RestrictionEntry.TYPE_BUNDLE_ARRAY,8,Android.Content.RestrictionEntryType,BundleArray,remove, @@ -1529,8 +1671,7 @@ E,21,android/content/RestrictionsManager.RESULT_NO_RESPONSE,3,Android.Content.Re E,21,android/content/RestrictionsManager.RESULT_UNKNOWN_REQUEST,4,Android.Content.RestrictionResults,UnknownRequest,keep, E,10,android/content/SearchRecentSuggestionsProvider.DATABASE_MODE_2LINES,2,Android.Content.DatabaseMode,TwoLines,keep, E,10,android/content/SearchRecentSuggestionsProvider.DATABASE_MODE_QUERIES,1,Android.Content.DatabaseMode,Queries,keep, -?,0,android/content/UriMatcher.NO_MATCH,-1,,,, -?,0,android/database/DatabaseUtils$InsertHelper.TABLE_INFO_PRAGMA_DEFAULT_INDEX,4,,,, +I,0,android/content/UriMatcher.NO_MATCH,-1,,,, E,15,android/database/DatabaseUtils.STATEMENT_ABORT,6,Android.Database.StatementType,Abort,keep, E,15,android/database/DatabaseUtils.STATEMENT_ATTACH,3,Android.Database.StatementType,Attach,keep, E,15,android/database/DatabaseUtils.STATEMENT_BEGIN,4,Android.Database.StatementType,Begin,keep, @@ -1541,6 +1682,7 @@ E,15,android/database/DatabaseUtils.STATEMENT_PRAGMA,7,Android.Database.Statemen E,15,android/database/DatabaseUtils.STATEMENT_SELECT,1,Android.Database.StatementType,Select,keep, E,15,android/database/DatabaseUtils.STATEMENT_UNPREPARED,9,Android.Database.StatementType,Unprepared,keep, E,15,android/database/DatabaseUtils.STATEMENT_UPDATE,2,Android.Database.StatementType,Update,keep, +I,0,android/database/DatabaseUtils$InsertHelper.TABLE_INFO_PRAGMA_DEFAULT_INDEX,4,,,, E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_ABORT,2,Android.Database.Sqlite.Conflict,Abort,remove, E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_FAIL,3,Android.Database.Sqlite.Conflict,Fail,remove, E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_IGNORE,4,Android.Database.Sqlite.Conflict,Ignore,remove, @@ -1548,12 +1690,12 @@ E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_NONE,0,Android.Database.Sql E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_REPLACE,5,Android.Database.Sqlite.Conflict,Replace,remove, E,10,android/database/sqlite/SQLiteDatabase.CONFLICT_ROLLBACK,1,Android.Database.Sqlite.Conflict,Rollback,remove, E,10,android/database/sqlite/SQLiteDatabase.CREATE_IF_NECESSARY,268435456,Android.Database.Sqlite.DatabaseOpenFlags,CreateIfNecessary,keep,flags -?,16,android/database/sqlite/SQLiteDatabase.ENABLE_WRITE_AHEAD_LOGGING,536870912,,,, -?,15,android/database/sqlite/SQLiteDatabase.MAX_SQL_CACHE_SIZE,100,,,, +I,16,android/database/sqlite/SQLiteDatabase.ENABLE_WRITE_AHEAD_LOGGING,536870912,,,, +I,15,android/database/sqlite/SQLiteDatabase.MAX_SQL_CACHE_SIZE,100,,,, E,10,android/database/sqlite/SQLiteDatabase.NO_LOCALIZED_COLLATORS,16,Android.Database.Sqlite.DatabaseOpenFlags,NoLocalizedCollators,keep,flags E,10,android/database/sqlite/SQLiteDatabase.OPEN_READONLY,1,Android.Database.Sqlite.DatabaseOpenFlags,OpenReadonly,keep,flags E,10,android/database/sqlite/SQLiteDatabase.OPEN_READWRITE,0,Android.Database.Sqlite.DatabaseOpenFlags,OpenReadwrite,keep,flags -?,0,android/database/sqlite/SQLiteDatabase.SQLITE_MAX_LIKE_PATTERN_LENGTH,50000,,,, +I,0,android/database/sqlite/SQLiteDatabase.SQLITE_MAX_LIKE_PATTERN_LENGTH,50000,,,, E,15,android/drm/DrmConvertedStatus.STATUS_ERROR,3,Android.Drm.DrmConvertedStatusCode,Error,keep, E,15,android/drm/DrmConvertedStatus.STATUS_INPUTDATA_ERROR,2,Android.Drm.DrmConvertedStatusCode,InputDataError,keep, E,15,android/drm/DrmConvertedStatus.STATUS_OK,1,Android.Drm.DrmConvertedStatusCode,OK,keep, @@ -1609,28 +1751,28 @@ E,10,android/gesture/GestureStore.ORIENTATION_INVARIANT,1,Android.Gestures.Orien E,10,android/gesture/GestureStore.ORIENTATION_SENSITIVE,2,Android.Gestures.OrientationStyle,Sensitive,keep, E,10,android/gesture/GestureStore.SEQUENCE_INVARIANT,1,Android.Gestures.SequenceStyle,Invariant,keep, E,10,android/gesture/GestureStore.SEQUENCE_SENSITIVE,2,Android.Gestures.SequenceStyle,Sensitive,keep, -?,0,android/graphics/Bitmap.DENSITY_NONE,0,,,, +I,0,android/graphics/Bitmap.DENSITY_NONE,0,,,, E,10,android/graphics/Canvas.ALL_SAVE_FLAG,31,Android.Graphics.SaveFlags,All,keep,flags E,10,android/graphics/Canvas.CLIP_SAVE_FLAG,2,Android.Graphics.SaveFlags,Clip,keep,flags E,10,android/graphics/Canvas.CLIP_TO_LAYER_SAVE_FLAG,16,Android.Graphics.SaveFlags,ClipToLayer,keep,flags E,10,android/graphics/Canvas.FULL_COLOR_LAYER_SAVE_FLAG,8,Android.Graphics.SaveFlags,FullColorLayer,keep,flags E,10,android/graphics/Canvas.HAS_ALPHA_LAYER_SAVE_FLAG,4,Android.Graphics.SaveFlags,HasAlphaLayer,keep,flags E,10,android/graphics/Canvas.MATRIX_SAVE_FLAG,1,Android.Graphics.SaveFlags,Matrix,keep,flags -?,0,android/graphics/Color.BLACK,-16777216,,,, -?,0,android/graphics/Color.BLUE,-16776961,,,, -?,0,android/graphics/Color.CYAN,-16711681,,,, -?,0,android/graphics/Color.DKGRAY,-12303292,,,, -?,0,android/graphics/Color.GRAY,-7829368,,,, -?,0,android/graphics/Color.GREEN,-16711936,,,, -?,0,android/graphics/Color.LTGRAY,-3355444,,,, -?,0,android/graphics/Color.MAGENTA,-65281,,,, -?,0,android/graphics/Color.RED,-65536,,,, -?,0,android/graphics/Color.TRANSPARENT,0,,,, -?,0,android/graphics/Color.WHITE,-1,,,, -?,0,android/graphics/Color.YELLOW,-256,,,, -?,26,android/graphics/ColorSpace.MAX_ID,63,,,, -?,26,android/graphics/ColorSpace.MIN_ID,-1,,,, -?,28,android/graphics/drawable/AnimatedImageDrawable.REPEAT_INFINITE,-1,,,, +I,0,android/graphics/Color.BLACK,-16777216,,,, +I,0,android/graphics/Color.BLUE,-16776961,,,, +I,0,android/graphics/Color.CYAN,-16711681,,,, +I,0,android/graphics/Color.DKGRAY,-12303292,,,, +I,0,android/graphics/Color.GRAY,-7829368,,,, +I,0,android/graphics/Color.GREEN,-16711936,,,, +I,0,android/graphics/Color.LTGRAY,-3355444,,,, +I,0,android/graphics/Color.MAGENTA,-65281,,,, +I,0,android/graphics/Color.RED,-65536,,,, +I,0,android/graphics/Color.TRANSPARENT,0,,,, +I,0,android/graphics/Color.WHITE,-1,,,, +I,0,android/graphics/Color.YELLOW,-256,,,, +I,26,android/graphics/ColorSpace.MAX_ID,63,,,, +I,26,android/graphics/ColorSpace.MIN_ID,-1,,,, +I,28,android/graphics/drawable/AnimatedImageDrawable.REPEAT_INFINITE,-1,,,, E,10,android/graphics/drawable/ClipDrawable.HORIZONTAL,1,Android.Graphics.Drawables.ClipDrawableOrientation,Horizontal,remove, E,10,android/graphics/drawable/ClipDrawable.VERTICAL,2,Android.Graphics.Drawables.ClipDrawableOrientation,Vertical,remove, E,10,android/graphics/drawable/GradientDrawable.LINE,2,Android.Graphics.Drawables.ShapeType,Line,keep, @@ -1646,37 +1788,37 @@ E,28,android/graphics/drawable/Icon.TYPE_DATA,3,Android.Graphics.Drawables.IconT E,28,android/graphics/drawable/Icon.TYPE_RESOURCE,2,Android.Graphics.Drawables.IconType,Resource,remove, E,28,android/graphics/drawable/Icon.TYPE_URI,4,Android.Graphics.Drawables.IconType,Uri,remove, E,30,android/graphics/drawable/Icon.TYPE_URI_ADAPTIVE_BITMAP,6,Android.Graphics.Drawables.IconType,UriAdaptiveBitmap,remove, -?,24,android/graphics/drawable/LayerDrawable.INSET_UNDEFINED,-2147483648,,,, +I,24,android/graphics/drawable/LayerDrawable.INSET_UNDEFINED,-2147483648,,,, E,21,android/graphics/drawable/LayerDrawable.PADDING_MODE_NEST,0,Android.Graphics.Drawables.LayerDrawablePaddingMode,Nest,remove, E,21,android/graphics/drawable/LayerDrawable.PADDING_MODE_STACK,1,Android.Graphics.Drawables.LayerDrawablePaddingMode,Stack,remove, -?,23,android/graphics/drawable/RippleDrawable.RADIUS_AUTO,-1,,,, +I,23,android/graphics/drawable/RippleDrawable.RADIUS_AUTO,-1,,,, E,29,android/graphics/fonts/FontStyle.FONT_SLANT_ITALIC,1,Android.Graphics.Fonts.FontSlant,Italic,remove, E,29,android/graphics/fonts/FontStyle.FONT_SLANT_UPRIGHT,0,Android.Graphics.Fonts.FontSlant,Upright,remove, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_BLACK,900,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_BOLD,700,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_EXTRA_BOLD,800,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_EXTRA_LIGHT,200,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_LIGHT,300,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MAX,1000,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MEDIUM,500,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MIN,1,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_NORMAL,400,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_SEMI_BOLD,600,,,, -?,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_THIN,100,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_BLACK,900,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_BOLD,700,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_EXTRA_BOLD,800,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_EXTRA_LIGHT,200,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_LIGHT,300,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MAX,1000,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MEDIUM,500,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_MIN,1,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_NORMAL,400,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_SEMI_BOLD,600,,,, +I,29,android/graphics/fonts/FontStyle.FONT_WEIGHT_THIN,100,,,, E,29,android/graphics/HardwareRenderer.SYNC_CONTEXT_IS_STOPPED,4,Android.Graphics.Sync,ContextIsStopped,remove, E,29,android/graphics/HardwareRenderer.SYNC_FRAME_DROPPED,8,Android.Graphics.Sync,FrameDropped,remove, E,29,android/graphics/HardwareRenderer.SYNC_LOST_SURFACE_REWARD_IF_FOUND,2,Android.Graphics.Sync,LostSurfaceRewardIfFound,remove, E,29,android/graphics/HardwareRenderer.SYNC_OK,0,Android.Graphics.Sync,Ok,remove, E,29,android/graphics/HardwareRenderer.SYNC_REDRAW_REQUESTED,1,Android.Graphics.Sync,RedrawRequested,remove, -E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_EXCEPTION,1,Android.Graphics.ImageDecoderErrorType,SourceException,remove, -E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_INCOMPLETE,2,Android.Graphics.ImageDecoderErrorType,SourceIncomplete,remove, -E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_MALFORMED_DATA,3,Android.Graphics.ImageDecoderErrorType,SourceMalformedData,remove, E,28,android/graphics/ImageDecoder.ALLOCATOR_DEFAULT,0,Android.Graphics.ImageDecoderAllocator,Default,remove, E,28,android/graphics/ImageDecoder.ALLOCATOR_HARDWARE,3,Android.Graphics.ImageDecoderAllocator,Hardware,remove, E,28,android/graphics/ImageDecoder.ALLOCATOR_SHARED_MEMORY,2,Android.Graphics.ImageDecoderAllocator,SharedMemory,remove, E,28,android/graphics/ImageDecoder.ALLOCATOR_SOFTWARE,1,Android.Graphics.ImageDecoderAllocator,Software,remove, E,28,android/graphics/ImageDecoder.MEMORY_POLICY_DEFAULT,1,Android.Graphics.ImageDecoderMemoryPolicy,Default,remove, E,28,android/graphics/ImageDecoder.MEMORY_POLICY_LOW_RAM,0,Android.Graphics.ImageDecoderMemoryPolicy,LowRam,remove, +E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_EXCEPTION,1,Android.Graphics.ImageDecoderErrorType,SourceException,remove, +E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_INCOMPLETE,2,Android.Graphics.ImageDecoderErrorType,SourceIncomplete,remove, +E,28,android/graphics/ImageDecoder$DecodeException.SOURCE_MALFORMED_DATA,3,Android.Graphics.ImageDecoderErrorType,SourceMalformedData,remove, E,29,android/graphics/ImageFormat.DEPTH_JPEG,1768253795,Android.Graphics.ImageFormatType,DepthJpeg,remove, E,23,android/graphics/ImageFormat.DEPTH_POINT_CLOUD,257,Android.Graphics.ImageFormatType,DepthPointCloud,remove, E,23,android/graphics/ImageFormat.DEPTH16,1144402265,Android.Graphics.ImageFormatType,Depth16,remove, @@ -1694,20 +1836,21 @@ E,23,android/graphics/ImageFormat.RAW12,38,Android.Graphics.ImageFormatType,Raw1 E,10,android/graphics/ImageFormat.RGB_565,4,Android.Graphics.ImageFormatType,Rgb565,remove, E,10,android/graphics/ImageFormat.UNKNOWN,0,Android.Graphics.ImageFormatType,Unknown,remove, E,29,android/graphics/ImageFormat.Y8,538982489,Android.Graphics.ImageFormatType,Y8,remove, +E,31,android/graphics/ImageFormat.YCBCR_P010,54,Android.Graphics.ImageFormatType,YcbcrP010,remove, E,19,android/graphics/ImageFormat.YUV_420_888,35,Android.Graphics.ImageFormatType,Yuv420888,remove, E,23,android/graphics/ImageFormat.YUV_422_888,39,Android.Graphics.ImageFormatType,Yuv422888,remove, E,23,android/graphics/ImageFormat.YUV_444_888,40,Android.Graphics.ImageFormatType,Yuv444888,remove, E,10,android/graphics/ImageFormat.YUY2,20,Android.Graphics.ImageFormatType,Yuy2,remove, E,10,android/graphics/ImageFormat.YV12,842094169,Android.Graphics.ImageFormatType,Yv12,remove, -?,0,android/graphics/Matrix.MPERSP_0,6,,,, -?,0,android/graphics/Matrix.MPERSP_1,7,,,, -?,0,android/graphics/Matrix.MPERSP_2,8,,,, -?,0,android/graphics/Matrix.MSCALE_X,0,,,, -?,0,android/graphics/Matrix.MSCALE_Y,4,,,, -?,0,android/graphics/Matrix.MSKEW_X,1,,,, -?,0,android/graphics/Matrix.MSKEW_Y,3,,,, -?,0,android/graphics/Matrix.MTRANS_X,2,,,, -?,0,android/graphics/Matrix.MTRANS_Y,5,,,, +I,0,android/graphics/Matrix.MPERSP_0,6,,,, +I,0,android/graphics/Matrix.MPERSP_1,7,,,, +I,0,android/graphics/Matrix.MPERSP_2,8,,,, +I,0,android/graphics/Matrix.MSCALE_X,0,,,, +I,0,android/graphics/Matrix.MSCALE_Y,4,,,, +I,0,android/graphics/Matrix.MSKEW_X,1,,,, +I,0,android/graphics/Matrix.MSKEW_Y,3,,,, +I,0,android/graphics/Matrix.MTRANS_X,2,,,, +I,0,android/graphics/Matrix.MTRANS_Y,5,,,, E,10,android/graphics/Paint.ANTI_ALIAS_FLAG,1,Android.Graphics.PaintFlags,AntiAlias,keep,flags E,29,android/graphics/Paint.CURSOR_AFTER,0,Android.Graphics.Cursor,After,remove, E,29,android/graphics/Paint.CURSOR_AT,4,Android.Graphics.Cursor,At,remove, @@ -1717,21 +1860,21 @@ E,29,android/graphics/Paint.CURSOR_BEFORE,2,Android.Graphics.Cursor,Before,remov E,10,android/graphics/Paint.DEV_KERN_TEXT_FLAG,256,Android.Graphics.PaintFlags,DevKernText,keep,flags E,10,android/graphics/Paint.DITHER_FLAG,4,Android.Graphics.PaintFlags,Dither,keep,flags E,19,android/graphics/Paint.EMBEDDED_BITMAP_TEXT_FLAG,1024,Android.Graphics.PaintFlags,EmbeddedBitmapText,keep,flags -?,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_ARMENIAN_HYPHEN,3,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_HYPHEN,2,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_MAQAF,4,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_UCAS_HYPHEN,5,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_ZWJ_AND_HYPHEN,6,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_NO_EDIT,0,,,, -?,29,android/graphics/Paint.END_HYPHEN_EDIT_REPLACE_WITH_HYPHEN,1,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_ARMENIAN_HYPHEN,3,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_HYPHEN,2,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_MAQAF,4,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_UCAS_HYPHEN,5,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_INSERT_ZWJ_AND_HYPHEN,6,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_NO_EDIT,0,,,, +I,29,android/graphics/Paint.END_HYPHEN_EDIT_REPLACE_WITH_HYPHEN,1,,,, E,10,android/graphics/Paint.FAKE_BOLD_TEXT_FLAG,32,Android.Graphics.PaintFlags,FakeBoldText,keep,flags E,10,android/graphics/Paint.FILTER_BITMAP_FLAG,2,Android.Graphics.PaintFlags,FilterBitmap,keep,flags E,15,android/graphics/Paint.HINTING_OFF,0,Android.Graphics.PaintHinting,Off,remove, E,15,android/graphics/Paint.HINTING_ON,1,Android.Graphics.PaintHinting,On,remove, E,10,android/graphics/Paint.LINEAR_TEXT_FLAG,64,Android.Graphics.PaintFlags,LinearText,keep,flags -?,29,android/graphics/Paint.START_HYPHEN_EDIT_INSERT_HYPHEN,1,,,, -?,29,android/graphics/Paint.START_HYPHEN_EDIT_INSERT_ZWJ,2,,,, -?,29,android/graphics/Paint.START_HYPHEN_EDIT_NO_EDIT,0,,,, +I,29,android/graphics/Paint.START_HYPHEN_EDIT_INSERT_HYPHEN,1,,,, +I,29,android/graphics/Paint.START_HYPHEN_EDIT_INSERT_ZWJ,2,,,, +I,29,android/graphics/Paint.START_HYPHEN_EDIT_NO_EDIT,0,,,, E,10,android/graphics/Paint.STRIKE_THRU_TEXT_FLAG,16,Android.Graphics.PaintFlags,StrikeThruText,keep,flags E,10,android/graphics/Paint.SUBPIXEL_TEXT_FLAG,128,Android.Graphics.PaintFlags,SubpixelText,keep,flags E,10,android/graphics/Paint.UNDERLINE_TEXT_FLAG,8,Android.Graphics.PaintFlags,UnderlineText,keep,flags @@ -1771,6 +1914,11 @@ E,10,android/graphics/Typeface.BOLD,1,Android.Graphics.TypefaceStyle,Bold,keep, E,10,android/graphics/Typeface.BOLD_ITALIC,3,Android.Graphics.TypefaceStyle,BoldItalic,keep, E,10,android/graphics/Typeface.ITALIC,2,Android.Graphics.TypefaceStyle,Italic,keep, E,10,android/graphics/Typeface.NORMAL,0,Android.Graphics.TypefaceStyle,Normal,keep, +E,31,android/hardware/BatteryState.STATUS_CHARGING,2,Android.Hardware.BatteryStatus,Charging,remove, +E,31,android/hardware/BatteryState.STATUS_DISCHARGING,3,Android.Hardware.BatteryStatus,Discharging,remove, +E,31,android/hardware/BatteryState.STATUS_FULL,5,Android.Hardware.BatteryStatus,Full,remove, +E,31,android/hardware/BatteryState.STATUS_NOT_CHARGING,4,Android.Hardware.BatteryStatus,NotCharging,remove, +E,31,android/hardware/BatteryState.STATUS_UNKNOWN,1,Android.Hardware.BatteryStatus,Unknown,remove, E,29,android/hardware/biometrics/BiometricManager.BIOMETRIC_ERROR_HW_UNAVAILABLE,1,Android.Hardware.Biometrics.BiometricCode,ErrorHwUnavailable,remove, E,29,android/hardware/biometrics/BiometricManager.BIOMETRIC_ERROR_NO_HARDWARE,12,Android.Hardware.Biometrics.BiometricCode,ErrorNoHardware,remove, E,29,android/hardware/biometrics/BiometricManager.BIOMETRIC_ERROR_NONE_ENROLLED,11,Android.Hardware.Biometrics.BiometricCode,ErrorNoneEnrolled,remove, @@ -1797,6 +1945,9 @@ E,28,android/hardware/biometrics/BiometricPrompt.BIOMETRIC_ERROR_TIMEOUT,3,Andro E,28,android/hardware/biometrics/BiometricPrompt.BIOMETRIC_ERROR_UNABLE_TO_PROCESS,2,Android.Hardware.Biometrics.BiometricErrorCode,UnableToProcess,remove, E,28,android/hardware/biometrics/BiometricPrompt.BIOMETRIC_ERROR_USER_CANCELED,10,Android.Hardware.Biometrics.BiometricErrorCode,UserCanceled,remove, E,28,android/hardware/biometrics/BiometricPrompt.BIOMETRIC_ERROR_VENDOR,8,Android.Hardware.Biometrics.BiometricErrorCode,Vendor,remove, +E,23,android/hardware/Camera.CAMERA_ERROR_EVICTED,2,Android.Hardware.CameraError,Evicted,keep, +E,10,android/hardware/Camera.CAMERA_ERROR_SERVER_DIED,100,Android.Hardware.CameraError,ServerDied,keep, +E,10,android/hardware/Camera.CAMERA_ERROR_UNKNOWN,1,Android.Hardware.CameraError,Unknown,keep, E,10,android/hardware/Camera$CameraInfo.CAMERA_FACING_BACK,0,Android.Hardware.CameraFacing,Back,remove, E,10,android/hardware/Camera$CameraInfo.CAMERA_FACING_FRONT,1,Android.Hardware.CameraFacing,Front,remove, E,10,android/hardware/Camera$Parameters.FOCUS_DISTANCE_FAR_INDEX,2,Android.Hardware.FocusDistance,FarIndex,remove, @@ -1804,19 +1955,11 @@ E,10,android/hardware/Camera$Parameters.FOCUS_DISTANCE_NEAR_INDEX,0,Android.Hard E,10,android/hardware/Camera$Parameters.FOCUS_DISTANCE_OPTIMAL_INDEX,1,Android.Hardware.FocusDistance,OptimalIndex,remove, E,10,android/hardware/Camera$Parameters.PREVIEW_FPS_MAX_INDEX,1,Android.Hardware.Preview,FpsMaxIndex,remove, E,10,android/hardware/Camera$Parameters.PREVIEW_FPS_MIN_INDEX,0,Android.Hardware.Preview,FpsMinIndex,remove, -E,23,android/hardware/Camera.CAMERA_ERROR_EVICTED,2,Android.Hardware.CameraError,Evicted,keep, -E,10,android/hardware/Camera.CAMERA_ERROR_SERVER_DIED,100,Android.Hardware.CameraError,ServerDied,keep, -E,10,android/hardware/Camera.CAMERA_ERROR_UNKNOWN,1,Android.Hardware.CameraError,Unknown,keep, E,21,android/hardware/camera2/CameraAccessException.CAMERA_DISABLED,1,Android.Hardware.Camera2.CameraAccessErrorType,Disabled,keep, E,21,android/hardware/camera2/CameraAccessException.CAMERA_DISCONNECTED,2,Android.Hardware.Camera2.CameraAccessErrorType,Disconnected,keep, E,21,android/hardware/camera2/CameraAccessException.CAMERA_ERROR,3,Android.Hardware.Camera2.CameraAccessErrorType,Error,keep, E,23,android/hardware/camera2/CameraAccessException.CAMERA_IN_USE,4,Android.Hardware.Camera2.CameraAccessErrorType,InUse,keep, -?,23,android/hardware/camera2/CameraAccessException.MAX_CAMERAS_IN_USE,5,,,, -E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_DEVICE,4,Android.Hardware.Camera2.CameraError,CameraDevice,keep, -E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_DISABLED,3,Android.Hardware.Camera2.CameraError,CameraDisabled,keep, -E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_IN_USE,1,Android.Hardware.Camera2.CameraError,CameraInUse,keep, -E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_SERVICE,5,Android.Hardware.Camera2.CameraError,CameraService,keep, -E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_MAX_CAMERAS_IN_USE,2,Android.Hardware.Camera2.CameraError,MaxCamerasInUse,keep, +I,23,android/hardware/camera2/CameraAccessException.MAX_CAMERAS_IN_USE,5,,,, E,30,android/hardware/camera2/CameraDevice.AUDIO_RESTRICTION_NONE,0,Android.Hardware.Camera2.CameraDeviceAudioRestrictionType,None,remove, E,30,android/hardware/camera2/CameraDevice.AUDIO_RESTRICTION_VIBRATION,1,Android.Hardware.Camera2.CameraDeviceAudioRestrictionType,Vibration,remove, E,30,android/hardware/camera2/CameraDevice.AUDIO_RESTRICTION_VIBRATION_SOUND,3,Android.Hardware.Camera2.CameraDeviceAudioRestrictionType,VibrationSound,remove, @@ -1826,6 +1969,16 @@ E,21,android/hardware/camera2/CameraDevice.TEMPLATE_RECORD,3,Android.Hardware.Ca E,21,android/hardware/camera2/CameraDevice.TEMPLATE_STILL_CAPTURE,2,Android.Hardware.Camera2.CameraTemplate,StillCapture,keep, E,21,android/hardware/camera2/CameraDevice.TEMPLATE_VIDEO_SNAPSHOT,4,Android.Hardware.Camera2.CameraTemplate,VideoSnapshot,keep, E,21,android/hardware/camera2/CameraDevice.TEMPLATE_ZERO_SHUTTER_LAG,5,Android.Hardware.Camera2.CameraTemplate,ZeroShutterLag,keep, +E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_DEVICE,4,Android.Hardware.Camera2.CameraError,CameraDevice,keep, +E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_DISABLED,3,Android.Hardware.Camera2.CameraError,CameraDisabled,keep, +E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_IN_USE,1,Android.Hardware.Camera2.CameraError,CameraInUse,keep, +E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_CAMERA_SERVICE,5,Android.Hardware.Camera2.CameraError,CameraService,keep, +E,21,android/hardware/camera2/CameraDevice$StateCallback.ERROR_MAX_CAMERAS_IN_USE,2,Android.Hardware.Camera2.CameraError,MaxCamerasInUse,keep, +E,31,android/hardware/camera2/CameraExtensionCharacteristics.EXTENSION_AUTOMATIC,0,Android.Hardware.Camera2.CameraExtensionTypes,Automatic,remove, +E,31,android/hardware/camera2/CameraExtensionCharacteristics.EXTENSION_BEAUTY,1,Android.Hardware.Camera2.CameraExtensionTypes,Beauty,remove, +E,31,android/hardware/camera2/CameraExtensionCharacteristics.EXTENSION_BOKEH,2,Android.Hardware.Camera2.CameraExtensionTypes,Bokeh,remove, +E,31,android/hardware/camera2/CameraExtensionCharacteristics.EXTENSION_HDR,3,Android.Hardware.Camera2.CameraExtensionTypes,Hdr,remove, +E,31,android/hardware/camera2/CameraExtensionCharacteristics.EXTENSION_NIGHT,4,Android.Hardware.Camera2.CameraExtensionTypes,Night,remove, E,21,android/hardware/camera2/CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST,1,Android.Hardware.Camera2.ColorCorrectionAberrationMode,Fast,keep, E,21,android/hardware/camera2/CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY,2,Android.Hardware.Camera2.ColorCorrectionAberrationMode,HighQuality,keep, E,21,android/hardware/camera2/CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF,0,Android.Hardware.Camera2.ColorCorrectionAberrationMode,Off,keep, @@ -1857,8 +2010,8 @@ E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_MODE_CONTINUOUS_VIDEO,3, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_MODE_EDOF,5,Android.Hardware.Camera2.ControlAFMode,Edof,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_MODE_MACRO,2,Android.Hardware.Camera2.ControlAFMode,Macro,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_MODE_OFF,0,Android.Hardware.Camera2.ControlAFMode,Off,keep, -?,28,android/hardware/camera2/CameraMetadata.CONTROL_AF_SCENE_CHANGE_DETECTED,1,,,, -?,28,android/hardware/camera2/CameraMetadata.CONTROL_AF_SCENE_CHANGE_NOT_DETECTED,0,,,, +I,28,android/hardware/camera2/CameraMetadata.CONTROL_AF_SCENE_CHANGE_DETECTED,1,,,, +I,28,android/hardware/camera2/CameraMetadata.CONTROL_AF_SCENE_CHANGE_NOT_DETECTED,0,,,, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_STATE_ACTIVE_SCAN,3,Android.Hardware.Camera2.ControlAFState,ActiveScan,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_STATE_FOCUSED_LOCKED,4,Android.Hardware.Camera2.ControlAFState,FocusedLocked,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_AF_STATE_INACTIVE,0,Android.Hardware.Camera2.ControlAFState,Inactive,keep, @@ -1928,9 +2081,9 @@ E,21,android/hardware/camera2/CameraMetadata.CONTROL_SCENE_MODE_SUNSET,10,Androi E,21,android/hardware/camera2/CameraMetadata.CONTROL_SCENE_MODE_THEATRE,7,Android.Hardware.Camera2.ControlSceneMode,Theatre,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_VIDEO_STABILIZATION_MODE_OFF,0,Android.Hardware.Camera2.ControlVideoStabilizationMode,Off,keep, E,21,android/hardware/camera2/CameraMetadata.CONTROL_VIDEO_STABILIZATION_MODE_ON,1,Android.Hardware.Camera2.ControlVideoStabilizationMode,On,keep, -?,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_FAST,1,,,, -?,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_HIGH_QUALITY,2,,,, -?,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_OFF,0,,,, +I,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_FAST,1,,,, +I,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_HIGH_QUALITY,2,,,, +I,28,android/hardware/camera2/CameraMetadata.DISTORTION_CORRECTION_MODE_OFF,0,,,, E,21,android/hardware/camera2/CameraMetadata.EDGE_MODE_FAST,1,Android.Hardware.Camera2.EdgeMode,Fast,keep, E,21,android/hardware/camera2/CameraMetadata.EDGE_MODE_HIGH_QUALITY,2,Android.Hardware.Camera2.EdgeMode,HighQuality,keep, E,21,android/hardware/camera2/CameraMetadata.EDGE_MODE_OFF,0,Android.Hardware.Camera2.EdgeMode,Off,keep, @@ -1959,13 +2112,13 @@ E,21,android/hardware/camera2/CameraMetadata.LENS_INFO_FOCUS_DISTANCE_CALIBRATIO E,21,android/hardware/camera2/CameraMetadata.LENS_INFO_FOCUS_DISTANCE_CALIBRATION_UNCALIBRATED,0,Android.Hardware.Camera2.LensInfoFocusDistanceCalibration,Uncalibrated,keep, E,21,android/hardware/camera2/CameraMetadata.LENS_OPTICAL_STABILIZATION_MODE_OFF,0,Android.Hardware.Camera2.LensOpticalStabilizationMode,Off,keep, E,21,android/hardware/camera2/CameraMetadata.LENS_OPTICAL_STABILIZATION_MODE_ON,1,Android.Hardware.Camera2.LensOpticalStabilizationMode,On,keep, -?,28,android/hardware/camera2/CameraMetadata.LENS_POSE_REFERENCE_GYROSCOPE,1,,,, -?,28,android/hardware/camera2/CameraMetadata.LENS_POSE_REFERENCE_PRIMARY_CAMERA,0,,,, +I,28,android/hardware/camera2/CameraMetadata.LENS_POSE_REFERENCE_GYROSCOPE,1,,,, +I,28,android/hardware/camera2/CameraMetadata.LENS_POSE_REFERENCE_PRIMARY_CAMERA,0,,,, I,30,android/hardware/camera2/CameraMetadata.LENS_POSE_REFERENCE_UNDEFINED,2,,,, E,21,android/hardware/camera2/CameraMetadata.LENS_STATE_MOVING,1,Android.Hardware.Camera2.LensState,Moving,keep, E,21,android/hardware/camera2/CameraMetadata.LENS_STATE_STATIONARY,0,Android.Hardware.Camera2.LensState,Stationary,keep, -?,28,android/hardware/camera2/CameraMetadata.LOGICAL_MULTI_CAMERA_SENSOR_SYNC_TYPE_APPROXIMATE,0,,,, -?,28,android/hardware/camera2/CameraMetadata.LOGICAL_MULTI_CAMERA_SENSOR_SYNC_TYPE_CALIBRATED,1,,,, +I,28,android/hardware/camera2/CameraMetadata.LOGICAL_MULTI_CAMERA_SENSOR_SYNC_TYPE_APPROXIMATE,0,,,, +I,28,android/hardware/camera2/CameraMetadata.LOGICAL_MULTI_CAMERA_SENSOR_SYNC_TYPE_CALIBRATED,1,,,, E,21,android/hardware/camera2/CameraMetadata.NOISE_REDUCTION_MODE_FAST,1,Android.Hardware.Camera2.NoiseReductionMode,Fast,keep, E,21,android/hardware/camera2/CameraMetadata.NOISE_REDUCTION_MODE_HIGH_QUALITY,2,Android.Hardware.Camera2.NoiseReductionMode,HighQuality,keep, E,23,android/hardware/camera2/CameraMetadata.NOISE_REDUCTION_MODE_MINIMAL,3,Android.Hardware.Camera2.NoiseReductionMode,Minimal,keep, @@ -1984,11 +2137,18 @@ E,30,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_OFFL E,23,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_PRIVATE_REPROCESSING,4,Android.Hardware.Camera2.RequestAvailableCapabilities,PrivateReprocessing,keep, E,21,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW,3,Android.Hardware.Camera2.RequestAvailableCapabilities,Raw,keep, E,22,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_READ_SENSOR_SETTINGS,5,Android.Hardware.Camera2.RequestAvailableCapabilities,ReadSensorSettings,keep, +E,31,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_REMOSAIC_REPROCESSING,17,Android.Hardware.Camera2.RequestAvailableCapabilities,RemosaicReprocessing,remove, E,29,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_SECURE_IMAGE_DATA,13,Android.Hardware.Camera2.RequestAvailableCapabilities,SecureImageData,keep, E,30,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_SYSTEM_CAMERA,14,Android.Hardware.Camera2.RequestAvailableCapabilities,SystemCamera,remove, +E,31,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_ULTRA_HIGH_RESOLUTION_SENSOR,16,Android.Hardware.Camera2.RequestAvailableCapabilities,UltraHighResolutionSensor,remove, E,23,android/hardware/camera2/CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_YUV_REPROCESSING,7,Android.Hardware.Camera2.RequestAvailableCapabilities,YuvReprocessing,keep, E,21,android/hardware/camera2/CameraMetadata.SCALER_CROPPING_TYPE_CENTER_ONLY,0,Android.Hardware.Camera2.ScalerCroppingType,CenterOnly,keep, E,21,android/hardware/camera2/CameraMetadata.SCALER_CROPPING_TYPE_FREEFORM,1,Android.Hardware.Camera2.ScalerCroppingType,Freeform,keep, +E,31,android/hardware/camera2/CameraMetadata.SCALER_ROTATE_AND_CROP_180,2,Android.Hardware.Camera2.ScalerRotateAndCropType,Rotate180,remove, +E,31,android/hardware/camera2/CameraMetadata.SCALER_ROTATE_AND_CROP_270,3,Android.Hardware.Camera2.ScalerRotateAndCropType,Rotate270,remove, +E,31,android/hardware/camera2/CameraMetadata.SCALER_ROTATE_AND_CROP_90,1,Android.Hardware.Camera2.ScalerRotateAndCropType,Rotate90,remove, +E,31,android/hardware/camera2/CameraMetadata.SCALER_ROTATE_AND_CROP_AUTO,4,Android.Hardware.Camera2.ScalerRotateAndCropType,Auto,remove, +E,31,android/hardware/camera2/CameraMetadata.SCALER_ROTATE_AND_CROP_NONE,0,Android.Hardware.Camera2.ScalerRotateAndCropType,None,remove, E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_BGGR,3,Android.Hardware.Camera2.SensorInfoColorFilterArrangement,Bggr,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_GBRG,2,Android.Hardware.Camera2.SensorInfoColorFilterArrangement,Gbrg,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_GRBG,1,Android.Hardware.Camera2.SensorInfoColorFilterArrangement,Grbg,keep, @@ -1998,6 +2158,8 @@ E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_COLOR_FILTER_ARRANGEMEN E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_RGGB,0,Android.Hardware.Camera2.SensorInfoColorFilterArrangement,Rggb,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME,1,Android.Hardware.Camera2.SensorInfoTimestampSource,Realtime,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN,0,Android.Hardware.Camera2.SensorInfoTimestampSource,Unknown,keep, +E,31,android/hardware/camera2/CameraMetadata.SENSOR_PIXEL_MODE_DEFAULT,0,Android.Hardware.Camera2.SensorPixelMode,Default,remove, +E,31,android/hardware/camera2/CameraMetadata.SENSOR_PIXEL_MODE_MAXIMUM_RESOLUTION,1,Android.Hardware.Camera2.SensorPixelMode,MaximumResolution,remove, E,21,android/hardware/camera2/CameraMetadata.SENSOR_REFERENCE_ILLUMINANT1_CLOUDY_WEATHER,10,Android.Hardware.Camera2.SensorReferenceIlluminant1,CloudyWeather,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_REFERENCE_ILLUMINANT1_COOL_WHITE_FLUORESCENT,14,Android.Hardware.Camera2.SensorReferenceIlluminant1,CoolWhiteFluorescent,keep, E,21,android/hardware/camera2/CameraMetadata.SENSOR_REFERENCE_ILLUMINANT1_D50,23,Android.Hardware.Camera2.SensorReferenceIlluminant1,D50,keep, @@ -2031,8 +2193,8 @@ E,21,android/hardware/camera2/CameraMetadata.STATISTICS_FACE_DETECT_MODE_OFF,0,A E,21,android/hardware/camera2/CameraMetadata.STATISTICS_FACE_DETECT_MODE_SIMPLE,1,Android.Hardware.Camera2.StatisticsFaceDetectMode,Simple,keep, E,21,android/hardware/camera2/CameraMetadata.STATISTICS_LENS_SHADING_MAP_MODE_OFF,0,Android.Hardware.Camera2.StatisticsLensShadingMapMode,Off,keep, E,21,android/hardware/camera2/CameraMetadata.STATISTICS_LENS_SHADING_MAP_MODE_ON,1,Android.Hardware.Camera2.StatisticsLensShadingMapMode,On,keep, -?,28,android/hardware/camera2/CameraMetadata.STATISTICS_OIS_DATA_MODE_OFF,0,,,, -?,28,android/hardware/camera2/CameraMetadata.STATISTICS_OIS_DATA_MODE_ON,1,,,, +I,28,android/hardware/camera2/CameraMetadata.STATISTICS_OIS_DATA_MODE_OFF,0,,,, +I,28,android/hardware/camera2/CameraMetadata.STATISTICS_OIS_DATA_MODE_ON,1,,,, E,21,android/hardware/camera2/CameraMetadata.STATISTICS_SCENE_FLICKER_50HZ,1,Android.Hardware.Camera2.StatisticsSceneFlicker,S50hz,keep, E,21,android/hardware/camera2/CameraMetadata.STATISTICS_SCENE_FLICKER_60HZ,2,Android.Hardware.Camera2.StatisticsSceneFlicker,S60hz,keep, E,21,android/hardware/camera2/CameraMetadata.STATISTICS_SCENE_FLICKER_NONE,0,Android.Hardware.Camera2.StatisticsSceneFlicker,None,keep, @@ -2048,15 +2210,15 @@ E,23,android/hardware/camera2/CameraMetadata.TONEMAP_PRESET_CURVE_SRGB,0,Android E,30,android/hardware/camera2/CameraOfflineSession$CameraOfflineSessionCallback.STATUS_INTERNAL_ERROR,0,Android.Hardware.Camera2.SessionErrorStatus,InternalError,remove, E,21,android/hardware/camera2/CaptureFailure.REASON_ERROR,0,Android.Hardware.Camera2.CaptureFailureReason,Error,keep, E,21,android/hardware/camera2/CaptureFailure.REASON_FLUSHED,1,Android.Hardware.Camera2.CaptureFailureReason,Flushed,keep, -?,21,android/hardware/camera2/DngCreator.MAX_THUMBNAIL_DIMENSION,256,,,, -?,21,android/hardware/camera2/params/BlackLevelPattern.COUNT,4,,,, -?,21,android/hardware/camera2/params/Face.ID_UNSUPPORTED,-1,,,, -?,21,android/hardware/camera2/params/Face.SCORE_MAX,100,,,, -?,21,android/hardware/camera2/params/Face.SCORE_MIN,1,,,, -?,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_DONT_CARE,0,,,, -?,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_MAX,1000,,,, -?,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_MIN,0,,,, -?,24,android/hardware/camera2/params/OutputConfiguration.SURFACE_GROUP_ID_NONE,-1,,,, +I,21,android/hardware/camera2/DngCreator.MAX_THUMBNAIL_DIMENSION,256,,,, +I,21,android/hardware/camera2/params/BlackLevelPattern.COUNT,4,,,, +I,21,android/hardware/camera2/params/Face.ID_UNSUPPORTED,-1,,,, +I,21,android/hardware/camera2/params/Face.SCORE_MAX,100,,,, +I,21,android/hardware/camera2/params/Face.SCORE_MIN,1,,,, +I,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_DONT_CARE,0,,,, +I,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_MAX,1000,,,, +I,21,android/hardware/camera2/params/MeteringRectangle.METERING_WEIGHT_MIN,0,,,, +I,24,android/hardware/camera2/params/OutputConfiguration.SURFACE_GROUP_ID_NONE,-1,,,, E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_LOW_LATENCY_SNAPSHOT,6,Android.Hardware.Camera2.Params.UsecaseMode,LowLatencySnapshot,remove, E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_PREVIEW,0,Android.Hardware.Camera2.Params.UsecaseMode,Preview,remove, E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_RAW,5,Android.Hardware.Camera2.Params.UsecaseMode,Raw,remove, @@ -2064,17 +2226,25 @@ E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_R E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_SNAPSHOT,3,Android.Hardware.Camera2.Params.UsecaseMode,Snapshot,remove, E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_VIDEO_SNAPSHOT,2,Android.Hardware.Camera2.Params.UsecaseMode,VideoSnapshot,remove, E,29,android/hardware/camera2/params/RecommendedStreamConfigurationMap.USECASE_ZSL,4,Android.Hardware.Camera2.Params.UsecaseMode,Zsl,remove, -?,21,android/hardware/camera2/params/RggbChannelVector.BLUE,3,,,, -?,21,android/hardware/camera2/params/RggbChannelVector.COUNT,4,,,, -?,21,android/hardware/camera2/params/RggbChannelVector.GREEN_EVEN,1,,,, -?,21,android/hardware/camera2/params/RggbChannelVector.GREEN_ODD,2,,,, -?,21,android/hardware/camera2/params/RggbChannelVector.RED,0,,,, +I,21,android/hardware/camera2/params/RggbChannelVector.BLUE,3,,,, +I,21,android/hardware/camera2/params/RggbChannelVector.COUNT,4,,,, +I,21,android/hardware/camera2/params/RggbChannelVector.GREEN_EVEN,1,,,, +I,21,android/hardware/camera2/params/RggbChannelVector.GREEN_ODD,2,,,, +I,21,android/hardware/camera2/params/RggbChannelVector.RED,0,,,, E,28,android/hardware/camera2/params/SessionConfiguration.SESSION_HIGH_SPEED,1,Android.Hardware.Camera2.Params.SessionType,HighSpeed,remove, E,28,android/hardware/camera2/params/SessionConfiguration.SESSION_REGULAR,0,Android.Hardware.Camera2.Params.SessionType,Regular,remove, E,21,android/hardware/camera2/params/TonemapCurve.CHANNEL_BLUE,2,Android.Hardware.Camera2.Params.TonemapCurveChannel,Blue,keep, E,21,android/hardware/camera2/params/TonemapCurve.CHANNEL_GREEN,1,Android.Hardware.Camera2.Params.TonemapCurveChannel,Green,keep, E,21,android/hardware/camera2/params/TonemapCurve.CHANNEL_RED,0,Android.Hardware.Camera2.Params.TonemapCurveChannel,Red,keep, -?,21,android/hardware/camera2/params/TonemapCurve.POINT_SIZE,2,,,, +I,21,android/hardware/camera2/params/TonemapCurve.POINT_SIZE,2,,,, +E,31,android/hardware/display/DeviceProductInfo.CONNECTION_TO_SINK_BUILT_IN,1,Android.Hardware.Display.ConnectionToSinkType,BuiltIn,remove, +E,31,android/hardware/display/DeviceProductInfo.CONNECTION_TO_SINK_DIRECT,2,Android.Hardware.Display.ConnectionToSinkType,Direct,remove, +E,31,android/hardware/display/DeviceProductInfo.CONNECTION_TO_SINK_TRANSITIVE,3,Android.Hardware.Display.ConnectionToSinkType,Transitive,remove, +E,31,android/hardware/display/DeviceProductInfo.CONNECTION_TO_SINK_UNKNOWN,0,Android.Hardware.Display.ConnectionToSinkType,Unknown,remove, +E,31,android/hardware/display/DisplayManager.MATCH_CONTENT_FRAMERATE_ALWAYS,2,Android.Hardware.Display.MatchContentFramerate,Always,remove, +E,31,android/hardware/display/DisplayManager.MATCH_CONTENT_FRAMERATE_NEVER,0,Android.Hardware.Display.MatchContentFramerate,Never,remove, +E,31,android/hardware/display/DisplayManager.MATCH_CONTENT_FRAMERATE_SEAMLESSS_ONLY,1,Android.Hardware.Display.MatchContentFramerate,SeamlessOnly,remove, +E,31,android/hardware/display/DisplayManager.MATCH_CONTENT_FRAMERATE_UNKNOWN,-1,Android.Hardware.Display.MatchContentFramerate,Unknown,remove, E,21,android/hardware/display/DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR,16,Android.Hardware.Display.VirtualDisplayFlags,AutoMirror,remove, E,20,android/hardware/display/DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY,8,Android.Hardware.Display.VirtualDisplayFlags,OwnContentOnly,remove, E,19,android/hardware/display/DisplayManager.VIRTUAL_DISPLAY_FLAG_PRESENTATION,2,Android.Hardware.Display.VirtualDisplayFlags,Presentation,remove, @@ -2111,6 +2281,11 @@ E,26,android/hardware/HardwareBuffer.RGBA_FP16,22,Android.Hardware.HardwareBuffe E,26,android/hardware/HardwareBuffer.RGBX_8888,2,Android.Hardware.HardwareBufferFormat,Rgbx8888,keep, E,28,android/hardware/HardwareBuffer.S_UI8,53,Android.Hardware.HardwareBufferFormat,SUi8,keep, E,30,android/hardware/HardwareBuffer.YCBCR_420_888,35,Android.Hardware.HardwareBufferFormat,Ycbcr420888,remove, +E,31,android/hardware/lights/Light.LIGHT_CAPABILITY_BRIGHTNESS,1,Android.Hardware.Lights.LightCapability,Brightness,remove, +E,31,android/hardware/lights/Light.LIGHT_CAPABILITY_RGB,0,Android.Hardware.Lights.LightCapability,Rgb,remove, +E,31,android/hardware/lights/Light.LIGHT_TYPE_INPUT,10001,Android.Hardware.Lights.LightType,Input,remove, +E,31,android/hardware/lights/Light.LIGHT_TYPE_MICROPHONE,8,Android.Hardware.Lights.LightType,Microphone,remove, +E,31,android/hardware/lights/Light.LIGHT_TYPE_PLAYER_ID,10002,Android.Hardware.Lights.LightType,PlayerId,remove, E,18,android/hardware/location/GeofenceHardware.GEOFENCE_ENTERED,1,Android.Hardware.Location.GeofenceTransition,Entered,remove,flags E,18,android/hardware/location/GeofenceHardware.GEOFENCE_ERROR_ID_EXISTS,2,Android.Hardware.Location.GeofenceError,IdExists,remove, E,18,android/hardware/location/GeofenceHardware.GEOFENCE_ERROR_ID_UNKNOWN,3,Android.Hardware.Location.GeofenceError,IdUnknown,remove, @@ -2204,6 +2379,8 @@ E,20,android/hardware/SensorManager.SENSOR_STATUS_NO_CONTACT,-1,Android.Hardware E,10,android/hardware/SensorManager.SENSOR_STATUS_UNRELIABLE,0,Android.Hardware.SensorStatus,Unreliable,keep, R,0,android/hardware/SensorManager.SENSOR_TEMPERATURE,4,,,remove, R,0,android/hardware/SensorManager.SENSOR_TRICORDER,64,,,remove, +E,31,android/hardware/SensorPrivacyManager$Sensors.CAMERA,2,Android.Hardware.PrivacySensors,Camera,remove, +E,31,android/hardware/SensorPrivacyManager$Sensors.MICROPHONE,1,Android.Hardware.PrivacySensors,Microphone,remove, E,15,android/hardware/usb/UsbConstants.USB_CLASS_APP_SPEC,254,Android.Hardware.Usb.UsbClass,AppSpec,keep, E,15,android/hardware/usb/UsbConstants.USB_CLASS_AUDIO,1,Android.Hardware.Usb.UsbClass,Audio,keep, E,15,android/hardware/usb/UsbConstants.USB_CLASS_CDC_DATA,10,Android.Hardware.Usb.UsbClass,CdcData,keep, @@ -2230,538 +2407,538 @@ E,15,android/hardware/usb/UsbConstants.USB_ENDPOINT_XFER_CONTROL,0,Android.Hardw E,15,android/hardware/usb/UsbConstants.USB_ENDPOINT_XFER_INT,3,Android.Hardware.Usb.UsbAddressing,XferInterrupt,keep, E,15,android/hardware/usb/UsbConstants.USB_ENDPOINT_XFER_ISOC,1,Android.Hardware.Usb.UsbAddressing,XferIsochronous,keep, E,15,android/hardware/usb/UsbConstants.USB_ENDPOINT_XFERTYPE_MASK,3,Android.Hardware.Usb.UsbAddressing,XferTypeMask,keep, -?,15,android/hardware/usb/UsbConstants.USB_INTERFACE_SUBCLASS_BOOT,1,,,, -?,15,android/hardware/usb/UsbConstants.USB_SUBCLASS_VENDOR_SPEC,255,,,, -?,15,android/hardware/usb/UsbConstants.USB_TYPE_CLASS,32,,,, -?,15,android/hardware/usb/UsbConstants.USB_TYPE_MASK,96,,,, -?,15,android/hardware/usb/UsbConstants.USB_TYPE_RESERVED,96,,,, -?,15,android/hardware/usb/UsbConstants.USB_TYPE_STANDARD,0,,,, -?,15,android/hardware/usb/UsbConstants.USB_TYPE_VENDOR,64,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.ADLAM_ID,263,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.AEGEAN_NUMBERS_ID,119,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.AHOM_ID,253,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ALCHEMICAL_SYMBOLS_ID,208,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ALPHABETIC_PRESENTATION_FORMS_ID,80,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ANATOLIAN_HIEROGLYPHS_ID,254,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_GREEK_MUSICAL_NOTATION_ID,126,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_GREEK_NUMBERS_ID,127,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_SYMBOLS_ID,165,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_EXTENDED_A_ID,210,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_ID,12,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS_ID,211,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_PRESENTATION_FORMS_A_ID,81,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_PRESENTATION_FORMS_B_ID,85,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_SUPPLEMENT_ID,128,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARMENIAN_ID,10,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ARROWS_ID,46,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.AVESTAN_ID,188,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BALINESE_ID,147,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BAMUM_ID,177,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BAMUM_SUPPLEMENT_ID,202,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BASIC_LATIN_ID,1,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BASSA_VAH_ID,221,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BATAK_ID,199,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BENGALI_ID,16,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.BHAIKSUKI_ID,264,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BLOCK_ELEMENTS_ID,53,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BOPOMOFO_EXTENDED_ID,67,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BOPOMOFO_ID,64,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BOX_DRAWING_ID,52,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BRAHMI_ID,201,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BRAILLE_PATTERNS_ID,57,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BUGINESE_ID,129,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BUHID_ID,100,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.BYZANTINE_MUSICAL_SYMBOLS_ID,91,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CARIAN_ID,168,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CAUCASIAN_ALBANIAN_ID,222,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CHAKMA_ID,212,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CHAM_ID,164,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CHEROKEE_ID,32,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CHEROKEE_SUPPLEMENT_ID,255,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.CHESS_SYMBOLS_ID,281,,,, +I,15,android/hardware/usb/UsbConstants.USB_INTERFACE_SUBCLASS_BOOT,1,,,, +I,15,android/hardware/usb/UsbConstants.USB_SUBCLASS_VENDOR_SPEC,255,,,, +I,15,android/hardware/usb/UsbConstants.USB_TYPE_CLASS,32,,,, +I,15,android/hardware/usb/UsbConstants.USB_TYPE_MASK,96,,,, +I,15,android/hardware/usb/UsbConstants.USB_TYPE_RESERVED,96,,,, +I,15,android/hardware/usb/UsbConstants.USB_TYPE_STANDARD,0,,,, +I,15,android/hardware/usb/UsbConstants.USB_TYPE_VENDOR,64,,,, +A,0,,0,Android.Icu.Lang.FoldCaseOptions,None,remove, +E,24,android/icu/lang/UCharacter.FOLD_CASE_DEFAULT,0,Android.Icu.Lang.FoldCaseOptions,Default,remove, +E,24,android/icu/lang/UCharacter.FOLD_CASE_EXCLUDE_SPECIAL_I,1,Android.Icu.Lang.FoldCaseOptions,ExcludeSpecialI,remove, +I,24,android/icu/lang/UCharacter.MAX_CODE_POINT,1114111,,,, +I,24,android/icu/lang/UCharacter.MAX_RADIX,36,,,, +I,24,android/icu/lang/UCharacter.MAX_VALUE,1114111,,,, +I,24,android/icu/lang/UCharacter.MIN_CODE_POINT,0,,,, +I,24,android/icu/lang/UCharacter.MIN_RADIX,2,,,, +I,24,android/icu/lang/UCharacter.MIN_SUPPLEMENTARY_CODE_POINT,65536,,,, +I,24,android/icu/lang/UCharacter.MIN_VALUE,0,,,, +I,24,android/icu/lang/UCharacter.REPLACEMENT_CHAR,65533,,,, +I,24,android/icu/lang/UCharacter.SUPPLEMENTARY_MIN_VALUE,65536,,,, +A,0,,0,Android.Icu.Lang.TitlecaseOptions,None,remove, +E,24,android/icu/lang/UCharacter.TITLECASE_NO_BREAK_ADJUSTMENT,512,Android.Icu.Lang.TitlecaseOptions,NoBreakAdjustment,remove, +E,24,android/icu/lang/UCharacter.TITLECASE_NO_LOWERCASE,256,Android.Icu.Lang.TitlecaseOptions,NoLowercase,remove, +I,26,android/icu/lang/UCharacter$UnicodeBlock.ADLAM_ID,263,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.AEGEAN_NUMBERS_ID,119,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.AHOM_ID,253,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ALCHEMICAL_SYMBOLS_ID,208,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ALPHABETIC_PRESENTATION_FORMS_ID,80,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ANATOLIAN_HIEROGLYPHS_ID,254,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_GREEK_MUSICAL_NOTATION_ID,126,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_GREEK_NUMBERS_ID,127,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ANCIENT_SYMBOLS_ID,165,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_EXTENDED_A_ID,210,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_ID,12,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS_ID,211,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_PRESENTATION_FORMS_A_ID,81,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_PRESENTATION_FORMS_B_ID,85,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARABIC_SUPPLEMENT_ID,128,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARMENIAN_ID,10,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ARROWS_ID,46,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.AVESTAN_ID,188,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BALINESE_ID,147,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BAMUM_ID,177,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BAMUM_SUPPLEMENT_ID,202,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BASIC_LATIN_ID,1,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BASSA_VAH_ID,221,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BATAK_ID,199,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BENGALI_ID,16,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.BHAIKSUKI_ID,264,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BLOCK_ELEMENTS_ID,53,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BOPOMOFO_EXTENDED_ID,67,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BOPOMOFO_ID,64,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BOX_DRAWING_ID,52,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BRAHMI_ID,201,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BRAILLE_PATTERNS_ID,57,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BUGINESE_ID,129,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BUHID_ID,100,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.BYZANTINE_MUSICAL_SYMBOLS_ID,91,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CARIAN_ID,168,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CAUCASIAN_ALBANIAN_ID,222,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CHAKMA_ID,212,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CHAM_ID,164,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CHEROKEE_ID,32,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CHEROKEE_SUPPLEMENT_ID,255,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.CHESS_SYMBOLS_ID,281,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.CHORASMIAN_ID,301,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_FORMS_ID,83,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_ID,69,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS_ID,79,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT_ID,95,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_RADICALS_SUPPLEMENT_ID,58,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_STROKES_ID,130,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION_ID,61,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A_ID,70,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B_ID,94,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C_ID,197,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D_ID,209,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E_ID,256,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F_ID,274,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_FORMS_ID,83,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_ID,69,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS_ID,79,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT_ID,95,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_RADICALS_SUPPLEMENT_ID,58,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_STROKES_ID,130,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION_ID,61,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A_ID,70,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B_ID,94,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C_ID,197,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D_ID,209,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E_ID,256,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F_ID,274,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G_ID,302,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_ID,71,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_EXTENDED_ID,224,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_ID,7,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_SUPPLEMENT_ID,131,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_HALF_MARKS_ID,82,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_MARKS_FOR_SYMBOLS_ID,43,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COMMON_INDIC_NUMBER_FORMS_ID,178,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CONTROL_PICTURES_ID,49,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COPTIC_EPACT_NUMBERS_ID,223,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COPTIC_ID,132,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.COUNTING_ROD_NUMERALS_ID,154,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CUNEIFORM_ID,152,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CUNEIFORM_NUMBERS_AND_PUNCTUATION_ID,153,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CURRENCY_SYMBOLS_ID,42,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYPRIOT_SYLLABARY_ID,123,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_A_ID,158,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_B_ID,160,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_C_ID,265,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_ID,9,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_SUPPLEMENT_ID,97,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_SUPPLEMENTARY_ID,97,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DESERET_ID,90,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DEVANAGARI_EXTENDED_ID,179,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DEVANAGARI_ID,15,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DINGBATS_ID,56,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_ID,71,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_EXTENDED_ID,224,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_ID,7,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_DIACRITICAL_MARKS_SUPPLEMENT_ID,131,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_HALF_MARKS_ID,82,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMBINING_MARKS_FOR_SYMBOLS_ID,43,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COMMON_INDIC_NUMBER_FORMS_ID,178,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CONTROL_PICTURES_ID,49,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COPTIC_EPACT_NUMBERS_ID,223,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COPTIC_ID,132,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.COUNTING_ROD_NUMERALS_ID,154,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CUNEIFORM_ID,152,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CUNEIFORM_NUMBERS_AND_PUNCTUATION_ID,153,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CURRENCY_SYMBOLS_ID,42,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYPRIOT_SYLLABARY_ID,123,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_A_ID,158,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_B_ID,160,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_EXTENDED_C_ID,265,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_ID,9,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_SUPPLEMENT_ID,97,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.CYRILLIC_SUPPLEMENTARY_ID,97,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DESERET_ID,90,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DEVANAGARI_EXTENDED_ID,179,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DEVANAGARI_ID,15,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DINGBATS_ID,56,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.DIVES_AKURU_ID,303,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.DOGRA_ID,282,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DOMINO_TILES_ID,171,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.DUPLOYAN_ID,225,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.EARLY_DYNASTIC_CUNEIFORM_ID,257,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.DOGRA_ID,282,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DOMINO_TILES_ID,171,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.DUPLOYAN_ID,225,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.EARLY_DYNASTIC_CUNEIFORM_ID,257,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.EGYPTIAN_HIEROGLYPH_FORMAT_CONTROLS_ID,292,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.EGYPTIAN_HIEROGLYPHS_ID,194,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ELBASAN_ID,226,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.EGYPTIAN_HIEROGLYPHS_ID,194,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ELBASAN_ID,226,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.ELYMAIC_ID,293,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.EMOTICONS_ID,206,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_ALPHANUMERIC_SUPPLEMENT_ID,195,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_ALPHANUMERICS_ID,51,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_CJK_LETTERS_AND_MONTHS_ID,68,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_IDEOGRAPHIC_SUPPLEMENT_ID,196,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_EXTENDED_A_ID,200,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_EXTENDED_ID,133,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_ID,31,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_SUPPLEMENT_ID,134,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GENERAL_PUNCTUATION_ID,40,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GEOMETRIC_SHAPES_EXTENDED_ID,227,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GEOMETRIC_SHAPES_ID,54,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_EXTENDED_ID,283,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_ID,29,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_SUPPLEMENT_ID,135,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GLAGOLITIC_ID,136,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.GLAGOLITIC_SUPPLEMENT_ID,266,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GOTHIC_ID,89,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GRANTHA_ID,228,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GREEK_EXTENDED_ID,39,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GREEK_ID,8,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GUJARATI_ID,18,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.GUNJALA_GONDI_ID,284,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.GURMUKHI_ID,17,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS_ID,87,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_COMPATIBILITY_JAMO_ID,65,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_EXTENDED_A_ID,180,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_EXTENDED_B_ID,185,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_ID,30,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_SYLLABLES_ID,74,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.HANIFI_ROHINGYA_ID,285,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HANUNOO_ID,99,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HATRAN_ID,258,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HEBREW_ID,11,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HIGH_PRIVATE_USE_SURROGATES_ID,76,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HIGH_SURROGATES_ID,75,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.HIRAGANA_ID,62,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.IDEOGRAPHIC_DESCRIPTION_CHARACTERS_ID,60,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION_ID,267,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.IMPERIAL_ARAMAIC_ID,186,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.INDIC_SIYAQ_NUMBERS_ID,286,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.INSCRIPTIONAL_PAHLAVI_ID,190,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.INSCRIPTIONAL_PARTHIAN_ID,189,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.INVALID_CODE_ID,-1,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.IPA_EXTENSIONS_ID,5,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.JAVANESE_ID,181,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KAITHI_ID,193,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.KANA_EXTENDED_A_ID,275,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KANA_SUPPLEMENT_ID,203,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KANBUN_ID,66,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KANGXI_RADICALS_ID,59,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KANNADA_ID,22,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KATAKANA_ID,63,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KATAKANA_PHONETIC_EXTENSIONS_ID,107,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KAYAH_LI_ID,162,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KHAROSHTHI_ID,137,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.EMOTICONS_ID,206,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_ALPHANUMERIC_SUPPLEMENT_ID,195,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_ALPHANUMERICS_ID,51,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_CJK_LETTERS_AND_MONTHS_ID,68,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ENCLOSED_IDEOGRAPHIC_SUPPLEMENT_ID,196,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_EXTENDED_A_ID,200,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_EXTENDED_ID,133,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_ID,31,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ETHIOPIC_SUPPLEMENT_ID,134,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GENERAL_PUNCTUATION_ID,40,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GEOMETRIC_SHAPES_EXTENDED_ID,227,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GEOMETRIC_SHAPES_ID,54,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_EXTENDED_ID,283,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_ID,29,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GEORGIAN_SUPPLEMENT_ID,135,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GLAGOLITIC_ID,136,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.GLAGOLITIC_SUPPLEMENT_ID,266,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GOTHIC_ID,89,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GRANTHA_ID,228,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GREEK_EXTENDED_ID,39,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GREEK_ID,8,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GUJARATI_ID,18,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.GUNJALA_GONDI_ID,284,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.GURMUKHI_ID,17,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS_ID,87,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_COMPATIBILITY_JAMO_ID,65,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_EXTENDED_A_ID,180,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_EXTENDED_B_ID,185,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_JAMO_ID,30,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANGUL_SYLLABLES_ID,74,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.HANIFI_ROHINGYA_ID,285,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HANUNOO_ID,99,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HATRAN_ID,258,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HEBREW_ID,11,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HIGH_PRIVATE_USE_SURROGATES_ID,76,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HIGH_SURROGATES_ID,75,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.HIRAGANA_ID,62,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.IDEOGRAPHIC_DESCRIPTION_CHARACTERS_ID,60,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION_ID,267,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.IMPERIAL_ARAMAIC_ID,186,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.INDIC_SIYAQ_NUMBERS_ID,286,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.INSCRIPTIONAL_PAHLAVI_ID,190,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.INSCRIPTIONAL_PARTHIAN_ID,189,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.INVALID_CODE_ID,-1,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.IPA_EXTENSIONS_ID,5,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.JAVANESE_ID,181,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KAITHI_ID,193,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.KANA_EXTENDED_A_ID,275,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KANA_SUPPLEMENT_ID,203,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KANBUN_ID,66,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KANGXI_RADICALS_ID,59,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KANNADA_ID,22,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KATAKANA_ID,63,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KATAKANA_PHONETIC_EXTENSIONS_ID,107,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KAYAH_LI_ID,162,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KHAROSHTHI_ID,137,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.KHITAN_SMALL_SCRIPT_ID,304,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KHMER_ID,36,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KHMER_SYMBOLS_ID,113,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KHOJKI_ID,229,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.KHUDAWADI_ID,230,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LAO_ID,26,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_1_SUPPLEMENT_ID,2,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_A_ID,3,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_ADDITIONAL_ID,38,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_B_ID,4,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_C_ID,148,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_D_ID,149,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_E_ID,231,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LEPCHA_ID,156,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LETTERLIKE_SYMBOLS_ID,44,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LIMBU_ID,111,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_A_ID,232,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_B_IDEOGRAMS_ID,118,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_B_SYLLABARY_ID,117,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LISU_ID,176,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KHMER_ID,36,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KHMER_SYMBOLS_ID,113,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KHOJKI_ID,229,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.KHUDAWADI_ID,230,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LAO_ID,26,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_1_SUPPLEMENT_ID,2,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_A_ID,3,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_ADDITIONAL_ID,38,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_B_ID,4,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_C_ID,148,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_D_ID,149,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LATIN_EXTENDED_E_ID,231,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LEPCHA_ID,156,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LETTERLIKE_SYMBOLS_ID,44,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LIMBU_ID,111,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_A_ID,232,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_B_IDEOGRAMS_ID,118,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LINEAR_B_SYLLABARY_ID,117,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LISU_ID,176,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.LISU_SUPPLEMENT_ID,305,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LOW_SURROGATES_ID,77,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LYCIAN_ID,167,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.LYDIAN_ID,169,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MAHAJANI_ID,233,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MAHJONG_TILES_ID,170,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.MAKASAR_ID,287,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MALAYALAM_ID,23,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MANDAIC_ID,198,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MANICHAEAN_ID,234,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.MARCHEN_ID,268,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.MASARAM_GONDI_ID,276,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MATHEMATICAL_ALPHANUMERIC_SYMBOLS_ID,93,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MATHEMATICAL_OPERATORS_ID,47,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.MAYAN_NUMERALS_ID,288,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.MEDEFAIDRIN_ID,289,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MEETEI_MAYEK_EXTENSIONS_ID,213,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MEETEI_MAYEK_ID,184,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MENDE_KIKAKUI_ID,235,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MEROITIC_CURSIVE_ID,214,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MEROITIC_HIEROGLYPHS_ID,215,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MIAO_ID,216,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A_ID,102,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B_ID,105,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_AND_ARROWS_ID,115,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS_ID,205,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_ID,55,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_TECHNICAL_ID,48,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MODI_ID,236,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MODIFIER_TONE_LETTERS_ID,138,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MONGOLIAN_ID,37,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.MONGOLIAN_SUPPLEMENT_ID,269,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MRO_ID,237,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MULTANI_ID,259,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MUSICAL_SYMBOLS_ID,92,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_EXTENDED_A_ID,182,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_EXTENDED_B_ID,238,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_ID,28,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.NABATAEAN_ID,239,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LOW_SURROGATES_ID,77,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LYCIAN_ID,167,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.LYDIAN_ID,169,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MAHAJANI_ID,233,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MAHJONG_TILES_ID,170,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.MAKASAR_ID,287,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MALAYALAM_ID,23,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MANDAIC_ID,198,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MANICHAEAN_ID,234,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.MARCHEN_ID,268,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.MASARAM_GONDI_ID,276,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MATHEMATICAL_ALPHANUMERIC_SYMBOLS_ID,93,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MATHEMATICAL_OPERATORS_ID,47,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.MAYAN_NUMERALS_ID,288,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.MEDEFAIDRIN_ID,289,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MEETEI_MAYEK_EXTENSIONS_ID,213,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MEETEI_MAYEK_ID,184,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MENDE_KIKAKUI_ID,235,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MEROITIC_CURSIVE_ID,214,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MEROITIC_HIEROGLYPHS_ID,215,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MIAO_ID,216,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A_ID,102,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B_ID,105,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_AND_ARROWS_ID,115,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS_ID,205,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_SYMBOLS_ID,55,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MISCELLANEOUS_TECHNICAL_ID,48,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MODI_ID,236,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MODIFIER_TONE_LETTERS_ID,138,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MONGOLIAN_ID,37,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.MONGOLIAN_SUPPLEMENT_ID,269,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MRO_ID,237,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MULTANI_ID,259,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MUSICAL_SYMBOLS_ID,92,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_EXTENDED_A_ID,182,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_EXTENDED_B_ID,238,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.MYANMAR_ID,28,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.NABATAEAN_ID,239,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.NANDINAGARI_ID,294,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.NEW_TAI_LUE_ID,139,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.NEWA_ID,270,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.NKO_ID,146,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.NUMBER_FORMS_ID,45,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.NUSHU_ID,277,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.NEW_TAI_LUE_ID,139,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.NEWA_ID,270,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.NKO_ID,146,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.NUMBER_FORMS_ID,45,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.NUSHU_ID,277,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.NYIAKENG_PUACHUE_HMONG_ID,295,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OGHAM_ID,34,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OL_CHIKI_ID,157,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_HUNGARIAN_ID,260,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_ITALIC_ID,88,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_NORTH_ARABIAN_ID,240,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_PERMIC_ID,241,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_PERSIAN_ID,140,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.OLD_SOGDIAN_ID,290,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_SOUTH_ARABIAN_ID,187,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_TURKIC_ID,191,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OPTICAL_CHARACTER_RECOGNITION_ID,50,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ORIYA_ID,19,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.ORNAMENTAL_DINGBATS_ID,242,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.OSAGE_ID,271,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.OSMANYA_ID,122,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OGHAM_ID,34,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OL_CHIKI_ID,157,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_HUNGARIAN_ID,260,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_ITALIC_ID,88,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_NORTH_ARABIAN_ID,240,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_PERMIC_ID,241,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_PERSIAN_ID,140,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.OLD_SOGDIAN_ID,290,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_SOUTH_ARABIAN_ID,187,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OLD_TURKIC_ID,191,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OPTICAL_CHARACTER_RECOGNITION_ID,50,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ORIYA_ID,19,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.ORNAMENTAL_DINGBATS_ID,242,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.OSAGE_ID,271,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.OSMANYA_ID,122,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.OTTOMAN_SIYAQ_NUMBERS_ID,296,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PAHAWH_HMONG_ID,243,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PALMYRENE_ID,244,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PAU_CIN_HAU_ID,245,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PHAGS_PA_ID,150,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PHAISTOS_DISC_ID,166,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PHOENICIAN_ID,151,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PHONETIC_EXTENSIONS_ID,114,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PHONETIC_EXTENSIONS_SUPPLEMENT_ID,141,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PLAYING_CARDS_ID,204,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PRIVATE_USE_AREA_ID,78,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PRIVATE_USE_ID,78,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.PSALTER_PAHLAVI_ID,246,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.REJANG_ID,163,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.RUMI_NUMERAL_SYMBOLS_ID,192,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.RUNIC_ID,35,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SAMARITAN_ID,172,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SAURASHTRA_ID,161,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SHARADA_ID,217,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SHAVIAN_ID,121,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SHORTHAND_FORMAT_CONTROLS_ID,247,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SIDDHAM_ID,248,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SINHALA_ARCHAIC_NUMBERS_ID,249,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SINHALA_ID,24,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SMALL_FORM_VARIANTS_ID,84,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PAHAWH_HMONG_ID,243,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PALMYRENE_ID,244,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PAU_CIN_HAU_ID,245,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PHAGS_PA_ID,150,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PHAISTOS_DISC_ID,166,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PHOENICIAN_ID,151,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PHONETIC_EXTENSIONS_ID,114,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PHONETIC_EXTENSIONS_SUPPLEMENT_ID,141,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PLAYING_CARDS_ID,204,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PRIVATE_USE_AREA_ID,78,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PRIVATE_USE_ID,78,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.PSALTER_PAHLAVI_ID,246,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.REJANG_ID,163,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.RUMI_NUMERAL_SYMBOLS_ID,192,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.RUNIC_ID,35,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SAMARITAN_ID,172,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SAURASHTRA_ID,161,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SHARADA_ID,217,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SHAVIAN_ID,121,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SHORTHAND_FORMAT_CONTROLS_ID,247,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SIDDHAM_ID,248,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SINHALA_ARCHAIC_NUMBERS_ID,249,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SINHALA_ID,24,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SMALL_FORM_VARIANTS_ID,84,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.SMALL_KANA_EXTENSION_ID,297,,,, -?,29,android/icu/lang/UCharacter$UnicodeBlock.SOGDIAN_ID,291,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SORA_SOMPENG_ID,218,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.SOYOMBO_ID,278,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SPACING_MODIFIER_LETTERS_ID,6,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SPECIALS_ID,86,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUNDANESE_ID,155,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUNDANESE_SUPPLEMENT_ID,219,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPERSCRIPTS_AND_SUBSCRIPTS_ID,41,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_A_ID,103,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_B_ID,104,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_C_ID,250,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_MATHEMATICAL_OPERATORS_ID,106,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_PUNCTUATION_ID,142,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS_ID,261,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTARY_PRIVATE_USE_AREA_A_ID,109,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTARY_PRIVATE_USE_AREA_B_ID,110,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SUTTON_SIGNWRITING_ID,262,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SYLOTI_NAGRI_ID,143,,,, +I,29,android/icu/lang/UCharacter$UnicodeBlock.SOGDIAN_ID,291,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SORA_SOMPENG_ID,218,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.SOYOMBO_ID,278,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SPACING_MODIFIER_LETTERS_ID,6,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SPECIALS_ID,86,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUNDANESE_ID,155,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUNDANESE_SUPPLEMENT_ID,219,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPERSCRIPTS_AND_SUBSCRIPTS_ID,41,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_A_ID,103,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_B_ID,104,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_ARROWS_C_ID,250,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_MATHEMATICAL_OPERATORS_ID,106,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_PUNCTUATION_ID,142,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS_ID,261,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTARY_PRIVATE_USE_AREA_A_ID,109,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUPPLEMENTARY_PRIVATE_USE_AREA_B_ID,110,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SUTTON_SIGNWRITING_ID,262,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SYLOTI_NAGRI_ID,143,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.SYMBOLS_AND_PICTOGRAPHS_EXTENDED_A_ID,298,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.SYMBOLS_FOR_LEGACY_COMPUTING_ID,306,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.SYRIAC_ID,13,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.SYRIAC_SUPPLEMENT_ID,279,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAGALOG_ID,98,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAGBANWA_ID,101,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAGS_ID,96,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_LE_ID,112,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_THAM_ID,174,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_VIET_ID,183,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_XUAN_JING_SYMBOLS_ID,124,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAKRI_ID,220,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TAMIL_ID,20,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.SYRIAC_ID,13,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.SYRIAC_SUPPLEMENT_ID,279,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAGALOG_ID,98,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAGBANWA_ID,101,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAGS_ID,96,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_LE_ID,112,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_THAM_ID,174,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_VIET_ID,183,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAI_XUAN_JING_SYMBOLS_ID,124,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAKRI_ID,220,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TAMIL_ID,20,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.TAMIL_SUPPLEMENT_ID,299,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.TANGUT_COMPONENTS_ID,273,,,, -?,26,android/icu/lang/UCharacter$UnicodeBlock.TANGUT_ID,272,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.TANGUT_COMPONENTS_ID,273,,,, +I,26,android/icu/lang/UCharacter$UnicodeBlock.TANGUT_ID,272,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.TANGUT_SUPPLEMENT_ID,307,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TELUGU_ID,21,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.THAANA_ID,14,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.THAI_ID,25,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TIBETAN_ID,27,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TIFINAGH_ID,144,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TIRHUTA_ID,251,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.TRANSPORT_AND_MAP_SYMBOLS_ID,207,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.UGARITIC_ID,120,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED_ID,173,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_ID,33,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.VAI_ID,159,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.VARIATION_SELECTORS_ID,108,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.VARIATION_SELECTORS_SUPPLEMENT_ID,125,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.VEDIC_EXTENSIONS_ID,175,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.VERTICAL_FORMS_ID,145,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TELUGU_ID,21,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.THAANA_ID,14,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.THAI_ID,25,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TIBETAN_ID,27,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TIFINAGH_ID,144,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TIRHUTA_ID,251,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.TRANSPORT_AND_MAP_SYMBOLS_ID,207,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.UGARITIC_ID,120,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED_ID,173,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_ID,33,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.VAI_ID,159,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.VARIATION_SELECTORS_ID,108,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.VARIATION_SELECTORS_SUPPLEMENT_ID,125,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.VEDIC_EXTENSIONS_ID,175,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.VERTICAL_FORMS_ID,145,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.WANCHO_ID,300,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.WARANG_CITI_ID,252,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.WARANG_CITI_ID,252,,,, I,30,android/icu/lang/UCharacter$UnicodeBlock.YEZIDI_ID,308,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.YI_RADICALS_ID,73,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.YI_SYLLABLES_ID,72,,,, -?,24,android/icu/lang/UCharacter$UnicodeBlock.YIJING_HEXAGRAM_SYMBOLS_ID,116,,,, -?,28,android/icu/lang/UCharacter$UnicodeBlock.ZANABAZAR_SQUARE_ID,280,,,, -A,0,,0,Android.Icu.Lang.FoldCaseOptions,None,remove, -E,24,android/icu/lang/UCharacter.FOLD_CASE_DEFAULT,0,Android.Icu.Lang.FoldCaseOptions,Default,remove, -E,24,android/icu/lang/UCharacter.FOLD_CASE_EXCLUDE_SPECIAL_I,1,Android.Icu.Lang.FoldCaseOptions,ExcludeSpecialI,remove, -?,24,android/icu/lang/UCharacter.MAX_CODE_POINT,1114111,,,, -?,24,android/icu/lang/UCharacter.MAX_RADIX,36,,,, -?,24,android/icu/lang/UCharacter.MAX_VALUE,1114111,,,, -?,24,android/icu/lang/UCharacter.MIN_CODE_POINT,0,,,, -?,24,android/icu/lang/UCharacter.MIN_RADIX,2,,,, -?,24,android/icu/lang/UCharacter.MIN_SUPPLEMENTARY_CODE_POINT,65536,,,, -?,24,android/icu/lang/UCharacter.MIN_VALUE,0,,,, -?,24,android/icu/lang/UCharacter.REPLACEMENT_CHAR,65533,,,, -?,24,android/icu/lang/UCharacter.SUPPLEMENTARY_MIN_VALUE,65536,,,, -A,0,,0,Android.Icu.Lang.TitlecaseOptions,None,remove, -E,24,android/icu/lang/UCharacter.TITLECASE_NO_BREAK_ADJUSTMENT,512,Android.Icu.Lang.TitlecaseOptions,NoBreakAdjustment,remove, -E,24,android/icu/lang/UCharacter.TITLECASE_NO_LOWERCASE,256,Android.Icu.Lang.TitlecaseOptions,NoLowercase,remove, -?,26,android/icu/lang/UScript.ADLAM,167,,,, -?,24,android/icu/lang/UScript.AFAKA,147,,,, -?,24,android/icu/lang/UScript.AHOM,161,,,, -?,24,android/icu/lang/UScript.ANATOLIAN_HIEROGLYPHS,156,,,, -?,24,android/icu/lang/UScript.ARABIC,2,,,, -?,24,android/icu/lang/UScript.ARMENIAN,3,,,, -?,24,android/icu/lang/UScript.AVESTAN,117,,,, -?,24,android/icu/lang/UScript.BALINESE,62,,,, -?,24,android/icu/lang/UScript.BAMUM,130,,,, -?,24,android/icu/lang/UScript.BASSA_VAH,134,,,, -?,24,android/icu/lang/UScript.BATAK,63,,,, -?,24,android/icu/lang/UScript.BENGALI,4,,,, -?,26,android/icu/lang/UScript.BHAIKSUKI,168,,,, -?,24,android/icu/lang/UScript.BLISSYMBOLS,64,,,, -?,24,android/icu/lang/UScript.BOOK_PAHLAVI,124,,,, -?,24,android/icu/lang/UScript.BOPOMOFO,5,,,, -?,24,android/icu/lang/UScript.BRAHMI,65,,,, -?,24,android/icu/lang/UScript.BRAILLE,46,,,, -?,24,android/icu/lang/UScript.BUGINESE,55,,,, -?,24,android/icu/lang/UScript.BUHID,44,,,, -?,24,android/icu/lang/UScript.CANADIAN_ABORIGINAL,40,,,, -?,24,android/icu/lang/UScript.CARIAN,104,,,, -?,24,android/icu/lang/UScript.CAUCASIAN_ALBANIAN,159,,,, -?,24,android/icu/lang/UScript.CHAKMA,118,,,, -?,24,android/icu/lang/UScript.CHAM,66,,,, -?,24,android/icu/lang/UScript.CHEROKEE,6,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.YI_RADICALS_ID,73,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.YI_SYLLABLES_ID,72,,,, +I,24,android/icu/lang/UCharacter$UnicodeBlock.YIJING_HEXAGRAM_SYMBOLS_ID,116,,,, +I,28,android/icu/lang/UCharacter$UnicodeBlock.ZANABAZAR_SQUARE_ID,280,,,, +I,26,android/icu/lang/UScript.ADLAM,167,,,, +I,24,android/icu/lang/UScript.AFAKA,147,,,, +I,24,android/icu/lang/UScript.AHOM,161,,,, +I,24,android/icu/lang/UScript.ANATOLIAN_HIEROGLYPHS,156,,,, +I,24,android/icu/lang/UScript.ARABIC,2,,,, +I,24,android/icu/lang/UScript.ARMENIAN,3,,,, +I,24,android/icu/lang/UScript.AVESTAN,117,,,, +I,24,android/icu/lang/UScript.BALINESE,62,,,, +I,24,android/icu/lang/UScript.BAMUM,130,,,, +I,24,android/icu/lang/UScript.BASSA_VAH,134,,,, +I,24,android/icu/lang/UScript.BATAK,63,,,, +I,24,android/icu/lang/UScript.BENGALI,4,,,, +I,26,android/icu/lang/UScript.BHAIKSUKI,168,,,, +I,24,android/icu/lang/UScript.BLISSYMBOLS,64,,,, +I,24,android/icu/lang/UScript.BOOK_PAHLAVI,124,,,, +I,24,android/icu/lang/UScript.BOPOMOFO,5,,,, +I,24,android/icu/lang/UScript.BRAHMI,65,,,, +I,24,android/icu/lang/UScript.BRAILLE,46,,,, +I,24,android/icu/lang/UScript.BUGINESE,55,,,, +I,24,android/icu/lang/UScript.BUHID,44,,,, +I,24,android/icu/lang/UScript.CANADIAN_ABORIGINAL,40,,,, +I,24,android/icu/lang/UScript.CARIAN,104,,,, +I,24,android/icu/lang/UScript.CAUCASIAN_ALBANIAN,159,,,, +I,24,android/icu/lang/UScript.CHAKMA,118,,,, +I,24,android/icu/lang/UScript.CHAM,66,,,, +I,24,android/icu/lang/UScript.CHEROKEE,6,,,, I,30,android/icu/lang/UScript.CHORASMIAN,189,,,, -?,24,android/icu/lang/UScript.CIRTH,67,,,, -?,24,android/icu/lang/UScript.COMMON,0,,,, -?,24,android/icu/lang/UScript.COPTIC,7,,,, -?,24,android/icu/lang/UScript.CUNEIFORM,101,,,, -?,24,android/icu/lang/UScript.CYPRIOT,47,,,, -?,24,android/icu/lang/UScript.CYRILLIC,8,,,, -?,24,android/icu/lang/UScript.DEMOTIC_EGYPTIAN,69,,,, -?,24,android/icu/lang/UScript.DESERET,9,,,, -?,24,android/icu/lang/UScript.DEVANAGARI,10,,,, +I,24,android/icu/lang/UScript.CIRTH,67,,,, +I,24,android/icu/lang/UScript.COMMON,0,,,, +I,24,android/icu/lang/UScript.COPTIC,7,,,, +I,24,android/icu/lang/UScript.CUNEIFORM,101,,,, +I,24,android/icu/lang/UScript.CYPRIOT,47,,,, +I,24,android/icu/lang/UScript.CYRILLIC,8,,,, +I,24,android/icu/lang/UScript.DEMOTIC_EGYPTIAN,69,,,, +I,24,android/icu/lang/UScript.DESERET,9,,,, +I,24,android/icu/lang/UScript.DEVANAGARI,10,,,, I,30,android/icu/lang/UScript.DIVES_AKURU,190,,,, -?,29,android/icu/lang/UScript.DOGRA,178,,,, -?,24,android/icu/lang/UScript.DUPLOYAN,135,,,, -?,24,android/icu/lang/UScript.EASTERN_SYRIAC,97,,,, -?,24,android/icu/lang/UScript.EGYPTIAN_HIEROGLYPHS,71,,,, -?,24,android/icu/lang/UScript.ELBASAN,136,,,, +I,29,android/icu/lang/UScript.DOGRA,178,,,, +I,24,android/icu/lang/UScript.DUPLOYAN,135,,,, +I,24,android/icu/lang/UScript.EASTERN_SYRIAC,97,,,, +I,24,android/icu/lang/UScript.EGYPTIAN_HIEROGLYPHS,71,,,, +I,24,android/icu/lang/UScript.ELBASAN,136,,,, I,30,android/icu/lang/UScript.ELYMAIC,185,,,, -?,24,android/icu/lang/UScript.ESTRANGELO_SYRIAC,95,,,, -?,24,android/icu/lang/UScript.ETHIOPIC,11,,,, -?,24,android/icu/lang/UScript.GEORGIAN,12,,,, -?,24,android/icu/lang/UScript.GLAGOLITIC,56,,,, -?,24,android/icu/lang/UScript.GOTHIC,13,,,, -?,24,android/icu/lang/UScript.GRANTHA,137,,,, -?,24,android/icu/lang/UScript.GREEK,14,,,, -?,24,android/icu/lang/UScript.GUJARATI,15,,,, -?,29,android/icu/lang/UScript.GUNJALA_GONDI,179,,,, -?,24,android/icu/lang/UScript.GURMUKHI,16,,,, -?,24,android/icu/lang/UScript.HAN,17,,,, -?,26,android/icu/lang/UScript.HAN_WITH_BOPOMOFO,172,,,, -?,24,android/icu/lang/UScript.HANGUL,18,,,, -?,29,android/icu/lang/UScript.HANIFI_ROHINGYA,182,,,, -?,24,android/icu/lang/UScript.HANUNOO,43,,,, -?,24,android/icu/lang/UScript.HARAPPAN_INDUS,77,,,, -?,24,android/icu/lang/UScript.HATRAN,162,,,, -?,24,android/icu/lang/UScript.HEBREW,19,,,, -?,24,android/icu/lang/UScript.HIERATIC_EGYPTIAN,70,,,, -?,24,android/icu/lang/UScript.HIRAGANA,20,,,, -?,24,android/icu/lang/UScript.IMPERIAL_ARAMAIC,116,,,, -?,24,android/icu/lang/UScript.INHERITED,1,,,, -?,24,android/icu/lang/UScript.INSCRIPTIONAL_PAHLAVI,122,,,, -?,24,android/icu/lang/UScript.INSCRIPTIONAL_PARTHIAN,125,,,, -?,24,android/icu/lang/UScript.INVALID_CODE,-1,,,, -?,26,android/icu/lang/UScript.JAMO,173,,,, -?,24,android/icu/lang/UScript.JAPANESE,105,,,, -?,24,android/icu/lang/UScript.JAVANESE,78,,,, -?,24,android/icu/lang/UScript.JURCHEN,148,,,, -?,24,android/icu/lang/UScript.KAITHI,120,,,, -?,24,android/icu/lang/UScript.KANNADA,21,,,, -?,24,android/icu/lang/UScript.KATAKANA,22,,,, -?,24,android/icu/lang/UScript.KATAKANA_OR_HIRAGANA,54,,,, -?,24,android/icu/lang/UScript.KAYAH_LI,79,,,, -?,24,android/icu/lang/UScript.KHAROSHTHI,57,,,, +I,24,android/icu/lang/UScript.ESTRANGELO_SYRIAC,95,,,, +I,24,android/icu/lang/UScript.ETHIOPIC,11,,,, +I,24,android/icu/lang/UScript.GEORGIAN,12,,,, +I,24,android/icu/lang/UScript.GLAGOLITIC,56,,,, +I,24,android/icu/lang/UScript.GOTHIC,13,,,, +I,24,android/icu/lang/UScript.GRANTHA,137,,,, +I,24,android/icu/lang/UScript.GREEK,14,,,, +I,24,android/icu/lang/UScript.GUJARATI,15,,,, +I,29,android/icu/lang/UScript.GUNJALA_GONDI,179,,,, +I,24,android/icu/lang/UScript.GURMUKHI,16,,,, +I,24,android/icu/lang/UScript.HAN,17,,,, +I,26,android/icu/lang/UScript.HAN_WITH_BOPOMOFO,172,,,, +I,24,android/icu/lang/UScript.HANGUL,18,,,, +I,29,android/icu/lang/UScript.HANIFI_ROHINGYA,182,,,, +I,24,android/icu/lang/UScript.HANUNOO,43,,,, +I,24,android/icu/lang/UScript.HARAPPAN_INDUS,77,,,, +I,24,android/icu/lang/UScript.HATRAN,162,,,, +I,24,android/icu/lang/UScript.HEBREW,19,,,, +I,24,android/icu/lang/UScript.HIERATIC_EGYPTIAN,70,,,, +I,24,android/icu/lang/UScript.HIRAGANA,20,,,, +I,24,android/icu/lang/UScript.IMPERIAL_ARAMAIC,116,,,, +I,24,android/icu/lang/UScript.INHERITED,1,,,, +I,24,android/icu/lang/UScript.INSCRIPTIONAL_PAHLAVI,122,,,, +I,24,android/icu/lang/UScript.INSCRIPTIONAL_PARTHIAN,125,,,, +I,24,android/icu/lang/UScript.INVALID_CODE,-1,,,, +I,26,android/icu/lang/UScript.JAMO,173,,,, +I,24,android/icu/lang/UScript.JAPANESE,105,,,, +I,24,android/icu/lang/UScript.JAVANESE,78,,,, +I,24,android/icu/lang/UScript.JURCHEN,148,,,, +I,24,android/icu/lang/UScript.KAITHI,120,,,, +I,24,android/icu/lang/UScript.KANNADA,21,,,, +I,24,android/icu/lang/UScript.KATAKANA,22,,,, +I,24,android/icu/lang/UScript.KATAKANA_OR_HIRAGANA,54,,,, +I,24,android/icu/lang/UScript.KAYAH_LI,79,,,, +I,24,android/icu/lang/UScript.KHAROSHTHI,57,,,, I,30,android/icu/lang/UScript.KHITAN_SMALL_SCRIPT,191,,,, -?,24,android/icu/lang/UScript.KHMER,23,,,, -?,24,android/icu/lang/UScript.KHOJKI,157,,,, -?,24,android/icu/lang/UScript.KHUDAWADI,145,,,, -?,24,android/icu/lang/UScript.KHUTSURI,72,,,, -?,24,android/icu/lang/UScript.KOREAN,119,,,, -?,24,android/icu/lang/UScript.KPELLE,138,,,, -?,24,android/icu/lang/UScript.LANNA,106,,,, -?,24,android/icu/lang/UScript.LAO,24,,,, -?,24,android/icu/lang/UScript.LATIN,25,,,, -?,24,android/icu/lang/UScript.LATIN_FRAKTUR,80,,,, -?,24,android/icu/lang/UScript.LATIN_GAELIC,81,,,, -?,24,android/icu/lang/UScript.LEPCHA,82,,,, -?,24,android/icu/lang/UScript.LIMBU,48,,,, -?,24,android/icu/lang/UScript.LINEAR_A,83,,,, -?,24,android/icu/lang/UScript.LINEAR_B,49,,,, -?,24,android/icu/lang/UScript.LISU,131,,,, -?,24,android/icu/lang/UScript.LOMA,139,,,, -?,24,android/icu/lang/UScript.LYCIAN,107,,,, -?,24,android/icu/lang/UScript.LYDIAN,108,,,, -?,24,android/icu/lang/UScript.MAHAJANI,160,,,, -?,29,android/icu/lang/UScript.MAKASAR,180,,,, -?,24,android/icu/lang/UScript.MALAYALAM,26,,,, -?,24,android/icu/lang/UScript.MANDAEAN,84,,,, -?,24,android/icu/lang/UScript.MANDAIC,84,,,, -?,24,android/icu/lang/UScript.MANICHAEAN,121,,,, -?,26,android/icu/lang/UScript.MARCHEN,169,,,, -?,28,android/icu/lang/UScript.MASARAM_GONDI,175,,,, -?,24,android/icu/lang/UScript.MATHEMATICAL_NOTATION,128,,,, -?,24,android/icu/lang/UScript.MAYAN_HIEROGLYPHS,85,,,, -?,29,android/icu/lang/UScript.MEDEFAIDRIN,181,,,, -?,24,android/icu/lang/UScript.MEITEI_MAYEK,115,,,, -?,24,android/icu/lang/UScript.MENDE,140,,,, -?,24,android/icu/lang/UScript.MEROITIC,86,,,, -?,24,android/icu/lang/UScript.MEROITIC_CURSIVE,141,,,, -?,24,android/icu/lang/UScript.MEROITIC_HIEROGLYPHS,86,,,, -?,24,android/icu/lang/UScript.MIAO,92,,,, -?,24,android/icu/lang/UScript.MODI,163,,,, -?,24,android/icu/lang/UScript.MONGOLIAN,27,,,, -?,24,android/icu/lang/UScript.MOON,114,,,, -?,24,android/icu/lang/UScript.MRO,149,,,, -?,24,android/icu/lang/UScript.MULTANI,164,,,, -?,24,android/icu/lang/UScript.MYANMAR,28,,,, -?,24,android/icu/lang/UScript.NABATAEAN,143,,,, -?,24,android/icu/lang/UScript.NAKHI_GEBA,132,,,, +I,24,android/icu/lang/UScript.KHMER,23,,,, +I,24,android/icu/lang/UScript.KHOJKI,157,,,, +I,24,android/icu/lang/UScript.KHUDAWADI,145,,,, +I,24,android/icu/lang/UScript.KHUTSURI,72,,,, +I,24,android/icu/lang/UScript.KOREAN,119,,,, +I,24,android/icu/lang/UScript.KPELLE,138,,,, +I,24,android/icu/lang/UScript.LANNA,106,,,, +I,24,android/icu/lang/UScript.LAO,24,,,, +I,24,android/icu/lang/UScript.LATIN,25,,,, +I,24,android/icu/lang/UScript.LATIN_FRAKTUR,80,,,, +I,24,android/icu/lang/UScript.LATIN_GAELIC,81,,,, +I,24,android/icu/lang/UScript.LEPCHA,82,,,, +I,24,android/icu/lang/UScript.LIMBU,48,,,, +I,24,android/icu/lang/UScript.LINEAR_A,83,,,, +I,24,android/icu/lang/UScript.LINEAR_B,49,,,, +I,24,android/icu/lang/UScript.LISU,131,,,, +I,24,android/icu/lang/UScript.LOMA,139,,,, +I,24,android/icu/lang/UScript.LYCIAN,107,,,, +I,24,android/icu/lang/UScript.LYDIAN,108,,,, +I,24,android/icu/lang/UScript.MAHAJANI,160,,,, +I,29,android/icu/lang/UScript.MAKASAR,180,,,, +I,24,android/icu/lang/UScript.MALAYALAM,26,,,, +I,24,android/icu/lang/UScript.MANDAEAN,84,,,, +I,24,android/icu/lang/UScript.MANDAIC,84,,,, +I,24,android/icu/lang/UScript.MANICHAEAN,121,,,, +I,26,android/icu/lang/UScript.MARCHEN,169,,,, +I,28,android/icu/lang/UScript.MASARAM_GONDI,175,,,, +I,24,android/icu/lang/UScript.MATHEMATICAL_NOTATION,128,,,, +I,24,android/icu/lang/UScript.MAYAN_HIEROGLYPHS,85,,,, +I,29,android/icu/lang/UScript.MEDEFAIDRIN,181,,,, +I,24,android/icu/lang/UScript.MEITEI_MAYEK,115,,,, +I,24,android/icu/lang/UScript.MENDE,140,,,, +I,24,android/icu/lang/UScript.MEROITIC,86,,,, +I,24,android/icu/lang/UScript.MEROITIC_CURSIVE,141,,,, +I,24,android/icu/lang/UScript.MEROITIC_HIEROGLYPHS,86,,,, +I,24,android/icu/lang/UScript.MIAO,92,,,, +I,24,android/icu/lang/UScript.MODI,163,,,, +I,24,android/icu/lang/UScript.MONGOLIAN,27,,,, +I,24,android/icu/lang/UScript.MOON,114,,,, +I,24,android/icu/lang/UScript.MRO,149,,,, +I,24,android/icu/lang/UScript.MULTANI,164,,,, +I,24,android/icu/lang/UScript.MYANMAR,28,,,, +I,24,android/icu/lang/UScript.NABATAEAN,143,,,, +I,24,android/icu/lang/UScript.NAKHI_GEBA,132,,,, I,30,android/icu/lang/UScript.NANDINAGARI,187,,,, -?,24,android/icu/lang/UScript.NEW_TAI_LUE,59,,,, -?,26,android/icu/lang/UScript.NEWA,170,,,, -?,24,android/icu/lang/UScript.NKO,87,,,, -?,24,android/icu/lang/UScript.NUSHU,150,,,, +I,24,android/icu/lang/UScript.NEW_TAI_LUE,59,,,, +I,26,android/icu/lang/UScript.NEWA,170,,,, +I,24,android/icu/lang/UScript.NKO,87,,,, +I,24,android/icu/lang/UScript.NUSHU,150,,,, I,30,android/icu/lang/UScript.NYIAKENG_PUACHUE_HMONG,186,,,, -?,24,android/icu/lang/UScript.OGHAM,29,,,, -?,24,android/icu/lang/UScript.OL_CHIKI,109,,,, -?,24,android/icu/lang/UScript.OLD_CHURCH_SLAVONIC_CYRILLIC,68,,,, -?,24,android/icu/lang/UScript.OLD_HUNGARIAN,76,,,, -?,24,android/icu/lang/UScript.OLD_ITALIC,30,,,, -?,24,android/icu/lang/UScript.OLD_NORTH_ARABIAN,142,,,, -?,24,android/icu/lang/UScript.OLD_PERMIC,89,,,, -?,24,android/icu/lang/UScript.OLD_PERSIAN,61,,,, -?,29,android/icu/lang/UScript.OLD_SOGDIAN,184,,,, -?,24,android/icu/lang/UScript.OLD_SOUTH_ARABIAN,133,,,, -?,24,android/icu/lang/UScript.ORIYA,31,,,, -?,24,android/icu/lang/UScript.ORKHON,88,,,, -?,26,android/icu/lang/UScript.OSAGE,171,,,, -?,24,android/icu/lang/UScript.OSMANYA,50,,,, -?,24,android/icu/lang/UScript.PAHAWH_HMONG,75,,,, -?,24,android/icu/lang/UScript.PALMYRENE,144,,,, -?,24,android/icu/lang/UScript.PAU_CIN_HAU,165,,,, -?,24,android/icu/lang/UScript.PHAGS_PA,90,,,, -?,24,android/icu/lang/UScript.PHOENICIAN,91,,,, -?,24,android/icu/lang/UScript.PHONETIC_POLLARD,92,,,, -?,24,android/icu/lang/UScript.PSALTER_PAHLAVI,123,,,, -?,24,android/icu/lang/UScript.REJANG,110,,,, -?,24,android/icu/lang/UScript.RONGORONGO,93,,,, -?,24,android/icu/lang/UScript.RUNIC,32,,,, -?,24,android/icu/lang/UScript.SAMARITAN,126,,,, -?,24,android/icu/lang/UScript.SARATI,94,,,, -?,24,android/icu/lang/UScript.SAURASHTRA,111,,,, -?,24,android/icu/lang/UScript.SHARADA,151,,,, -?,24,android/icu/lang/UScript.SHAVIAN,51,,,, -?,24,android/icu/lang/UScript.SIDDHAM,166,,,, -?,24,android/icu/lang/UScript.SIGN_WRITING,112,,,, -?,24,android/icu/lang/UScript.SIMPLIFIED_HAN,73,,,, -?,24,android/icu/lang/UScript.SINDHI,145,,,, -?,24,android/icu/lang/UScript.SINHALA,33,,,, -?,29,android/icu/lang/UScript.SOGDIAN,183,,,, -?,24,android/icu/lang/UScript.SORA_SOMPENG,152,,,, -?,28,android/icu/lang/UScript.SOYOMBO,176,,,, -?,24,android/icu/lang/UScript.SUNDANESE,113,,,, -?,24,android/icu/lang/UScript.SYLOTI_NAGRI,58,,,, -?,24,android/icu/lang/UScript.SYMBOLS,129,,,, -?,26,android/icu/lang/UScript.SYMBOLS_EMOJI,174,,,, -?,24,android/icu/lang/UScript.SYRIAC,34,,,, -?,24,android/icu/lang/UScript.TAGALOG,42,,,, -?,24,android/icu/lang/UScript.TAGBANWA,45,,,, -?,24,android/icu/lang/UScript.TAI_LE,52,,,, -?,24,android/icu/lang/UScript.TAI_VIET,127,,,, -?,24,android/icu/lang/UScript.TAKRI,153,,,, -?,24,android/icu/lang/UScript.TAMIL,35,,,, -?,24,android/icu/lang/UScript.TANGUT,154,,,, -?,24,android/icu/lang/UScript.TELUGU,36,,,, -?,24,android/icu/lang/UScript.TENGWAR,98,,,, -?,24,android/icu/lang/UScript.THAANA,37,,,, -?,24,android/icu/lang/UScript.THAI,38,,,, -?,24,android/icu/lang/UScript.TIBETAN,39,,,, -?,24,android/icu/lang/UScript.TIFINAGH,60,,,, -?,24,android/icu/lang/UScript.TIRHUTA,158,,,, -?,24,android/icu/lang/UScript.TRADITIONAL_HAN,74,,,, -?,24,android/icu/lang/UScript.UCAS,40,,,, -?,24,android/icu/lang/UScript.UGARITIC,53,,,, -?,24,android/icu/lang/UScript.UNKNOWN,103,,,, -?,24,android/icu/lang/UScript.UNWRITTEN_LANGUAGES,102,,,, -?,24,android/icu/lang/UScript.VAI,99,,,, -?,24,android/icu/lang/UScript.VISIBLE_SPEECH,100,,,, +I,24,android/icu/lang/UScript.OGHAM,29,,,, +I,24,android/icu/lang/UScript.OL_CHIKI,109,,,, +I,24,android/icu/lang/UScript.OLD_CHURCH_SLAVONIC_CYRILLIC,68,,,, +I,24,android/icu/lang/UScript.OLD_HUNGARIAN,76,,,, +I,24,android/icu/lang/UScript.OLD_ITALIC,30,,,, +I,24,android/icu/lang/UScript.OLD_NORTH_ARABIAN,142,,,, +I,24,android/icu/lang/UScript.OLD_PERMIC,89,,,, +I,24,android/icu/lang/UScript.OLD_PERSIAN,61,,,, +I,29,android/icu/lang/UScript.OLD_SOGDIAN,184,,,, +I,24,android/icu/lang/UScript.OLD_SOUTH_ARABIAN,133,,,, +I,24,android/icu/lang/UScript.ORIYA,31,,,, +I,24,android/icu/lang/UScript.ORKHON,88,,,, +I,26,android/icu/lang/UScript.OSAGE,171,,,, +I,24,android/icu/lang/UScript.OSMANYA,50,,,, +I,24,android/icu/lang/UScript.PAHAWH_HMONG,75,,,, +I,24,android/icu/lang/UScript.PALMYRENE,144,,,, +I,24,android/icu/lang/UScript.PAU_CIN_HAU,165,,,, +I,24,android/icu/lang/UScript.PHAGS_PA,90,,,, +I,24,android/icu/lang/UScript.PHOENICIAN,91,,,, +I,24,android/icu/lang/UScript.PHONETIC_POLLARD,92,,,, +I,24,android/icu/lang/UScript.PSALTER_PAHLAVI,123,,,, +I,24,android/icu/lang/UScript.REJANG,110,,,, +I,24,android/icu/lang/UScript.RONGORONGO,93,,,, +I,24,android/icu/lang/UScript.RUNIC,32,,,, +I,24,android/icu/lang/UScript.SAMARITAN,126,,,, +I,24,android/icu/lang/UScript.SARATI,94,,,, +I,24,android/icu/lang/UScript.SAURASHTRA,111,,,, +I,24,android/icu/lang/UScript.SHARADA,151,,,, +I,24,android/icu/lang/UScript.SHAVIAN,51,,,, +I,24,android/icu/lang/UScript.SIDDHAM,166,,,, +I,24,android/icu/lang/UScript.SIGN_WRITING,112,,,, +I,24,android/icu/lang/UScript.SIMPLIFIED_HAN,73,,,, +I,24,android/icu/lang/UScript.SINDHI,145,,,, +I,24,android/icu/lang/UScript.SINHALA,33,,,, +I,29,android/icu/lang/UScript.SOGDIAN,183,,,, +I,24,android/icu/lang/UScript.SORA_SOMPENG,152,,,, +I,28,android/icu/lang/UScript.SOYOMBO,176,,,, +I,24,android/icu/lang/UScript.SUNDANESE,113,,,, +I,24,android/icu/lang/UScript.SYLOTI_NAGRI,58,,,, +I,24,android/icu/lang/UScript.SYMBOLS,129,,,, +I,26,android/icu/lang/UScript.SYMBOLS_EMOJI,174,,,, +I,24,android/icu/lang/UScript.SYRIAC,34,,,, +I,24,android/icu/lang/UScript.TAGALOG,42,,,, +I,24,android/icu/lang/UScript.TAGBANWA,45,,,, +I,24,android/icu/lang/UScript.TAI_LE,52,,,, +I,24,android/icu/lang/UScript.TAI_VIET,127,,,, +I,24,android/icu/lang/UScript.TAKRI,153,,,, +I,24,android/icu/lang/UScript.TAMIL,35,,,, +I,24,android/icu/lang/UScript.TANGUT,154,,,, +I,24,android/icu/lang/UScript.TELUGU,36,,,, +I,24,android/icu/lang/UScript.TENGWAR,98,,,, +I,24,android/icu/lang/UScript.THAANA,37,,,, +I,24,android/icu/lang/UScript.THAI,38,,,, +I,24,android/icu/lang/UScript.TIBETAN,39,,,, +I,24,android/icu/lang/UScript.TIFINAGH,60,,,, +I,24,android/icu/lang/UScript.TIRHUTA,158,,,, +I,24,android/icu/lang/UScript.TRADITIONAL_HAN,74,,,, +I,24,android/icu/lang/UScript.UCAS,40,,,, +I,24,android/icu/lang/UScript.UGARITIC,53,,,, +I,24,android/icu/lang/UScript.UNKNOWN,103,,,, +I,24,android/icu/lang/UScript.UNWRITTEN_LANGUAGES,102,,,, +I,24,android/icu/lang/UScript.VAI,99,,,, +I,24,android/icu/lang/UScript.VISIBLE_SPEECH,100,,,, I,30,android/icu/lang/UScript.WANCHO,188,,,, -?,24,android/icu/lang/UScript.WARANG_CITI,146,,,, -?,24,android/icu/lang/UScript.WESTERN_SYRIAC,96,,,, -?,24,android/icu/lang/UScript.WOLEAI,155,,,, +I,24,android/icu/lang/UScript.WARANG_CITI,146,,,, +I,24,android/icu/lang/UScript.WESTERN_SYRIAC,96,,,, +I,24,android/icu/lang/UScript.WOLEAI,155,,,, I,30,android/icu/lang/UScript.YEZIDI,192,,,, -?,24,android/icu/lang/UScript.YI,41,,,, -?,28,android/icu/lang/UScript.ZANABAZAR_SQUARE,177,,,, +I,24,android/icu/lang/UScript.YI,41,,,, +I,28,android/icu/lang/UScript.ZANABAZAR_SQUARE,177,,,, E,24,android/icu/math/BigDecimal.ROUND_CEILING,2,Android.Icu.Math.RoundOptions,Ceiling,remove, E,24,android/icu/math/BigDecimal.ROUND_DOWN,1,Android.Icu.Math.RoundOptions,Down,remove, E,24,android/icu/math/BigDecimal.ROUND_FLOOR,3,Android.Icu.Math.RoundOptions,Floor,remove, @@ -2790,7 +2967,7 @@ E,29,android/icu/text/Bidi.OPTION_DEFAULT,0,Android.Icu.Text.BidiOptions,OptionD E,29,android/icu/text/Bidi.OPTION_INSERT_MARKS,1,Android.Icu.Text.BidiOptions,OptionInsertMarks,remove, E,29,android/icu/text/Bidi.OPTION_REMOVE_CONTROLS,2,Android.Icu.Text.BidiOptions,OptionRemoveControls,remove, E,29,android/icu/text/Bidi.OPTION_STREAMING,4,Android.Icu.Text.BidiOptions,OptionStreaming,remove, -?,24,android/icu/text/BreakIterator.DONE,-1,,,, +I,24,android/icu/text/BreakIterator.DONE,-1,,,, E,24,android/icu/text/BreakIterator.KIND_CHARACTER,0,Android.Icu.Text.BreakKind,Character,remove, E,24,android/icu/text/BreakIterator.KIND_LINE,2,Android.Icu.Text.BreakKind,Line,remove, E,24,android/icu/text/BreakIterator.KIND_SENTENCE,3,Android.Icu.Text.BreakKind,Sentence,remove, @@ -2806,8 +2983,8 @@ E,24,android/icu/text/BreakIterator.WORD_NONE,0,Android.Icu.Text.BreakWord,None, E,24,android/icu/text/BreakIterator.WORD_NONE_LIMIT,100,Android.Icu.Text.BreakWord,NoneLimit,remove, E,24,android/icu/text/BreakIterator.WORD_NUMBER,100,Android.Icu.Text.BreakWord,Number,remove, E,24,android/icu/text/BreakIterator.WORD_NUMBER_LIMIT,200,Android.Icu.Text.BreakWord,NumberLimit,remove, -?,24,android/icu/text/CollationElementIterator.IGNORABLE,0,,,, -?,24,android/icu/text/CollationElementIterator.NULLORDER,-1,,,, +I,24,android/icu/text/CollationElementIterator.IGNORABLE,0,,,, +I,24,android/icu/text/CollationElementIterator.NULLORDER,-1,,,, E,24,android/icu/text/CollationKey$BoundMode.LOWER,0,Android.Icu.Text.CollationKeyBoundMode,Lower,remove, E,24,android/icu/text/CollationKey$BoundMode.UPPER,1,Android.Icu.Text.CollationKeyBoundMode,Upper,remove, E,24,android/icu/text/CollationKey$BoundMode.UPPER_LONG,2,Android.Icu.Text.CollationKeyBoundMode,UpperLong,remove, @@ -2874,9 +3051,6 @@ E,24,android/icu/text/DateFormatSymbols.NARROW,2,Android.Icu.Text.DateFormatSymb E,24,android/icu/text/DateFormatSymbols.SHORT,3,Android.Icu.Text.DateFormatSymbolWidth,Short,remove, E,24,android/icu/text/DateFormatSymbols.STANDALONE,1,Android.Icu.Text.DateFormatSymbolContext,Standalone,remove, E,24,android/icu/text/DateFormatSymbols.WIDE,1,Android.Icu.Text.DateFormatSymbolWidth,Wide,remove, -E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.BASE_CONFLICT,1,Android.Icu.Text.DateTimeAddPatternResult,BaseConflict,remove, -E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.CONFLICT,2,Android.Icu.Text.DateTimeAddPatternResult,Conflict,remove, -E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.OK,0,Android.Icu.Text.DateTimeAddPatternResult,Ok,remove, E,24,android/icu/text/DateTimePatternGenerator.DAY,7,Android.Icu.Text.DateTimePatternField,Day,remove, E,24,android/icu/text/DateTimePatternGenerator.DAY_OF_WEEK_IN_MONTH,9,Android.Icu.Text.DateTimePatternField,DayOfWeekInMonth,remove, E,24,android/icu/text/DateTimePatternGenerator.DAY_OF_YEAR,8,Android.Icu.Text.DateTimePatternField,DayOfYear,remove, @@ -2896,6 +3070,9 @@ E,24,android/icu/text/DateTimePatternGenerator.WEEK_OF_YEAR,4,Android.Icu.Text.D E,24,android/icu/text/DateTimePatternGenerator.WEEKDAY,6,Android.Icu.Text.DateTimePatternField,Weekday,remove, E,24,android/icu/text/DateTimePatternGenerator.YEAR,1,Android.Icu.Text.DateTimePatternField,Year,remove, E,24,android/icu/text/DateTimePatternGenerator.ZONE,15,Android.Icu.Text.DateTimePatternField,Zone,remove, +E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.BASE_CONFLICT,1,Android.Icu.Text.DateTimeAddPatternResult,BaseConflict,remove, +E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.CONFLICT,2,Android.Icu.Text.DateTimeAddPatternResult,Conflict,remove, +E,24,android/icu/text/DateTimePatternGenerator$PatternInfo.OK,0,Android.Icu.Text.DateTimeAddPatternResult,Ok,remove, E,24,android/icu/text/DecimalFormat.PAD_AFTER_PREFIX,1,Android.Icu.Text.PadPosition,AfterPrefix,remove, E,24,android/icu/text/DecimalFormat.PAD_AFTER_SUFFIX,3,Android.Icu.Text.PadPosition,AfterSuffix,remove, E,24,android/icu/text/DecimalFormat.PAD_BEFORE_PREFIX,0,Android.Icu.Text.PadPosition,BeforePrefix,remove, @@ -2910,8 +3087,8 @@ E,24,android/icu/text/IDNA.DEFAULT,0,Android.Icu.Text.IDNAOptions,Default,remove E,24,android/icu/text/IDNA.NONTRANSITIONAL_TO_ASCII,16,Android.Icu.Text.IDNAOptions,NontransitionalToAscii,remove, E,24,android/icu/text/IDNA.NONTRANSITIONAL_TO_UNICODE,32,Android.Icu.Text.IDNAOptions,NontransitionalToUnicode,remove, E,24,android/icu/text/IDNA.USE_STD3_RULES,2,Android.Icu.Text.IDNAOptions,UseStd3Rules,remove, -?,24,android/icu/text/MessagePattern.ARG_NAME_NOT_NUMBER,-1,,,, -?,24,android/icu/text/MessagePattern.ARG_NAME_NOT_VALID,-2,,,, +I,24,android/icu/text/MessagePattern.ARG_NAME_NOT_NUMBER,-1,,,, +I,24,android/icu/text/MessagePattern.ARG_NAME_NOT_VALID,-2,,,, E,24,android/icu/text/Normalizer.COMPARE_CODE_POINT_ORDER,32768,Android.Icu.Text.NormalizerCompareOptions,CompareCodePointOrder,remove, E,24,android/icu/text/Normalizer.COMPARE_IGNORE_CASE,65536,Android.Icu.Text.NormalizerCompareOptions,CompareIgnoreCase,remove, E,24,android/icu/text/Normalizer.FOLD_CASE_DEFAULT,0,Android.Icu.Text.NormalizerCompareOptions,FoldCaseDefault,remove, @@ -2929,7 +3106,7 @@ E,24,android/icu/text/NumberFormat.PERCENTSTYLE,2,Android.Icu.Text.NumberFormatS E,24,android/icu/text/NumberFormat.PLURALCURRENCYSTYLE,6,Android.Icu.Text.NumberFormatStyles,Pluralcurrency,remove, E,24,android/icu/text/NumberFormat.SCIENTIFICSTYLE,3,Android.Icu.Text.NumberFormatStyles,Scientific,remove, E,26,android/icu/text/NumberFormat.STANDARDCURRENCYSTYLE,9,Android.Icu.Text.NumberFormatStyles,Standardcurrency,remove, -?,24,android/icu/text/SearchIterator.DONE,-1,,,, +I,24,android/icu/text/SearchIterator.DONE,-1,,,, E,24,android/icu/text/StringPrepParseException.ACE_PREFIX_ERROR,6,Android.Icu.Text.StringPrepParseExceptionError,AcePrefixError,remove, E,24,android/icu/text/StringPrepParseException.BUFFER_OVERFLOW_ERROR,9,Android.Icu.Text.StringPrepParseExceptionError,BufferOverflowError,remove, E,24,android/icu/text/StringPrepParseException.CHECK_BIDI_ERROR,4,Android.Icu.Text.StringPrepParseExceptionError,CheckBidiError,remove, @@ -2944,156 +3121,156 @@ E,24,android/icu/text/StringPrepParseException.VERIFICATION_ERROR,7,Android.Icu. E,24,android/icu/text/StringPrepParseException.ZERO_LENGTH_LABEL,10,Android.Icu.Text.StringPrepParseExceptionError,ZeroLengthLabel,remove, E,29,android/icu/text/Transliterator.FORWARD,0,Android.Icu.Text.DirectionOptions,Forward,remove, E,29,android/icu/text/Transliterator.REVERSE,1,Android.Icu.Text.DirectionOptions,Reverse,remove, -?,24,android/icu/text/UCharacterIterator.DONE,-1,,,, +I,24,android/icu/text/UCharacterIterator.DONE,-1,,,, E,24,android/icu/text/UnicodeSet.ADD_CASE_MAPPINGS,4,Android.Icu.Text.UnicodeSetOptions,AddCaseMappings,remove, E,24,android/icu/text/UnicodeSet.CASE,2,Android.Icu.Text.UnicodeSetOptions,Case,remove, E,24,android/icu/text/UnicodeSet.CASE_INSENSITIVE,2,Android.Icu.Text.UnicodeSetOptions,CaseInsensitive,remove, E,24,android/icu/text/UnicodeSet.IGNORE_SPACE,1,Android.Icu.Text.UnicodeSetOptions,IgnoreSpace,remove, -?,24,android/icu/text/UnicodeSet.MAX_VALUE,1114111,,,, -?,24,android/icu/text/UnicodeSet.MIN_VALUE,0,,,, -?,24,android/icu/util/BuddhistCalendar.BE,0,,,, -?,24,android/icu/util/Calendar.AM,0,,,, +I,24,android/icu/text/UnicodeSet.MAX_VALUE,1114111,,,, +I,24,android/icu/text/UnicodeSet.MIN_VALUE,0,,,, +I,24,android/icu/util/BuddhistCalendar.BE,0,,,, +I,24,android/icu/util/Calendar.AM,0,,,, E,24,android/icu/util/Calendar.AM_PM,9,Android.Icu.Util.CalendarField,AmPm,remove, -?,24,android/icu/util/Calendar.APRIL,3,,,, -?,24,android/icu/util/Calendar.AUGUST,7,,,, -?,24,android/icu/util/Calendar.BASE_FIELD_COUNT,23,,,, +I,24,android/icu/util/Calendar.APRIL,3,,,, +I,24,android/icu/util/Calendar.AUGUST,7,,,, +I,24,android/icu/util/Calendar.BASE_FIELD_COUNT,23,,,, E,24,android/icu/util/Calendar.DATE,5,Android.Icu.Util.CalendarField,Date,remove, E,24,android/icu/util/Calendar.DAY_OF_MONTH,5,Android.Icu.Util.CalendarField,DayOfMonth,remove, E,24,android/icu/util/Calendar.DAY_OF_WEEK,7,Android.Icu.Util.CalendarField,DayOfWeek,remove, E,24,android/icu/util/Calendar.DAY_OF_WEEK_IN_MONTH,8,Android.Icu.Util.CalendarField,DayOfWeekInMonth,remove, E,24,android/icu/util/Calendar.DAY_OF_YEAR,6,Android.Icu.Util.CalendarField,DayOfYear,remove, -?,24,android/icu/util/Calendar.DECEMBER,11,,,, +I,24,android/icu/util/Calendar.DECEMBER,11,,,, E,24,android/icu/util/Calendar.DOW_LOCAL,18,Android.Icu.Util.CalendarField,DowLocal,remove, E,24,android/icu/util/Calendar.DST_OFFSET,16,Android.Icu.Util.CalendarField,DstOffset,remove, -?,24,android/icu/util/Calendar.EPOCH_JULIAN_DAY,2440588,,,, +I,24,android/icu/util/Calendar.EPOCH_JULIAN_DAY,2440588,,,, E,24,android/icu/util/Calendar.ERA,0,Android.Icu.Util.CalendarField,Era,remove, E,24,android/icu/util/Calendar.EXTENDED_YEAR,19,Android.Icu.Util.CalendarField,ExtendedYear,remove, -?,24,android/icu/util/Calendar.FEBRUARY,1,,,, -?,24,android/icu/util/Calendar.FRIDAY,6,,,, -?,24,android/icu/util/Calendar.GREATEST_MINIMUM,1,,,, +I,24,android/icu/util/Calendar.FEBRUARY,1,,,, +I,24,android/icu/util/Calendar.FRIDAY,6,,,, +I,24,android/icu/util/Calendar.GREATEST_MINIMUM,1,,,, E,24,android/icu/util/Calendar.HOUR,10,Android.Icu.Util.CalendarField,Hour,remove, E,24,android/icu/util/Calendar.HOUR_OF_DAY,11,Android.Icu.Util.CalendarField,HourOfDay,remove, -?,24,android/icu/util/Calendar.INTERNALLY_SET,1,,,, -?,24,android/icu/util/Calendar.IS_LEAP_MONTH,22,,,, -?,24,android/icu/util/Calendar.JAN_1_1_JULIAN_DAY,1721426,,,, -?,24,android/icu/util/Calendar.JANUARY,0,,,, +I,24,android/icu/util/Calendar.INTERNALLY_SET,1,,,, +I,24,android/icu/util/Calendar.IS_LEAP_MONTH,22,,,, +I,24,android/icu/util/Calendar.JAN_1_1_JULIAN_DAY,1721426,,,, +I,24,android/icu/util/Calendar.JANUARY,0,,,, E,24,android/icu/util/Calendar.JULIAN_DAY,20,Android.Icu.Util.CalendarField,JulianDay,remove, -?,24,android/icu/util/Calendar.JULY,6,,,, -?,24,android/icu/util/Calendar.JUNE,5,,,, -?,24,android/icu/util/Calendar.LEAST_MAXIMUM,2,,,, -?,24,android/icu/util/Calendar.MARCH,2,,,, -?,24,android/icu/util/Calendar.MAX_FIELD_COUNT,32,,,, -?,24,android/icu/util/Calendar.MAX_JULIAN,2130706432,,,, -?,24,android/icu/util/Calendar.MAXIMUM,3,,,, -?,24,android/icu/util/Calendar.MAY,4,,,, +I,24,android/icu/util/Calendar.JULY,6,,,, +I,24,android/icu/util/Calendar.JUNE,5,,,, +I,24,android/icu/util/Calendar.LEAST_MAXIMUM,2,,,, +I,24,android/icu/util/Calendar.MARCH,2,,,, +I,24,android/icu/util/Calendar.MAX_FIELD_COUNT,32,,,, +I,24,android/icu/util/Calendar.MAX_JULIAN,2130706432,,,, +I,24,android/icu/util/Calendar.MAXIMUM,3,,,, +I,24,android/icu/util/Calendar.MAY,4,,,, E,24,android/icu/util/Calendar.MILLISECOND,14,Android.Icu.Util.CalendarField,Millisecond,remove, E,24,android/icu/util/Calendar.MILLISECONDS_IN_DAY,21,Android.Icu.Util.CalendarField,MillisecondsInDay,remove, -?,24,android/icu/util/Calendar.MIN_JULIAN,-2130706432,,,, -?,24,android/icu/util/Calendar.MINIMUM,0,,,, -?,24,android/icu/util/Calendar.MINIMUM_USER_STAMP,2,,,, +I,24,android/icu/util/Calendar.MIN_JULIAN,-2130706432,,,, +I,24,android/icu/util/Calendar.MINIMUM,0,,,, +I,24,android/icu/util/Calendar.MINIMUM_USER_STAMP,2,,,, E,24,android/icu/util/Calendar.MINUTE,12,Android.Icu.Util.CalendarField,Minute,remove, -?,24,android/icu/util/Calendar.MONDAY,2,,,, +I,24,android/icu/util/Calendar.MONDAY,2,,,, E,24,android/icu/util/Calendar.MONTH,2,Android.Icu.Util.CalendarField,Month,remove, -?,24,android/icu/util/Calendar.NOVEMBER,10,,,, -?,24,android/icu/util/Calendar.OCTOBER,9,,,, -?,24,android/icu/util/Calendar.ONE_HOUR,3600000,,,, -?,24,android/icu/util/Calendar.ONE_MINUTE,60000,,,, -?,24,android/icu/util/Calendar.ONE_SECOND,1000,,,, -?,24,android/icu/util/Calendar.PM,1,,,, -?,24,android/icu/util/Calendar.RESOLVE_REMAP,32,,,, -?,24,android/icu/util/Calendar.SATURDAY,7,,,, +I,24,android/icu/util/Calendar.NOVEMBER,10,,,, +I,24,android/icu/util/Calendar.OCTOBER,9,,,, +I,24,android/icu/util/Calendar.ONE_HOUR,3600000,,,, +I,24,android/icu/util/Calendar.ONE_MINUTE,60000,,,, +I,24,android/icu/util/Calendar.ONE_SECOND,1000,,,, +I,24,android/icu/util/Calendar.PM,1,,,, +I,24,android/icu/util/Calendar.RESOLVE_REMAP,32,,,, +I,24,android/icu/util/Calendar.SATURDAY,7,,,, E,24,android/icu/util/Calendar.SECOND,13,Android.Icu.Util.CalendarField,Second,remove, -?,24,android/icu/util/Calendar.SEPTEMBER,8,,,, -?,24,android/icu/util/Calendar.SUNDAY,1,,,, -?,24,android/icu/util/Calendar.THURSDAY,5,,,, -?,24,android/icu/util/Calendar.TUESDAY,3,,,, -?,24,android/icu/util/Calendar.UNDECIMBER,12,,,, -?,24,android/icu/util/Calendar.UNSET,0,,,, +I,24,android/icu/util/Calendar.SEPTEMBER,8,,,, +I,24,android/icu/util/Calendar.SUNDAY,1,,,, +I,24,android/icu/util/Calendar.THURSDAY,5,,,, +I,24,android/icu/util/Calendar.TUESDAY,3,,,, +I,24,android/icu/util/Calendar.UNDECIMBER,12,,,, +I,24,android/icu/util/Calendar.UNSET,0,,,, E,24,android/icu/util/Calendar.WALLTIME_FIRST,1,Android.Icu.Util.WalltimeOptions,First,remove, E,24,android/icu/util/Calendar.WALLTIME_LAST,0,Android.Icu.Util.WalltimeOptions,Last,remove, E,24,android/icu/util/Calendar.WALLTIME_NEXT_VALID,2,Android.Icu.Util.WalltimeOptions,NextValid,remove, -?,24,android/icu/util/Calendar.WEDNESDAY,4,,,, +I,24,android/icu/util/Calendar.WEDNESDAY,4,,,, E,24,android/icu/util/Calendar.WEEK_OF_MONTH,4,Android.Icu.Util.CalendarField,WeekOfMonth,remove, E,24,android/icu/util/Calendar.WEEK_OF_YEAR,3,Android.Icu.Util.CalendarField,WeekOfYear,remove, E,24,android/icu/util/Calendar.YEAR,1,Android.Icu.Util.CalendarField,Year,remove, E,24,android/icu/util/Calendar.YEAR_WOY,17,Android.Icu.Util.CalendarField,YearWoy,remove, E,24,android/icu/util/Calendar.ZONE_OFFSET,15,Android.Icu.Util.CalendarField,ZoneOffset,remove, -?,24,android/icu/util/CopticCalendar.AMSHIR,5,,,, -?,24,android/icu/util/CopticCalendar.BABA,1,,,, -?,24,android/icu/util/CopticCalendar.BARAMHAT,6,,,, -?,24,android/icu/util/CopticCalendar.BARAMOUDA,7,,,, -?,24,android/icu/util/CopticCalendar.BASHANS,8,,,, -?,24,android/icu/util/CopticCalendar.EPEP,10,,,, -?,24,android/icu/util/CopticCalendar.HATOR,2,,,, -?,24,android/icu/util/CopticCalendar.KIAHK,3,,,, -?,24,android/icu/util/CopticCalendar.MESRA,11,,,, -?,24,android/icu/util/CopticCalendar.NASIE,12,,,, -?,24,android/icu/util/CopticCalendar.PAONA,9,,,, -?,24,android/icu/util/CopticCalendar.TOBA,4,,,, -?,24,android/icu/util/CopticCalendar.TOUT,0,,,, +I,24,android/icu/util/CopticCalendar.AMSHIR,5,,,, +I,24,android/icu/util/CopticCalendar.BABA,1,,,, +I,24,android/icu/util/CopticCalendar.BARAMHAT,6,,,, +I,24,android/icu/util/CopticCalendar.BARAMOUDA,7,,,, +I,24,android/icu/util/CopticCalendar.BASHANS,8,,,, +I,24,android/icu/util/CopticCalendar.EPEP,10,,,, +I,24,android/icu/util/CopticCalendar.HATOR,2,,,, +I,24,android/icu/util/CopticCalendar.KIAHK,3,,,, +I,24,android/icu/util/CopticCalendar.MESRA,11,,,, +I,24,android/icu/util/CopticCalendar.NASIE,12,,,, +I,24,android/icu/util/CopticCalendar.PAONA,9,,,, +I,24,android/icu/util/CopticCalendar.TOBA,4,,,, +I,24,android/icu/util/CopticCalendar.TOUT,0,,,, E,24,android/icu/util/Currency.LONG_NAME,1,Android.Icu.Util.CurrencyNameStyle,Long,remove, E,30,android/icu/util/Currency.NARROW_SYMBOL_NAME,3,Android.Icu.Util.CurrencyNameStyle,NarrowSymbolName,remove, E,24,android/icu/util/Currency.PLURAL_LONG_NAME,2,Android.Icu.Util.CurrencyNameStyle,PluralLong,remove, E,24,android/icu/util/Currency.SYMBOL_NAME,0,Android.Icu.Util.CurrencyNameStyle,Symbol,remove, -?,26,android/icu/util/EthiopicCalendar.GENBOT,8,,,, -?,26,android/icu/util/EthiopicCalendar.HAMLE,10,,,, -?,26,android/icu/util/EthiopicCalendar.HEDAR,2,,,, -?,26,android/icu/util/EthiopicCalendar.MEGABIT,6,,,, -?,26,android/icu/util/EthiopicCalendar.MESKEREM,0,,,, -?,26,android/icu/util/EthiopicCalendar.MIAZIA,7,,,, -?,26,android/icu/util/EthiopicCalendar.NEHASSE,11,,,, -?,26,android/icu/util/EthiopicCalendar.PAGUMEN,12,,,, -?,26,android/icu/util/EthiopicCalendar.SENE,9,,,, -?,26,android/icu/util/EthiopicCalendar.TAHSAS,3,,,, -?,26,android/icu/util/EthiopicCalendar.TEKEMT,1,,,, -?,26,android/icu/util/EthiopicCalendar.TER,4,,,, -?,26,android/icu/util/EthiopicCalendar.YEKATIT,5,,,, -?,24,android/icu/util/GregorianCalendar.AD,1,,,, -?,24,android/icu/util/GregorianCalendar.BC,0,,,, -?,24,android/icu/util/HebrewCalendar.ADAR,6,,,, -?,24,android/icu/util/HebrewCalendar.ADAR_1,5,,,, -?,24,android/icu/util/HebrewCalendar.AV,11,,,, -?,24,android/icu/util/HebrewCalendar.ELUL,12,,,, -?,24,android/icu/util/HebrewCalendar.HESHVAN,1,,,, -?,24,android/icu/util/HebrewCalendar.IYAR,8,,,, -?,24,android/icu/util/HebrewCalendar.KISLEV,2,,,, -?,24,android/icu/util/HebrewCalendar.NISAN,7,,,, -?,24,android/icu/util/HebrewCalendar.SHEVAT,4,,,, -?,24,android/icu/util/HebrewCalendar.SIVAN,9,,,, -?,24,android/icu/util/HebrewCalendar.TAMUZ,10,,,, -?,24,android/icu/util/HebrewCalendar.TEVET,3,,,, -?,24,android/icu/util/HebrewCalendar.TISHRI,0,,,, -?,24,android/icu/util/IndianCalendar.AGRAHAYANA,8,,,, -?,24,android/icu/util/IndianCalendar.ASADHA,3,,,, -?,24,android/icu/util/IndianCalendar.ASVINA,6,,,, -?,24,android/icu/util/IndianCalendar.BHADRA,5,,,, -?,24,android/icu/util/IndianCalendar.CHAITRA,0,,,, -?,24,android/icu/util/IndianCalendar.IE,0,,,, -?,24,android/icu/util/IndianCalendar.JYAISTHA,2,,,, -?,24,android/icu/util/IndianCalendar.KARTIKA,7,,,, -?,24,android/icu/util/IndianCalendar.MAGHA,10,,,, -?,24,android/icu/util/IndianCalendar.PAUSA,9,,,, -?,24,android/icu/util/IndianCalendar.PHALGUNA,11,,,, -?,24,android/icu/util/IndianCalendar.SRAVANA,4,,,, -?,24,android/icu/util/IndianCalendar.VAISAKHA,1,,,, -?,24,android/icu/util/IslamicCalendar.DHU_AL_HIJJAH,11,,,, -?,24,android/icu/util/IslamicCalendar.DHU_AL_QIDAH,10,,,, -?,24,android/icu/util/IslamicCalendar.JUMADA_1,4,,,, -?,24,android/icu/util/IslamicCalendar.JUMADA_2,5,,,, -?,24,android/icu/util/IslamicCalendar.MUHARRAM,0,,,, -?,24,android/icu/util/IslamicCalendar.RABI_1,2,,,, -?,24,android/icu/util/IslamicCalendar.RABI_2,3,,,, -?,24,android/icu/util/IslamicCalendar.RAJAB,6,,,, -?,24,android/icu/util/IslamicCalendar.RAMADAN,8,,,, -?,24,android/icu/util/IslamicCalendar.SAFAR,1,,,, -?,24,android/icu/util/IslamicCalendar.SHABAN,7,,,, -?,24,android/icu/util/IslamicCalendar.SHAWWAL,9,,,, +I,26,android/icu/util/EthiopicCalendar.GENBOT,8,,,, +I,26,android/icu/util/EthiopicCalendar.HAMLE,10,,,, +I,26,android/icu/util/EthiopicCalendar.HEDAR,2,,,, +I,26,android/icu/util/EthiopicCalendar.MEGABIT,6,,,, +I,26,android/icu/util/EthiopicCalendar.MESKEREM,0,,,, +I,26,android/icu/util/EthiopicCalendar.MIAZIA,7,,,, +I,26,android/icu/util/EthiopicCalendar.NEHASSE,11,,,, +I,26,android/icu/util/EthiopicCalendar.PAGUMEN,12,,,, +I,26,android/icu/util/EthiopicCalendar.SENE,9,,,, +I,26,android/icu/util/EthiopicCalendar.TAHSAS,3,,,, +I,26,android/icu/util/EthiopicCalendar.TEKEMT,1,,,, +I,26,android/icu/util/EthiopicCalendar.TER,4,,,, +I,26,android/icu/util/EthiopicCalendar.YEKATIT,5,,,, +I,24,android/icu/util/GregorianCalendar.AD,1,,,, +I,24,android/icu/util/GregorianCalendar.BC,0,,,, +I,24,android/icu/util/HebrewCalendar.ADAR,6,,,, +I,24,android/icu/util/HebrewCalendar.ADAR_1,5,,,, +I,24,android/icu/util/HebrewCalendar.AV,11,,,, +I,24,android/icu/util/HebrewCalendar.ELUL,12,,,, +I,24,android/icu/util/HebrewCalendar.HESHVAN,1,,,, +I,24,android/icu/util/HebrewCalendar.IYAR,8,,,, +I,24,android/icu/util/HebrewCalendar.KISLEV,2,,,, +I,24,android/icu/util/HebrewCalendar.NISAN,7,,,, +I,24,android/icu/util/HebrewCalendar.SHEVAT,4,,,, +I,24,android/icu/util/HebrewCalendar.SIVAN,9,,,, +I,24,android/icu/util/HebrewCalendar.TAMUZ,10,,,, +I,24,android/icu/util/HebrewCalendar.TEVET,3,,,, +I,24,android/icu/util/HebrewCalendar.TISHRI,0,,,, +I,24,android/icu/util/IndianCalendar.AGRAHAYANA,8,,,, +I,24,android/icu/util/IndianCalendar.ASADHA,3,,,, +I,24,android/icu/util/IndianCalendar.ASVINA,6,,,, +I,24,android/icu/util/IndianCalendar.BHADRA,5,,,, +I,24,android/icu/util/IndianCalendar.CHAITRA,0,,,, +I,24,android/icu/util/IndianCalendar.IE,0,,,, +I,24,android/icu/util/IndianCalendar.JYAISTHA,2,,,, +I,24,android/icu/util/IndianCalendar.KARTIKA,7,,,, +I,24,android/icu/util/IndianCalendar.MAGHA,10,,,, +I,24,android/icu/util/IndianCalendar.PAUSA,9,,,, +I,24,android/icu/util/IndianCalendar.PHALGUNA,11,,,, +I,24,android/icu/util/IndianCalendar.SRAVANA,4,,,, +I,24,android/icu/util/IndianCalendar.VAISAKHA,1,,,, +I,24,android/icu/util/IslamicCalendar.DHU_AL_HIJJAH,11,,,, +I,24,android/icu/util/IslamicCalendar.DHU_AL_QIDAH,10,,,, +I,24,android/icu/util/IslamicCalendar.JUMADA_1,4,,,, +I,24,android/icu/util/IslamicCalendar.JUMADA_2,5,,,, +I,24,android/icu/util/IslamicCalendar.MUHARRAM,0,,,, +I,24,android/icu/util/IslamicCalendar.RABI_1,2,,,, +I,24,android/icu/util/IslamicCalendar.RABI_2,3,,,, +I,24,android/icu/util/IslamicCalendar.RAJAB,6,,,, +I,24,android/icu/util/IslamicCalendar.RAMADAN,8,,,, +I,24,android/icu/util/IslamicCalendar.SAFAR,1,,,, +I,24,android/icu/util/IslamicCalendar.SHABAN,7,,,, +I,24,android/icu/util/IslamicCalendar.SHAWWAL,9,,,, E,28,android/icu/util/LocaleData.ALT_QUOTATION_END,3,Android.Icu.Util.DelimiterType,AltQuotationEnd,remove, E,28,android/icu/util/LocaleData.ALT_QUOTATION_START,2,Android.Icu.Util.DelimiterType,AltQuotationStart,remove, E,28,android/icu/util/LocaleData.QUOTATION_END,1,Android.Icu.Util.DelimiterType,QuotationEnd,remove, E,28,android/icu/util/LocaleData.QUOTATION_START,0,Android.Icu.Util.DelimiterType,QuotationStart,remove, -?,24,android/icu/util/TaiwanCalendar.BEFORE_MINGUO,0,,,, -?,24,android/icu/util/TaiwanCalendar.MINGUO,1,,,, +I,24,android/icu/util/TaiwanCalendar.BEFORE_MINGUO,0,,,, +I,24,android/icu/util/TaiwanCalendar.MINGUO,1,,,, E,24,android/icu/util/TimeZone.GENERIC_LOCATION,7,Android.Icu.Util.TimeZoneNameStyle,GenericLocation,remove, E,24,android/icu/util/TimeZone.LONG,1,Android.Icu.Util.TimeZoneNameStyle,Long,remove, E,24,android/icu/util/TimeZone.LONG_GENERIC,3,Android.Icu.Util.TimeZoneNameStyle,LongGeneric,remove, @@ -3122,14 +3299,14 @@ E,26,android/icu/util/UniversalTimeScale.UNITS_VALUE,0,Android.Icu.Util.Universa E,26,android/icu/util/UniversalTimeScale.UNIX_MICROSECONDS_TIME,9,Android.Icu.Util.UniversalTimeScaleType,UnixMicrosecondsTime,remove, E,26,android/icu/util/UniversalTimeScale.UNIX_TIME,1,Android.Icu.Util.UniversalTimeScaleType,UnixTime,remove, E,26,android/icu/util/UniversalTimeScale.WINDOWS_FILE_TIME,3,Android.Icu.Util.UniversalTimeScaleType,WindowsFileTime,remove, -E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_CONTENT,1,Android.InputMethodServices.TouchableInsets,Content,keep, -E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_FRAME,0,Android.InputMethodServices.TouchableInsets,Frame,keep, -E,15,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_REGION,3,Android.InputMethodServices.TouchableInsets,Region,keep, -E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_VISIBLE,2,Android.InputMethodServices.TouchableInsets,Visible,keep, E,28,android/inputmethodservice/InputMethodService.BACK_DISPOSITION_ADJUST_NOTHING,3,Android.InputMethodServices.BackDisposition,AdjustNothing,keep, E,15,android/inputmethodservice/InputMethodService.BACK_DISPOSITION_DEFAULT,0,Android.InputMethodServices.BackDisposition,Default,keep, E,15,android/inputmethodservice/InputMethodService.BACK_DISPOSITION_WILL_DISMISS,2,Android.InputMethodServices.BackDisposition,WillDismiss,keep, E,15,android/inputmethodservice/InputMethodService.BACK_DISPOSITION_WILL_NOT_DISMISS,1,Android.InputMethodServices.BackDisposition,WillNotDismiss,keep, +E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_CONTENT,1,Android.InputMethodServices.TouchableInsets,Content,keep, +E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_FRAME,0,Android.InputMethodServices.TouchableInsets,Frame,keep, +E,15,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_REGION,3,Android.InputMethodServices.TouchableInsets,Region,keep, +E,10,android/inputmethodservice/InputMethodService$Insets.TOUCHABLE_INSETS_VISIBLE,2,Android.InputMethodServices.TouchableInsets,Visible,keep, E,10,android/inputmethodservice/Keyboard.EDGE_BOTTOM,8,Android.InputMethodServices.Edge,Bottom,keep, E,10,android/inputmethodservice/Keyboard.EDGE_LEFT,1,Android.InputMethodServices.Edge,Left,keep, E,10,android/inputmethodservice/Keyboard.EDGE_RIGHT,2,Android.InputMethodServices.Edge,Right,keep, @@ -3146,7 +3323,7 @@ E,10,android/location/Criteria.ACCURACY_HIGH,3,Android.Locations.Accuracy,High,k E,10,android/location/Criteria.ACCURACY_LOW,1,Android.Locations.Accuracy,Low,keep, E,10,android/location/Criteria.ACCURACY_MEDIUM,2,Android.Locations.Accuracy,Medium,keep, E,0,android/location/Criteria.ACCURACY_NO_REQUIREMENT,0,Android.Locations.Accuracy,NoRequirement,keep, -?,0,android/location/Criteria.NO_REQUIREMENT,0,,,, +I,0,android/location/Criteria.NO_REQUIREMENT,0,,,, E,10,android/location/Criteria.POWER_HIGH,3,Android.Locations.Power,High,keep, E,10,android/location/Criteria.POWER_LOW,1,Android.Locations.Power,Low,keep, E,10,android/location/Criteria.POWER_MEDIUM,2,Android.Locations.Power,Medium,keep, @@ -3182,9 +3359,6 @@ E,24,android/location/GnssMeasurementsEvent$Callback.STATUS_LOCATION_DISABLED,2, E,28,android/location/GnssMeasurementsEvent$Callback.STATUS_NOT_ALLOWED,3,Android.Locations.GnssMeasurementCallbackStatus,NotAllowed,remove, E,24,android/location/GnssMeasurementsEvent$Callback.STATUS_NOT_SUPPORTED,0,Android.Locations.GnssMeasurementCallbackStatus,NotSupported,remove, E,24,android/location/GnssMeasurementsEvent$Callback.STATUS_READY,1,Android.Locations.GnssMeasurementCallbackStatus,Ready,remove, -E,24,android/location/GnssNavigationMessage$Callback.STATUS_LOCATION_DISABLED,2,Android.Locations.GnssNavigationCallbackStatus,LocationDisabled,remove, -E,24,android/location/GnssNavigationMessage$Callback.STATUS_NOT_SUPPORTED,0,Android.Locations.GnssNavigationCallbackStatus,NotSupported,remove, -E,24,android/location/GnssNavigationMessage$Callback.STATUS_READY,1,Android.Locations.GnssNavigationCallbackStatus,Ready,remove, E,24,android/location/GnssNavigationMessage.STATUS_PARITY_PASSED,1,Android.Locations.GnssNavigationStatus,ParityPassed,remove, E,24,android/location/GnssNavigationMessage.STATUS_PARITY_REBUILT,2,Android.Locations.GnssNavigationStatus,ParityRebuilt,remove, E,24,android/location/GnssNavigationMessage.STATUS_UNKNOWN,0,Android.Locations.GnssNavigationStatus,Unknown,remove, @@ -3203,6 +3377,9 @@ E,30,android/location/GnssNavigationMessage.TYPE_IRN_L5CA,1793,Android.Locations E,30,android/location/GnssNavigationMessage.TYPE_QZS_L1CA,1025,Android.Locations.GnssNavigationStatus,QzsL1ca,remove, E,30,android/location/GnssNavigationMessage.TYPE_SBS,513,Android.Locations.GnssNavigationStatus,Sbs,remove, E,24,android/location/GnssNavigationMessage.TYPE_UNKNOWN,0,Android.Locations.GnssNavigationType,Unknown,remove, +E,24,android/location/GnssNavigationMessage$Callback.STATUS_LOCATION_DISABLED,2,Android.Locations.GnssNavigationCallbackStatus,LocationDisabled,remove, +E,24,android/location/GnssNavigationMessage$Callback.STATUS_NOT_SUPPORTED,0,Android.Locations.GnssNavigationCallbackStatus,NotSupported,remove, +E,24,android/location/GnssNavigationMessage$Callback.STATUS_READY,1,Android.Locations.GnssNavigationCallbackStatus,Ready,remove, E,24,android/location/GnssStatus.CONSTELLATION_BEIDOU,5,Android.Locations.GnssConstellationType,Beidou,remove, E,24,android/location/GnssStatus.CONSTELLATION_GALILEO,6,Android.Locations.GnssConstellationType,Galileo,remove, E,24,android/location/GnssStatus.CONSTELLATION_GLONASS,3,Android.Locations.GnssConstellationType,Glonass,remove, @@ -3221,6 +3398,14 @@ E,10,android/location/Location.FORMAT_SECONDS,2,Android.Locations.Format,Seconds E,10,android/location/LocationProvider.AVAILABLE,2,Android.Locations.Availability,Available,keep, E,10,android/location/LocationProvider.OUT_OF_SERVICE,0,Android.Locations.Availability,OutOfService,keep, E,10,android/location/LocationProvider.TEMPORARILY_UNAVAILABLE,1,Android.Locations.Availability,TemporarilyUnavailable,keep, +E,31,android/location/LocationRequest.QUALITY_BALANCED_POWER_ACCURACY,102,Android.Location.LocationRequestQuality,BalancedPowerAccuracy,remove, +E,31,android/location/LocationRequest.QUALITY_HIGH_ACCURACY,100,Android.Location.LocationRequestQuality,HighAccuracy,remove, +E,31,android/location/LocationRequest.QUALITY_LOW_POWER,104,Android.Location.LocationRequestQuality,LowPower,remove, +E,31,android/location/provider/ProviderProperties.ACCURACY_COARSE,2,Android.Location.Provider.ProviderAccuracy,Coarse,remove, +E,31,android/location/provider/ProviderProperties.ACCURACY_FINE,1,Android.Location.Provider.ProviderAccuracy,Fine,remove, +E,31,android/location/provider/ProviderProperties.POWER_USAGE_HIGH,3,Android.Location.Provider.ProviderPowerUsage,High,remove, +E,31,android/location/provider/ProviderProperties.POWER_USAGE_LOW,1,Android.Location.Provider.ProviderPowerUsage,Low,remove, +E,31,android/location/provider/ProviderProperties.POWER_USAGE_MEDIUM,2,Android.Location.Provider.ProviderPowerUsage,Medium,remove, E,29,android/media/AudioAttributes.ALLOW_CAPTURE_BY_ALL,1,Android.Media.CapturePolicies,ByAll,remove, E,29,android/media/AudioAttributes.ALLOW_CAPTURE_BY_NONE,3,Android.Media.CapturePolicies,ByNone,remove, E,29,android/media/AudioAttributes.ALLOW_CAPTURE_BY_SYSTEM,2,Android.Media.CapturePolicies,BySystem,remove, @@ -3249,7 +3434,11 @@ E,21,android/media/AudioAttributes.USAGE_NOTIFICATION_RINGTONE,6,Android.Media.A E,21,android/media/AudioAttributes.USAGE_UNKNOWN,0,Android.Media.AudioUsageKind,Unknown,keep, E,21,android/media/AudioAttributes.USAGE_VOICE_COMMUNICATION,2,Android.Media.AudioUsageKind,VoiceCommunication,keep, E,21,android/media/AudioAttributes.USAGE_VOICE_COMMUNICATION_SIGNALLING,3,Android.Media.AudioUsageKind,VoiceCommunicationSignalling,keep, +E,31,android/media/AudioDescriptor.STANDARD_EDID,1,Android.Media.AudioDescriptorStandard,Edid,remove, +E,31,android/media/AudioDescriptor.STANDARD_NONE,0,Android.Media.AudioDescriptorStandard,None,remove, E,23,android/media/AudioDeviceInfo.TYPE_AUX_LINE,19,Android.Media.AudioDeviceType,AuxLine,keep, +E,31,android/media/AudioDeviceInfo.TYPE_BLE_HEADSET,26,Android.Media.AudioDeviceType,BleHeadset,remove, +E,31,android/media/AudioDeviceInfo.TYPE_BLE_SPEAKER,27,Android.Media.AudioDeviceType,BleSpeaker,remove, E,23,android/media/AudioDeviceInfo.TYPE_BLUETOOTH_A2DP,8,Android.Media.AudioDeviceType,BluetoothA2dp,keep, E,23,android/media/AudioDeviceInfo.TYPE_BLUETOOTH_SCO,7,Android.Media.AudioDeviceType,BluetoothSco,keep, E,23,android/media/AudioDeviceInfo.TYPE_BUILTIN_EARPIECE,1,Android.Media.AudioDeviceType,BuiltinEarpiece,keep, @@ -3262,10 +3451,12 @@ E,23,android/media/AudioDeviceInfo.TYPE_FM,14,Android.Media.AudioDeviceType,Fm,k E,23,android/media/AudioDeviceInfo.TYPE_FM_TUNER,16,Android.Media.AudioDeviceType,FmTuner,keep, E,23,android/media/AudioDeviceInfo.TYPE_HDMI,9,Android.Media.AudioDeviceType,Hdmi,keep, E,23,android/media/AudioDeviceInfo.TYPE_HDMI_ARC,10,Android.Media.AudioDeviceType,HdmiArc,keep, +E,31,android/media/AudioDeviceInfo.TYPE_HDMI_EARC,29,Android.Media.AudioDeviceType,HdmiEarc,remove, E,28,android/media/AudioDeviceInfo.TYPE_HEARING_AID,23,Android.Media.AudioDeviceType,HearingAid,keep, E,23,android/media/AudioDeviceInfo.TYPE_IP,20,Android.Media.AudioDeviceType,Ip,keep, E,23,android/media/AudioDeviceInfo.TYPE_LINE_ANALOG,5,Android.Media.AudioDeviceType,LineAnalog,keep, E,23,android/media/AudioDeviceInfo.TYPE_LINE_DIGITAL,6,Android.Media.AudioDeviceType,LineDigital,keep, +E,31,android/media/AudioDeviceInfo.TYPE_REMOTE_SUBMIX,25,Android.Media.AudioDeviceType,RemoteSubmix,remove, E,23,android/media/AudioDeviceInfo.TYPE_TELEPHONY,18,Android.Media.AudioDeviceType,Telephony,keep, E,23,android/media/AudioDeviceInfo.TYPE_TV_TUNER,17,Android.Media.AudioDeviceType,TvTuner,keep, E,23,android/media/AudioDeviceInfo.TYPE_UNKNOWN,0,Android.Media.AudioDeviceType,Unknown,keep, @@ -3296,7 +3487,7 @@ E,10,android/media/AudioFormat.CHANNEL_IN_VOICE_UPLINK,16384,Android.Media.Chann E,10,android/media/AudioFormat.CHANNEL_IN_X_AXIS,2048,Android.Media.ChannelIn,XAxis,keep, E,10,android/media/AudioFormat.CHANNEL_IN_Y_AXIS,4096,Android.Media.ChannelIn,YAxis,keep, E,10,android/media/AudioFormat.CHANNEL_IN_Z_AXIS,8192,Android.Media.ChannelIn,ZAxis,keep, -?,0,android/media/AudioFormat.CHANNEL_INVALID,0,,,, +I,0,android/media/AudioFormat.CHANNEL_INVALID,0,,,, A,0,,0,Android.Media.ChannelOut,None,, E,10,android/media/AudioFormat.CHANNEL_OUT_5POINT1,252,Android.Media.ChannelOut,FivePointOne,keep, E,10,android/media/AudioFormat.CHANNEL_OUT_7POINT1,1020,Android.Media.ChannelOut,SevenPointOne,keep, @@ -3327,18 +3518,26 @@ E,28,android/media/AudioFormat.ENCODING_AC4,17,Android.Media.Encoding,Ac4,keep, E,10,android/media/AudioFormat.ENCODING_DEFAULT,1,Android.Media.Encoding,Default,keep, E,29,android/media/AudioFormat.ENCODING_DOLBY_MAT,19,Android.Media.Encoding,DolbyMat,keep, E,25,android/media/AudioFormat.ENCODING_DOLBY_TRUEHD,14,Android.Media.Encoding,DolbyTruehd,keep, +E,31,android/media/AudioFormat.ENCODING_DRA,28,Android.Media.Encoding,Dra,remove, E,23,android/media/AudioFormat.ENCODING_DTS,7,Android.Media.Encoding,Dts,keep, E,23,android/media/AudioFormat.ENCODING_DTS_HD,8,Android.Media.Encoding,DtsHd,keep, +E,31,android/media/AudioFormat.ENCODING_DTS_UHD,27,Android.Media.Encoding,DtsUhd,remove, E,21,android/media/AudioFormat.ENCODING_E_AC3,6,Android.Media.Encoding,EAc3,keep, E,28,android/media/AudioFormat.ENCODING_E_AC3_JOC,18,Android.Media.Encoding,EAc3Joc,keep, E,24,android/media/AudioFormat.ENCODING_IEC61937,13,Android.Media.Encoding,Iec61937,keep, E,10,android/media/AudioFormat.ENCODING_INVALID,0,Android.Media.Encoding,Invalid,keep, E,28,android/media/AudioFormat.ENCODING_MP3,9,Android.Media.Encoding,Mp3,keep, +E,31,android/media/AudioFormat.ENCODING_MPEGH_BL_L3,23,Android.Media.Encoding,MpeghBlL3,remove, +E,31,android/media/AudioFormat.ENCODING_MPEGH_BL_L4,24,Android.Media.Encoding,MpeghBlL4,remove, +E,31,android/media/AudioFormat.ENCODING_MPEGH_LC_L3,25,Android.Media.Encoding,MpeghLcL3,remove, +E,31,android/media/AudioFormat.ENCODING_MPEGH_LC_L4,26,Android.Media.Encoding,MpeghLcL4,remove, E,30,android/media/AudioFormat.ENCODING_OPUS,20,Android.Media.Encoding,Opus,remove, E,10,android/media/AudioFormat.ENCODING_PCM_16BIT,2,Android.Media.Encoding,Pcm16bit,keep, +E,31,android/media/AudioFormat.ENCODING_PCM_24BIT_PACKED,21,Android.Media.Encoding,Pcm24bitPacked,remove, +E,31,android/media/AudioFormat.ENCODING_PCM_32BIT,22,Android.Media.Encoding,Pcm32bit,remove, E,10,android/media/AudioFormat.ENCODING_PCM_8BIT,3,Android.Media.Encoding,Pcm8bit,keep, E,21,android/media/AudioFormat.ENCODING_PCM_FLOAT,4,Android.Media.Encoding,PcmFloat,keep, -?,24,android/media/AudioFormat.SAMPLE_RATE_UNSPECIFIED,0,,,, +I,24,android/media/AudioFormat.SAMPLE_RATE_UNSPECIFIED,0,,,, E,10,android/media/audiofx/AudioEffect.ALREADY_EXISTS,-2,Android.Media.Audiofx.AudioEffectStatus,AlreadyExists,remove, E,10,android/media/audiofx/AudioEffect.CONTENT_TYPE_GAME,2,Android.Media.Audiofx.ContentType,Game,remove, E,10,android/media/audiofx/AudioEffect.CONTENT_TYPE_MOVIE,1,Android.Media.Audiofx.ContentType,Movie,remove, @@ -3352,7 +3551,7 @@ E,10,android/media/audiofx/AudioEffect.ERROR_NO_INIT,-3,Android.Media.Audiofx.Au E,10,android/media/audiofx/AudioEffect.ERROR_NO_MEMORY,-6,Android.Media.Audiofx.AudioEffectStatus,NoMemory,remove, E,10,android/media/audiofx/AudioEffect.SUCCESS,0,Android.Media.Audiofx.AudioEffectStatus,Success,remove, E,10,android/media/audiofx/BassBoost.PARAM_STRENGTH,1,Android.Media.Audiofx.BassBoostParam,ParamStrength,remove, -?,0,android/media/audiofx/BassBoost.PARAM_STRENGTH_SUPPORTED,0,,,, +I,0,android/media/audiofx/BassBoost.PARAM_STRENGTH_SUPPORTED,0,,,, E,28,android/media/audiofx/DynamicsProcessing.VARIANT_FAVOR_FREQUENCY_RESOLUTION,0,Android.Media.Audiofx.VariantType,FavorFrequencyResolution,remove, E,28,android/media/audiofx/DynamicsProcessing.VARIANT_FAVOR_TIME_RESOLUTION,1,Android.Media.Audiofx.VariantType,FavorTimeResolution,remove, E,10,android/media/audiofx/EnvironmentalReverb.PARAM_DECAY_HF_RATIO,3,Android.Media.Audiofx.EnvironmentalReverbParam,DecayHfRatio,remove, @@ -3404,7 +3603,7 @@ E,10,android/media/AudioManager.ADJUST_RAISE,1,Android.Media.Adjust,Raise,keep, E,10,android/media/AudioManager.ADJUST_SAME,0,Android.Media.Adjust,Same,keep, E,23,android/media/AudioManager.ADJUST_TOGGLE_MUTE,101,Android.Media.Adjust,ToggleMute,keep, E,23,android/media/AudioManager.ADJUST_UNMUTE,100,Android.Media.Adjust,Unmute,keep, -?,21,android/media/AudioManager.AUDIO_SESSION_ID_GENERATE,0,,,, +I,21,android/media/AudioManager.AUDIO_SESSION_ID_GENERATE,0,,,, E,10,android/media/AudioManager.AUDIOFOCUS_GAIN,1,Android.Media.AudioFocus,Gain,remove, E,10,android/media/AudioManager.AUDIOFOCUS_GAIN_TRANSIENT,2,Android.Media.AudioFocus,GainTransient,remove, E,19,android/media/AudioManager.AUDIOFOCUS_GAIN_TRANSIENT_EXCLUSIVE,4,Android.Media.AudioFocus,GainTransientExclusive,remove, @@ -3416,13 +3615,19 @@ E,26,android/media/AudioManager.AUDIOFOCUS_NONE,0,Android.Media.AudioFocus,None, E,26,android/media/AudioManager.AUDIOFOCUS_REQUEST_DELAYED,2,Android.Media.AudioFocusRequest,Delayed,remove, E,10,android/media/AudioManager.AUDIOFOCUS_REQUEST_FAILED,0,Android.Media.AudioFocusRequest,Failed,remove, E,10,android/media/AudioManager.AUDIOFOCUS_REQUEST_GRANTED,1,Android.Media.AudioFocusRequest,Granted,remove, -?,21,android/media/AudioManager.ERROR,-1,,,, -?,21,android/media/AudioManager.ERROR_DEAD_OBJECT,-6,,,, +E,31,android/media/AudioManager.ENCODED_SURROUND_OUTPUT_ALWAYS,2,Android.Media.EncodedSurroundOutput,Always,remove, +E,31,android/media/AudioManager.ENCODED_SURROUND_OUTPUT_AUTO,0,Android.Media.EncodedSurroundOutput,Auto,remove, +E,31,android/media/AudioManager.ENCODED_SURROUND_OUTPUT_MANUAL,3,Android.Media.EncodedSurroundOutput,Manual,remove, +E,31,android/media/AudioManager.ENCODED_SURROUND_OUTPUT_NEVER,1,Android.Media.EncodedSurroundOutput,Never,remove, +E,31,android/media/AudioManager.ENCODED_SURROUND_OUTPUT_UNKNOWN,-1,Android.Media.EncodedSurroundOutput,Unknown,remove, +I,21,android/media/AudioManager.ERROR,-1,,,, +I,21,android/media/AudioManager.ERROR_DEAD_OBJECT,-6,,,, E,10,android/media/AudioManager.FLAG_ALLOW_RINGER_MODES,2,Android.Media.VolumeNotificationFlags,AllowRingerModes,keep,flags E,10,android/media/AudioManager.FLAG_PLAY_SOUND,4,Android.Media.VolumeNotificationFlags,PlaySound,keep,flags E,10,android/media/AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE,8,Android.Media.VolumeNotificationFlags,RemoveSoundAndVibrate,keep,flags E,10,android/media/AudioManager.FLAG_SHOW_UI,1,Android.Media.VolumeNotificationFlags,ShowUi,keep,flags E,10,android/media/AudioManager.FLAG_VIBRATE,16,Android.Media.VolumeNotificationFlags,Vibrate,keep,flags +E,31,android/media/AudioManager.FX_BACK,10,Android.Media.SoundEffect,Back,remove, E,10,android/media/AudioManager.FX_FOCUS_NAVIGATION_DOWN,2,Android.Media.SoundEffect,NavigationDown,keep, E,10,android/media/AudioManager.FX_FOCUS_NAVIGATION_LEFT,3,Android.Media.SoundEffect,NavigationLeft,keep, E,10,android/media/AudioManager.FX_FOCUS_NAVIGATION_RIGHT,4,Android.Media.SoundEffect,NavigationRight,keep, @@ -3443,7 +3648,10 @@ E,15,android/media/AudioManager.MODE_IN_COMMUNICATION,3,Android.Media.Mode,InCom E,10,android/media/AudioManager.MODE_INVALID,-2,Android.Media.Mode,Invalid,keep, E,10,android/media/AudioManager.MODE_NORMAL,0,Android.Media.Mode,Normal,keep, E,10,android/media/AudioManager.MODE_RINGTONE,1,Android.Media.Mode,Ringtone,keep, -?,0,android/media/AudioManager.NUM_STREAMS,5,,,, +I,0,android/media/AudioManager.NUM_STREAMS,5,,,, +E,31,android/media/AudioManager.PLAYBACK_OFFLOAD_GAPLESS_SUPPORTED,2,Android.Media.PlaybackOffload,GaplessSupported,remove, +E,31,android/media/AudioManager.PLAYBACK_OFFLOAD_NOT_SUPPORTED,0,Android.Media.PlaybackOffload,NotSupported,remove, +E,31,android/media/AudioManager.PLAYBACK_OFFLOAD_SUPPORTED,1,Android.Media.PlaybackOffload,Supported,remove, E,10,android/media/AudioManager.RINGER_MODE_NORMAL,2,Android.Media.RingerMode,Normal,keep, E,10,android/media/AudioManager.RINGER_MODE_SILENT,0,Android.Media.RingerMode,Silent,keep, E,10,android/media/AudioManager.RINGER_MODE_VIBRATE,1,Android.Media.RingerMode,Vibrate,keep, @@ -3458,7 +3666,7 @@ E,10,android/media/AudioManager.SCO_AUDIO_STATE_CONNECTED,1,Android.Media.ScoAud E,15,android/media/AudioManager.SCO_AUDIO_STATE_CONNECTING,2,Android.Media.ScoAudioState,Connecting,remove, E,10,android/media/AudioManager.SCO_AUDIO_STATE_DISCONNECTED,0,Android.Media.ScoAudioState,Disconnected,remove, E,10,android/media/AudioManager.SCO_AUDIO_STATE_ERROR,-1,Android.Media.ScoAudioState,Error,remove, -?,26,android/media/AudioManager.STREAM_ACCESSIBILITY,10,,,, +I,26,android/media/AudioManager.STREAM_ACCESSIBILITY,10,,,, E,1,android/media/AudioManager.STREAM_ALARM,4,Android.Media.Stream,Alarm,keep, E,5,android/media/AudioManager.STREAM_DTMF,8,Android.Media.Stream,Dtmf,keep, E,1,android/media/AudioManager.STREAM_MUSIC,3,Android.Media.Stream,Music,keep, @@ -3466,17 +3674,28 @@ E,3,android/media/AudioManager.STREAM_NOTIFICATION,5,Android.Media.Stream,Notifi E,1,android/media/AudioManager.STREAM_RING,2,Android.Media.Stream,Ring,keep, E,1,android/media/AudioManager.STREAM_SYSTEM,1,Android.Media.Stream,System,keep, E,1,android/media/AudioManager.STREAM_VOICE_CALL,0,Android.Media.Stream,VoiceCall,keep, -?,0,android/media/AudioManager.USE_DEFAULT_STREAM_TYPE,-2147483648,,,, +I,0,android/media/AudioManager.USE_DEFAULT_STREAM_TYPE,-2147483648,,,, E,10,android/media/AudioManager.VIBRATE_SETTING_OFF,0,Android.Media.VibrateSetting,Off,keep, E,10,android/media/AudioManager.VIBRATE_SETTING_ON,1,Android.Media.VibrateSetting,On,keep, E,10,android/media/AudioManager.VIBRATE_SETTING_ONLY_SILENT,2,Android.Media.VibrateSetting,OnlySilent,keep, E,10,android/media/AudioManager.VIBRATE_TYPE_NOTIFICATION,1,Android.Media.VibrateType,Notification,keep, E,10,android/media/AudioManager.VIBRATE_TYPE_RINGER,0,Android.Media.VibrateType,Ringer,keep, +E,31,android/media/AudioPresentation.CONTENT_COMMENTARY,5,Android.Media.AudioPresentationContentType,Commentary,remove, +E,31,android/media/AudioPresentation.CONTENT_DIALOG,4,Android.Media.AudioPresentationContentType,Dialog,remove, +E,31,android/media/AudioPresentation.CONTENT_EMERGENCY,6,Android.Media.AudioPresentationContentType,Emergency,remove, +E,31,android/media/AudioPresentation.CONTENT_HEARING_IMPAIRED,3,Android.Media.AudioPresentationContentType,HearingImpaired,remove, +E,31,android/media/AudioPresentation.CONTENT_MAIN,0,Android.Media.AudioPresentationContentType,Main,remove, +E,31,android/media/AudioPresentation.CONTENT_MUSIC_AND_EFFECTS,1,Android.Media.AudioPresentationContentType,MusicAndEffects,remove, +E,31,android/media/AudioPresentation.CONTENT_UNKNOWN,-1,Android.Media.AudioPresentationContentType,Unknown,remove, +E,31,android/media/AudioPresentation.CONTENT_VISUALLY_IMPAIRED,2,Android.Media.AudioPresentationContentType,VisuallyImpaired,remove, +E,31,android/media/AudioPresentation.CONTENT_VOICEOVER,7,Android.Media.AudioPresentationContentType,Voiceover,remove, E,28,android/media/AudioPresentation.MASTERED_FOR_3D,3,Android.Media.MasteringIndicationType,MasteredFor3d,remove, E,28,android/media/AudioPresentation.MASTERED_FOR_HEADPHONE,4,Android.Media.MasteringIndicationType,MasteredForHeadphone,remove, E,28,android/media/AudioPresentation.MASTERED_FOR_STEREO,1,Android.Media.MasteringIndicationType,MasteredForStereo,remove, E,28,android/media/AudioPresentation.MASTERED_FOR_SURROUND,2,Android.Media.MasteringIndicationType,MasteredForSurround,remove, E,28,android/media/AudioPresentation.MASTERING_NOT_INDICATED,0,Android.Media.MasteringIndicationType,MasteringNotIndicated,remove, +E,31,android/media/AudioProfile.AUDIO_ENCAPSULATION_TYPE_IEC61937,1,Android.Media.AudioEncapsulationType,Iec61937,remove, +E,31,android/media/AudioProfile.AUDIO_ENCAPSULATION_TYPE_NONE,0,Android.Media.AudioEncapsulationType,None,remove, E,10,android/media/AudioRecord.ERROR,-1,Android.Media.RecordStatus,Error,keep, E,10,android/media/AudioRecord.ERROR_BAD_VALUE,-2,Android.Media.RecordStatus,ErrorBadValue,keep, E,24,android/media/AudioRecord.ERROR_DEAD_OBJECT,-6,Android.Media.RecordStatus,ErrorDeadObject,keep, @@ -3525,6 +3744,7 @@ E,30,android/media/CamcorderProfile.QUALITY_2K,12,Android.Media.CamcorderQuality E,15,android/media/CamcorderProfile.QUALITY_480P,4,Android.Media.CamcorderQuality,Q480p,keep, E,30,android/media/CamcorderProfile.QUALITY_4KDCI,10,Android.Media.CamcorderQuality,Q4Kdci,remove, E,15,android/media/CamcorderProfile.QUALITY_720P,5,Android.Media.CamcorderQuality,Q720p,keep, +E,31,android/media/CamcorderProfile.QUALITY_8KUHD,13,Android.Media.CamcorderQuality,Q8Kuhd,remove, E,15,android/media/CamcorderProfile.QUALITY_CIF,3,Android.Media.CamcorderQuality,Cif,keep, E,10,android/media/CamcorderProfile.QUALITY_HIGH,1,Android.Media.CamcorderQuality,High,keep, E,21,android/media/CamcorderProfile.QUALITY_HIGH_SPEED_1080P,2004,Android.Media.CamcorderQuality,HighSpeed1080p,keep, @@ -3546,6 +3766,7 @@ E,30,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_2K,1012,Android.Media.Cam E,15,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_480P,1004,Android.Media.CamcorderQuality,TimeLapse480p,keep, E,30,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_4KDCI,1010,Android.Media.CamcorderQuality,TimeLapse4Kdci,remove, E,15,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_720P,1005,Android.Media.CamcorderQuality,TimeLapse720p,keep, +E,31,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_8KUHD,1013,Android.Media.CamcorderQuality,TimeLapse8kuhd,remove, E,15,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_CIF,1003,Android.Media.CamcorderQuality,TimeLapseCif,keep, E,15,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_HIGH,1001,Android.Media.CamcorderQuality,TimeLapseHigh,keep, E,15,android/media/CamcorderProfile.QUALITY_TIME_LAPSE_LOW,1000,Android.Media.CamcorderQuality,TimeLapseLow,keep, @@ -3597,17 +3818,6 @@ E,30,android/media/MediaCas.SESSION_USAGE_LIVE,0,Android.Media.MediaCasSessionUs E,30,android/media/MediaCas.SESSION_USAGE_PLAYBACK,1,Android.Media.MediaCasSessionUsage,Playback,remove, E,30,android/media/MediaCas.SESSION_USAGE_RECORD,2,Android.Media.MediaCasSessionUsage,Record,remove, E,30,android/media/MediaCas.SESSION_USAGE_TIMESHIFT,3,Android.Media.MediaCasSessionUsage,Timeshift,remove, -E,23,android/media/MediaCodec$CodecException.ERROR_INSUFFICIENT_RESOURCE,1100,Android.Media.MediaCodecErrorCode,InsufficientResource,keep, -E,23,android/media/MediaCodec$CodecException.ERROR_RECLAIMED,1101,Android.Media.MediaCodecErrorCode,Reclaimed,keep, -E,29,android/media/MediaCodec$CryptoException.ERROR_FRAME_TOO_LARGE,8,Android.Media.MediaCodecCryptoErrorType,FrameTooLarge,remove, -E,21,android/media/MediaCodec$CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION,4,Android.Media.MediaCodecCryptoErrorType,InsufficientOutputProtection,remove, -E,29,android/media/MediaCodec$CryptoException.ERROR_INSUFFICIENT_SECURITY,7,Android.Media.MediaCodecCryptoErrorType,InsufficientSecurity,remove, -E,19,android/media/MediaCodec$CryptoException.ERROR_KEY_EXPIRED,2,Android.Media.MediaCodecCryptoErrorType,KeyExpired,remove, -E,29,android/media/MediaCodec$CryptoException.ERROR_LOST_STATE,9,Android.Media.MediaCodecCryptoErrorType,LostState,remove, -E,19,android/media/MediaCodec$CryptoException.ERROR_NO_KEY,1,Android.Media.MediaCodecCryptoErrorType,NoKey,remove, -E,19,android/media/MediaCodec$CryptoException.ERROR_RESOURCE_BUSY,3,Android.Media.MediaCodecCryptoErrorType,ResourceBusy,remove, -E,23,android/media/MediaCodec$CryptoException.ERROR_SESSION_NOT_OPENED,5,Android.Media.MediaCodecCryptoErrorType,SessionNotOpened,remove, -E,24,android/media/MediaCodec$CryptoException.ERROR_UNSUPPORTED_OPERATION,6,Android.Media.MediaCodecCryptoErrorType,UnsupportedOperation,remove, A,0,,0,Android.Media.MediaCodecBufferFlags,None,remove,flags E,16,android/media/MediaCodec.BUFFER_FLAG_CODEC_CONFIG,2,Android.Media.MediaCodecBufferFlags,CodecConfig,remove,flags E,16,android/media/MediaCodec.BUFFER_FLAG_END_OF_STREAM,4,Android.Media.MediaCodecBufferFlags,EndOfStream,remove,flags @@ -3625,6 +3835,17 @@ E,16,android/media/MediaCodec.INFO_OUTPUT_FORMAT_CHANGED,-2,Android.Media.MediaC E,16,android/media/MediaCodec.INFO_TRY_AGAIN_LATER,-1,Android.Media.MediaCodecInfoState,TryAgainLater,remove, E,16,android/media/MediaCodec.VIDEO_SCALING_MODE_SCALE_TO_FIT,1,Android.Media.VideoScalingMode,ScaleToFit,remove, E,16,android/media/MediaCodec.VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING,2,Android.Media.VideoScalingMode,ScaleToFitWithCropping,remove, +E,23,android/media/MediaCodec$CodecException.ERROR_INSUFFICIENT_RESOURCE,1100,Android.Media.MediaCodecErrorCode,InsufficientResource,keep, +E,23,android/media/MediaCodec$CodecException.ERROR_RECLAIMED,1101,Android.Media.MediaCodecErrorCode,Reclaimed,keep, +E,29,android/media/MediaCodec$CryptoException.ERROR_FRAME_TOO_LARGE,8,Android.Media.MediaCodecCryptoErrorType,FrameTooLarge,remove, +E,21,android/media/MediaCodec$CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION,4,Android.Media.MediaCodecCryptoErrorType,InsufficientOutputProtection,remove, +E,29,android/media/MediaCodec$CryptoException.ERROR_INSUFFICIENT_SECURITY,7,Android.Media.MediaCodecCryptoErrorType,InsufficientSecurity,remove, +E,19,android/media/MediaCodec$CryptoException.ERROR_KEY_EXPIRED,2,Android.Media.MediaCodecCryptoErrorType,KeyExpired,remove, +E,29,android/media/MediaCodec$CryptoException.ERROR_LOST_STATE,9,Android.Media.MediaCodecCryptoErrorType,LostState,remove, +E,19,android/media/MediaCodec$CryptoException.ERROR_NO_KEY,1,Android.Media.MediaCodecCryptoErrorType,NoKey,remove, +E,19,android/media/MediaCodec$CryptoException.ERROR_RESOURCE_BUSY,3,Android.Media.MediaCodecCryptoErrorType,ResourceBusy,remove, +E,23,android/media/MediaCodec$CryptoException.ERROR_SESSION_NOT_OPENED,5,Android.Media.MediaCodecCryptoErrorType,SessionNotOpened,remove, +E,24,android/media/MediaCodec$CryptoException.ERROR_UNSUPPORTED_OPERATION,6,Android.Media.MediaCodecCryptoErrorType,UnsupportedOperation,remove, E,16,android/media/MediaCodecInfo$CodecCapabilities.COLOR_Format12bitRGB444,3,Android.Media.MediaCodecCapabilities,Format12bitrgb444,remove, E,16,android/media/MediaCodecInfo$CodecCapabilities.COLOR_Format16bitARGB1555,5,Android.Media.MediaCodecCapabilities,Format16bitargb1555,remove, E,16,android/media/MediaCodecInfo$CodecCapabilities.COLOR_Format16bitARGB4444,4,Android.Media.MediaCodecCapabilities,Format16bitargb4444,remove, @@ -3879,23 +4100,11 @@ E,24,android/media/MediaCodecInfo$CodecProfileLevel.VP9Profile3,8,Android.Media. E,24,android/media/MediaCodecInfo$CodecProfileLevel.VP9Profile3HDR,8192,Android.Media.MediaCodecProfileType,Vp9profile3hdr,remove, E,29,android/media/MediaCodecInfo$CodecProfileLevel.VP9Profile3HDR10Plus,32768,Android.Media.MediaCodecProfileType,Vp9profile3hdr10plus,remove, E,21,android/media/MediaCodecInfo$EncoderCapabilities.BITRATE_MODE_CBR,2,Android.Media.BitrateMode,Cbr,keep, +E,31,android/media/MediaCodecInfo$EncoderCapabilities.BITRATE_MODE_CBR_FD,3,Android.Media.BitrateMode,CbrFd,remove, E,21,android/media/MediaCodecInfo$EncoderCapabilities.BITRATE_MODE_CQ,0,Android.Media.BitrateMode,Cq,keep, E,21,android/media/MediaCodecInfo$EncoderCapabilities.BITRATE_MODE_VBR,1,Android.Media.BitrateMode,Vbr,keep, E,21,android/media/MediaCodecList.ALL_CODECS,1,Android.Media.MediaCodecListKind,AllCodecs,keep, E,21,android/media/MediaCodecList.REGULAR_CODECS,0,Android.Media.MediaCodecListKind,RegularCodecs,keep, -?,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_INITIAL,0,,,, -?,28,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_NONE,3,,,, -?,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_RELEASE,2,,,, -?,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_RENEWAL,1,,,, -?,28,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_UPDATE,4,,,, -E,23,android/media/MediaDrm$KeyStatus.STATUS_EXPIRED,1,Android.Media.MediaDrmStatusCode,Expired,keep, -E,23,android/media/MediaDrm$KeyStatus.STATUS_INTERNAL_ERROR,4,Android.Media.MediaDrmStatusCode,InternalError,keep, -E,23,android/media/MediaDrm$KeyStatus.STATUS_OUTPUT_NOT_ALLOWED,2,Android.Media.MediaDrmStatusCode,OutputNotAllowed,keep, -E,23,android/media/MediaDrm$KeyStatus.STATUS_PENDING,3,Android.Media.MediaDrmStatusCode,Pending,keep, -E,23,android/media/MediaDrm$KeyStatus.STATUS_USABLE,0,Android.Media.MediaDrmStatusCode,Usable,keep, -E,29,android/media/MediaDrm$KeyStatus.STATUS_USABLE_IN_FUTURE,5,Android.Media.MediaDrmStatusCode,UsableInFuture,keep, -E,29,android/media/MediaDrm$SessionException.ERROR_RESOURCE_CONTENTION,1,Android.Media.ErrorCode,ResourceContention,remove, -E,29,android/media/MediaDrm$SessionException.ERROR_UNKNOWN,0,Android.Media.ErrorCode,Unknown,remove, E,18,android/media/MediaDrm.EVENT_KEY_EXPIRED,3,Android.Media.MediaDrmEventType,KeyExpired,remove, E,18,android/media/MediaDrm.EVENT_KEY_REQUIRED,2,Android.Media.MediaDrmEventType,KeyRequired,remove, E,18,android/media/MediaDrm.EVENT_PROVISION_REQUIRED,1,Android.Media.MediaDrmEventType,ProvisionRequired,remove, @@ -3921,6 +4130,53 @@ E,28,android/media/MediaDrm.SECURITY_LEVEL_HW_SECURE_DECODE,4,Android.Media.Secu E,28,android/media/MediaDrm.SECURITY_LEVEL_SW_SECURE_CRYPTO,1,Android.Media.SecurityLevel,SwSecureCrypto,remove, E,28,android/media/MediaDrm.SECURITY_LEVEL_SW_SECURE_DECODE,2,Android.Media.SecurityLevel,SwSecureDecode,remove, E,28,android/media/MediaDrm.SECURITY_LEVEL_UNKNOWN,0,Android.Media.SecurityLevel,Unknown,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_CERTIFICATE_MALFORMED,10,Android.Media.DrmErrorCode,CertificateMalformed,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_CERTIFICATE_MISSING,11,Android.Media.DrmErrorCode,CertificateMissing,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_CRYPTO_LIBRARY,12,Android.Media.DrmErrorCode,CryptoLibrary,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_FRAME_TOO_LARGE,8,Android.Media.DrmErrorCode,FrameTooLarge,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_GENERIC_OEM,13,Android.Media.DrmErrorCode,GenericOem,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_GENERIC_PLUGIN,14,Android.Media.DrmErrorCode,GenericPlugin,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_INIT_DATA,15,Android.Media.DrmErrorCode,InitData,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_INSUFFICIENT_OUTPUT_PROTECTION,4,Android.Media.DrmErrorCode,InsufficientOutputProtection,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_INSUFFICIENT_SECURITY,7,Android.Media.DrmErrorCode,InsufficientSecurity,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_KEY_EXPIRED,2,Android.Media.DrmErrorCode,KeyExpired,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_KEY_NOT_LOADED,16,Android.Media.DrmErrorCode,KeyNotLoaded,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_PARSE,17,Android.Media.DrmErrorCode,LicenseParse,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_POLICY,18,Android.Media.DrmErrorCode,LicensePolicy,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_RELEASE,19,Android.Media.DrmErrorCode,LicenseRelease,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_REQUEST_REJECTED,20,Android.Media.DrmErrorCode,LicenseRequestRejected,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_RESTORE,21,Android.Media.DrmErrorCode,LicenseRestore,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LICENSE_STATE,22,Android.Media.DrmErrorCode,LicenseState,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_LOST_STATE,9,Android.Media.DrmErrorCode,LostState,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_MEDIA_FRAMEWORK,23,Android.Media.DrmErrorCode,MediaFramework,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_NO_KEY,1,Android.Media.DrmErrorCode,NoKey,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_PROVISIONING_CERTIFICATE,24,Android.Media.DrmErrorCode,ProvisioningCertificate,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_PROVISIONING_CONFIG,25,Android.Media.DrmErrorCode,ProvisioningConfig,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_PROVISIONING_PARSE,26,Android.Media.DrmErrorCode,ProvisioningParse,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_PROVISIONING_REQUEST_REJECTED,27,Android.Media.DrmErrorCode,ProvisioningRequestRejected,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_PROVISIONING_RETRY,28,Android.Media.DrmErrorCode,ProvisioningRetry,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_RESOURCE_BUSY,3,Android.Media.DrmErrorCode,ResourceBusy,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_RESOURCE_CONTENTION,29,Android.Media.DrmErrorCode,ResourceContention,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_SECURE_STOP_RELEASE,30,Android.Media.DrmErrorCode,SecureStopRelease,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_SESSION_NOT_OPENED,5,Android.Media.DrmErrorCode,SessionNotOpened,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_STORAGE_READ,31,Android.Media.DrmErrorCode,StorageRead,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_STORAGE_WRITE,32,Android.Media.DrmErrorCode,StorageWrite,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_UNKNOWN,0,Android.Media.DrmErrorCode,Unknown,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_UNSUPPORTED_OPERATION,6,Android.Media.DrmErrorCode,UnsupportedOperation,remove, +E,31,android/media/MediaDrm$ErrorCodes.ERROR_ZERO_SUBSAMPLES,33,Android.Media.DrmErrorCode,ZeroSubsamples,remove, +I,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_INITIAL,0,,,, +I,28,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_NONE,3,,,, +I,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_RELEASE,2,,,, +I,23,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_RENEWAL,1,,,, +I,28,android/media/MediaDrm$KeyRequest.REQUEST_TYPE_UPDATE,4,,,, +E,23,android/media/MediaDrm$KeyStatus.STATUS_EXPIRED,1,Android.Media.MediaDrmStatusCode,Expired,keep, +E,23,android/media/MediaDrm$KeyStatus.STATUS_INTERNAL_ERROR,4,Android.Media.MediaDrmStatusCode,InternalError,keep, +E,23,android/media/MediaDrm$KeyStatus.STATUS_OUTPUT_NOT_ALLOWED,2,Android.Media.MediaDrmStatusCode,OutputNotAllowed,keep, +E,23,android/media/MediaDrm$KeyStatus.STATUS_PENDING,3,Android.Media.MediaDrmStatusCode,Pending,keep, +E,23,android/media/MediaDrm$KeyStatus.STATUS_USABLE,0,Android.Media.MediaDrmStatusCode,Usable,keep, +E,29,android/media/MediaDrm$KeyStatus.STATUS_USABLE_IN_FUTURE,5,Android.Media.MediaDrmStatusCode,UsableInFuture,keep, +E,29,android/media/MediaDrm$SessionException.ERROR_RESOURCE_CONTENTION,1,Android.Media.ErrorCode,ResourceContention,remove, +E,29,android/media/MediaDrm$SessionException.ERROR_UNKNOWN,0,Android.Media.ErrorCode,Unknown,remove, A,0,,0,Android.Media.MediaExtractorSampleFlags,None,remove,flags E,16,android/media/MediaExtractor.SAMPLE_FLAG_ENCRYPTED,2,Android.Media.MediaExtractorSampleFlags,Encrypted,remove,flags E,26,android/media/MediaExtractor.SAMPLE_FLAG_PARTIAL_FRAME,4,Android.Media.MediaExtractorSampleFlags,PartialFrame,remove,flags @@ -3953,6 +4209,7 @@ E,10,android/media/MediaMetadataRetriever.METADATA_KEY_ALBUMARTIST,13,Android.Me E,10,android/media/MediaMetadataRetriever.METADATA_KEY_ARTIST,2,Android.Media.MetadataKey,Artist,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_AUTHOR,3,Android.Media.MetadataKey,Author,remove, E,15,android/media/MediaMetadataRetriever.METADATA_KEY_BITRATE,20,Android.Media.MetadataKey,Bitrate,remove, +E,31,android/media/MediaMetadataRetriever.METADATA_KEY_BITS_PER_SAMPLE,39,Android.Media.MetadataKey,BitsPerSample,remove, E,23,android/media/MediaMetadataRetriever.METADATA_KEY_CAPTURE_FRAMERATE,25,Android.Media.MetadataKey,CaptureFramerate,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_CD_TRACK_NUMBER,0,Android.Media.MetadataKey,CdTrackNumber,remove, E,30,android/media/MediaMetadataRetriever.METADATA_KEY_COLOR_RANGE,37,Android.Media.MetadataKey,ColorRange,remove, @@ -3977,12 +4234,15 @@ E,28,android/media/MediaMetadataRetriever.METADATA_KEY_IMAGE_WIDTH,29,Android.Me E,15,android/media/MediaMetadataRetriever.METADATA_KEY_LOCATION,23,Android.Media.MetadataKey,Location,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_MIMETYPE,12,Android.Media.MetadataKey,Mimetype,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_NUM_TRACKS,10,Android.Media.MetadataKey,NumTracks,remove, +E,31,android/media/MediaMetadataRetriever.METADATA_KEY_SAMPLERATE,38,Android.Media.MetadataKey,SampleRate,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_TITLE,7,Android.Media.MetadataKey,Title,remove, E,28,android/media/MediaMetadataRetriever.METADATA_KEY_VIDEO_FRAME_COUNT,32,Android.Media.MetadataKey,VideoFrameCount,remove, E,15,android/media/MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT,19,Android.Media.MetadataKey,VideoHeight,remove, E,17,android/media/MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION,24,Android.Media.MetadataKey,VideoRotation,remove, E,15,android/media/MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH,18,Android.Media.MetadataKey,VideoWidth,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_WRITER,11,Android.Media.MetadataKey,Writer,remove, +E,31,android/media/MediaMetadataRetriever.METADATA_KEY_XMP_LENGTH,42,Android.Media.MetadataKey,XmpLength,remove, +E,31,android/media/MediaMetadataRetriever.METADATA_KEY_XMP_OFFSET,41,Android.Media.MetadataKey,XmpOffset,remove, E,10,android/media/MediaMetadataRetriever.METADATA_KEY_YEAR,8,Android.Media.MetadataKey,Year,remove, E,10,android/media/MediaMetadataRetriever.OPTION_CLOSEST,3,Android.Media.Option,Closest,remove, E,10,android/media/MediaMetadataRetriever.OPTION_CLOSEST_SYNC,2,Android.Media.Option,ClosestSync,remove, @@ -3993,18 +4253,12 @@ E,28,android/media/MediaMuxer$OutputFormat.MUXER_OUTPUT_HEIF,3,Android.Media.Mux E,18,android/media/MediaMuxer$OutputFormat.MUXER_OUTPUT_MPEG_4,0,Android.Media.MuxerOutputType,Mpeg4,remove, E,29,android/media/MediaMuxer$OutputFormat.MUXER_OUTPUT_OGG,4,Android.Media.MuxerOutputType,Ogg,remove, E,21,android/media/MediaMuxer$OutputFormat.MUXER_OUTPUT_WEBM,1,Android.Media.MuxerOutputType,Webm,remove, -I,30,android/media/MediaParser$SeekMap.UNKNOWN_DURATION,-2147483648,,,, E,30,android/media/MediaParser.SAMPLE_FLAG_DECODE_ONLY,-2147483648,Android.Media.SampleFlags,SampleFlagDecodeOnly,remove,flags E,30,android/media/MediaParser.SAMPLE_FLAG_ENCRYPTED,1073741824,Android.Media.SampleFlags,SampleFlagEncrypted,remove,flags E,30,android/media/MediaParser.SAMPLE_FLAG_HAS_SUPPLEMENTAL_DATA,268435456,Android.Media.SampleFlags,SampleFlagHasSupplementalData,remove,flags E,30,android/media/MediaParser.SAMPLE_FLAG_KEY_FRAME,1,Android.Media.SampleFlags,SampleFlagKeyFrame,remove,flags E,30,android/media/MediaParser.SAMPLE_FLAG_LAST_SAMPLE,536870912,Android.Media.SampleFlags,SampleFlagLastSample,remove,flags -E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_AUDIO,2,Android.Media.MediaTrackType,Audio,remove, -E,23,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_METADATA,5,Android.Media.MediaTrackType,Metadata,remove, -E,21,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE,4,Android.Media.MediaTrackType,Subtitle,remove, -E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_TIMEDTEXT,3,Android.Media.MediaTrackType,Timedtext,remove, -E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_UNKNOWN,0,Android.Media.MediaTrackType,Unknown,remove, -E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_VIDEO,1,Android.Media.MediaTrackType,Video,remove, +I,30,android/media/MediaParser$SeekMap.UNKNOWN_DURATION,-2147483648,,,, E,17,android/media/MediaPlayer.MEDIA_ERROR_IO,-1004,Android.Media.MediaError,Io,keep, E,17,android/media/MediaPlayer.MEDIA_ERROR_MALFORMED,-1007,Android.Media.MediaError,Malformed,keep, E,10,android/media/MediaPlayer.MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK,200,Android.Media.MediaError,NotValidForProgressivePlayback,keep, @@ -4035,6 +4289,19 @@ E,26,android/media/MediaPlayer.SEEK_NEXT_SYNC,1,Android.Media.MediaPlayerSeekMod E,26,android/media/MediaPlayer.SEEK_PREVIOUS_SYNC,0,Android.Media.MediaPlayerSeekMode,PreviousSync,keep, E,16,android/media/MediaPlayer.VIDEO_SCALING_MODE_SCALE_TO_FIT,1,Android.Media.MediaPlayerVideoScalingModeNotInUse,ScaleToFit,remove, E,16,android/media/MediaPlayer.VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING,2,Android.Media.MediaPlayerVideoScalingModeNotInUse,ScaleToFitWithCropping,remove, +E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_AUDIO,2,Android.Media.MediaTrackType,Audio,remove, +E,23,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_METADATA,5,Android.Media.MediaTrackType,Metadata,remove, +E,21,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE,4,Android.Media.MediaTrackType,Subtitle,remove, +E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_TIMEDTEXT,3,Android.Media.MediaTrackType,Timedtext,remove, +E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_UNKNOWN,0,Android.Media.MediaTrackType,Unknown,remove, +E,16,android/media/MediaPlayer$TrackInfo.MEDIA_TRACK_TYPE_VIDEO,1,Android.Media.MediaTrackType,Video,remove, +E,17,android/media/MediaRecorder.MEDIA_ERROR_SERVER_DIED,100,Android.Media.MediaRecorderError,ServerDied,remove, +E,10,android/media/MediaRecorder.MEDIA_RECORDER_ERROR_UNKNOWN,1,Android.Media.MediaRecorderError,Unknown,remove, +E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_DURATION_REACHED,800,Android.Media.MediaRecorderInfo,MaxDurationReached,keep, +E,26,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_FILESIZE_APPROACHING,802,Android.Media.MediaRecorderInfo,MaxFilesizeApproaching,keep, +E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED,801,Android.Media.MediaRecorderInfo,MaxFilesizeReached,keep, +E,26,android/media/MediaRecorder.MEDIA_RECORDER_INFO_NEXT_OUTPUT_FILE_STARTED,803,Android.Media.MediaRecorderInfo,NextOutputFileStarted,keep, +E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_UNKNOWN,1,Android.Media.MediaRecorderInfo,Unknown,keep, E,10,android/media/MediaRecorder$AudioEncoder.AAC,3,Android.Media.AudioEncoder,Aac,keep, E,16,android/media/MediaRecorder$AudioEncoder.AAC_ELD,5,Android.Media.AudioEncoder,AacEld,keep, E,10,android/media/MediaRecorder$AudioEncoder.AMR_NB,1,Android.Media.AudioEncoder,AmrNb,keep, @@ -4073,13 +4340,6 @@ E,21,android/media/MediaRecorder$VideoEncoder.VP8,4,Android.Media.VideoEncoder,V E,10,android/media/MediaRecorder$VideoSource.CAMERA,1,Android.Media.VideoSource,Camera,keep, E,10,android/media/MediaRecorder$VideoSource.DEFAULT,0,Android.Media.VideoSource,Default,keep, E,21,android/media/MediaRecorder$VideoSource.SURFACE,2,Android.Media.VideoSource,Surface,keep, -E,17,android/media/MediaRecorder.MEDIA_ERROR_SERVER_DIED,100,Android.Media.MediaRecorderError,ServerDied,remove, -E,10,android/media/MediaRecorder.MEDIA_RECORDER_ERROR_UNKNOWN,1,Android.Media.MediaRecorderError,Unknown,remove, -E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_DURATION_REACHED,800,Android.Media.MediaRecorderInfo,MaxDurationReached,keep, -E,26,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_FILESIZE_APPROACHING,802,Android.Media.MediaRecorderInfo,MaxFilesizeApproaching,keep, -E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED,801,Android.Media.MediaRecorderInfo,MaxFilesizeReached,keep, -E,26,android/media/MediaRecorder.MEDIA_RECORDER_INFO_NEXT_OUTPUT_FILE_STARTED,803,Android.Media.MediaRecorderInfo,NextOutputFileStarted,keep, -E,10,android/media/MediaRecorder.MEDIA_RECORDER_INFO_UNKNOWN,1,Android.Media.MediaRecorderInfo,Unknown,keep, E,30,android/media/MediaRoute2Info.CONNECTION_STATE_CONNECTED,2,Android.Media.MediaRoute2InfoConnectionState,Connected,remove, E,30,android/media/MediaRoute2Info.CONNECTION_STATE_CONNECTING,1,Android.Media.MediaRoute2InfoConnectionState,Connecting,remove, E,30,android/media/MediaRoute2Info.CONNECTION_STATE_DISCONNECTED,0,Android.Media.MediaRoute2InfoConnectionState,Disconnected,remove, @@ -4090,6 +4350,11 @@ E,30,android/media/MediaRoute2ProviderService.REASON_NETWORK_ERROR,2,Android.Med E,30,android/media/MediaRoute2ProviderService.REASON_REJECTED,1,Android.Media.MediaRoute2ProviderServiceReason,Rejected,remove, E,30,android/media/MediaRoute2ProviderService.REASON_ROUTE_NOT_AVAILABLE,3,Android.Media.MediaRoute2ProviderServiceReason,RouteNotAvailable,remove, E,30,android/media/MediaRoute2ProviderService.REASON_UNKNOWN_ERROR,0,Android.Media.MediaRoute2ProviderServiceReason,UnknownError,remove, +E,18,android/media/MediaRouter.CALLBACK_FLAG_PERFORM_ACTIVE_SCAN,1,Android.Media.MediaRouterCallbackFlags,PerformActiveScan,remove,flags +E,18,android/media/MediaRouter.CALLBACK_FLAG_UNFILTERED_EVENTS,2,Android.Media.MediaRouterCallbackFlags,UnfilteredEvents,remove,flags +E,16,android/media/MediaRouter.ROUTE_TYPE_LIVE_AUDIO,1,Android.Media.MediaRouteType,LiveAudio,remove, +E,17,android/media/MediaRouter.ROUTE_TYPE_LIVE_VIDEO,2,Android.Media.MediaRouteType,LiveVideo,remove, +E,16,android/media/MediaRouter.ROUTE_TYPE_USER,8388608,Android.Media.MediaRouteType,User,remove, E,24,android/media/MediaRouter$RouteInfo.DEVICE_TYPE_BLUETOOTH,3,Android.Media.MediaRouterDeviceType,Bluetooth,remove, E,24,android/media/MediaRouter$RouteInfo.DEVICE_TYPE_SPEAKER,2,Android.Media.MediaRouterDeviceType,Speaker,remove, E,24,android/media/MediaRouter$RouteInfo.DEVICE_TYPE_TV,1,Android.Media.MediaRouterDeviceType,Tv,remove, @@ -4098,15 +4363,106 @@ E,16,android/media/MediaRouter$RouteInfo.PLAYBACK_TYPE_LOCAL,0,Android.Media.Med E,16,android/media/MediaRouter$RouteInfo.PLAYBACK_TYPE_REMOTE,1,Android.Media.MediaPlaybackType,Remote,remove, E,16,android/media/MediaRouter$RouteInfo.PLAYBACK_VOLUME_FIXED,0,Android.Media.VolumeHandling,Fixed,remove, E,16,android/media/MediaRouter$RouteInfo.PLAYBACK_VOLUME_VARIABLE,1,Android.Media.VolumeHandling,Variable,remove, -E,18,android/media/MediaRouter.CALLBACK_FLAG_PERFORM_ACTIVE_SCAN,1,Android.Media.MediaRouterCallbackFlags,PerformActiveScan,remove,flags -E,18,android/media/MediaRouter.CALLBACK_FLAG_UNFILTERED_EVENTS,2,Android.Media.MediaRouterCallbackFlags,UnfilteredEvents,remove,flags -E,16,android/media/MediaRouter.ROUTE_TYPE_LIVE_AUDIO,1,Android.Media.MediaRouteType,LiveAudio,remove, -E,17,android/media/MediaRouter.ROUTE_TYPE_LIVE_VIDEO,2,Android.Media.MediaRouteType,LiveVideo,remove, -E,16,android/media/MediaRouter.ROUTE_TYPE_USER,8388608,Android.Media.MediaRouteType,User,remove, E,23,android/media/MediaSync.MEDIASYNC_ERROR_AUDIOTRACK_FAIL,1,Android.Media.MediaSyncErrorCode,AudiotrackFail,keep, E,23,android/media/MediaSync.MEDIASYNC_ERROR_SURFACE_FAIL,2,Android.Media.MediaSyncErrorCode,SurfaceFail,keep, E,16,android/media/MediaSyncEvent.SYNC_EVENT_NONE,0,Android.Media.MediaSyncEventType,None,remove, E,16,android/media/MediaSyncEvent.SYNC_EVENT_PRESENTATION_COMPLETE,1,Android.Media.MediaSyncEventType,PresentationComplete,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_2G,4,Android.Media.Metrics.NetworkType,Type2g,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_3G,5,Android.Media.Metrics.NetworkType,Type3g,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_4G,6,Android.Media.Metrics.NetworkType,Type4g,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_5G_NSA,7,Android.Media.Metrics.NetworkType,Type5gNsa,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_5G_SA,8,Android.Media.Metrics.NetworkType,Type5gSa,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_ETHERNET,3,Android.Media.Metrics.NetworkType,Ethernet,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_OFFLINE,9,Android.Media.Metrics.NetworkType,Offline,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_OTHER,1,Android.Media.Metrics.NetworkType,Other,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_UNKNOWN,0,Android.Media.Metrics.NetworkType,Unknown,remove, +E,31,android/media/metrics/NetworkEvent.NETWORK_TYPE_WIFI,2,Android.Media.Metrics.NetworkType,Wifi,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_AUDIO_TRACK_INIT_FAILED,17,Android.Media.Metrics.PlaybackError,AudioTrackInitFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_AUDIO_TRACK_OTHER,19,Android.Media.Metrics.PlaybackError,AudioTrackOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_AUDIO_TRACK_WRITE_FAILED,18,Android.Media.Metrics.PlaybackError,AudioTrackWriteFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DECODER_INIT_FAILED,13,Android.Media.Metrics.PlaybackError,DecoderInitFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DECODING_FAILED,14,Android.Media.Metrics.PlaybackError,DecodingFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DECODING_FORMAT_EXCEEDS_CAPABILITIES,15,Android.Media.Metrics.PlaybackError,DecodingFormatExceedsCapabilities,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DECODING_FORMAT_UNSUPPORTED,35,Android.Media.Metrics.PlaybackError,DecodingFormatUnsupported,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DECODING_OTHER,16,Android.Media.Metrics.PlaybackError,DecodingOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_CONTENT_ERROR,28,Android.Media.Metrics.PlaybackError,DrmContentError,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_DEVICE_REVOKED,29,Android.Media.Metrics.PlaybackError,DrmDeviceRevoked,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_DISALLOWED_OPERATION,26,Android.Media.Metrics.PlaybackError,DrmDisallowedOperation,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_LICENSE_ACQUISITION_FAILED,25,Android.Media.Metrics.PlaybackError,DrmLicenseAcquisitionFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_OTHER,30,Android.Media.Metrics.PlaybackError,DrmOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_PROVISIONING_FAILED,24,Android.Media.Metrics.PlaybackError,DrmProvisioningFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_SCHEME_UNSUPPORTED,23,Android.Media.Metrics.PlaybackError,DrmSchemeUnsupported,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_DRM_SYSTEM_ERROR,27,Android.Media.Metrics.PlaybackError,DrmSystemError,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_BAD_HTTP_STATUS,5,Android.Media.Metrics.PlaybackError,IoBadHttpStatus,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_CONNECTION_CLOSED,8,Android.Media.Metrics.PlaybackError,IoConnectionClosed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_CONNECTION_TIMEOUT,7,Android.Media.Metrics.PlaybackError,IoConnectionTimeout,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_DNS_FAILED,6,Android.Media.Metrics.PlaybackError,IoDnsFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_FILE_NOT_FOUND,31,Android.Media.Metrics.PlaybackError,IoFileNotFound,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_NETWORK_CONNECTION_FAILED,4,Android.Media.Metrics.PlaybackError,IoNetworkConnectionFailed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_NETWORK_UNAVAILABLE,3,Android.Media.Metrics.PlaybackError,IoNetworkUnavailable,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_NO_PERMISSION,32,Android.Media.Metrics.PlaybackError,IoNoPermission,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_IO_OTHER,9,Android.Media.Metrics.PlaybackError,IoOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_OTHER,1,Android.Media.Metrics.PlaybackError,Other,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PARSING_CONTAINER_MALFORMED,11,Android.Media.Metrics.PlaybackError,ParsingContainerMalformed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PARSING_CONTAINER_UNSUPPORTED,34,Android.Media.Metrics.PlaybackError,ParsingContainerUnsupported,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PARSING_MANIFEST_MALFORMED,10,Android.Media.Metrics.PlaybackError,ParsingManifestMalformed,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PARSING_MANIFEST_UNSUPPORTED,33,Android.Media.Metrics.PlaybackError,ParsingManifestUnsupported,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PARSING_OTHER,12,Android.Media.Metrics.PlaybackError,ParsingOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PLAYER_BEHIND_LIVE_WINDOW,21,Android.Media.Metrics.PlaybackError,PlayerBehindLiveWindow,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PLAYER_OTHER,22,Android.Media.Metrics.PlaybackError,PlayerOther,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_PLAYER_REMOTE,20,Android.Media.Metrics.PlaybackError,PlayerRemote,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_RUNTIME,2,Android.Media.Metrics.PlaybackError,Runtime,remove, +E,31,android/media/metrics/PlaybackErrorEvent.ERROR_UNKNOWN,0,Android.Media.Metrics.PlaybackError,Unknown,remove, +E,31,android/media/metrics/PlaybackMetrics.CONTENT_TYPE_AD,2,Android.Media.Metrics.PlaybackContentType,Ad,remove, +E,31,android/media/metrics/PlaybackMetrics.CONTENT_TYPE_MAIN,1,Android.Media.Metrics.PlaybackContentType,Main,remove, +E,31,android/media/metrics/PlaybackMetrics.CONTENT_TYPE_OTHER,3,Android.Media.Metrics.PlaybackContentType,Other,remove, +E,31,android/media/metrics/PlaybackMetrics.CONTENT_TYPE_UNKNOWN,0,Android.Media.Metrics.PlaybackContentType,Unknown,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_CLEARKEY,6,Android.Media.Metrics.PlaybackDrmType,Clearkey,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_NONE,0,Android.Media.Metrics.PlaybackDrmType,None,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_OTHER,1,Android.Media.Metrics.PlaybackDrmType,Other,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_PLAY_READY,2,Android.Media.Metrics.PlaybackDrmType,PlayReady,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_WIDEVINE_L1,3,Android.Media.Metrics.PlaybackDrmType,WidevineL1,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_WIDEVINE_L3,4,Android.Media.Metrics.PlaybackDrmType,WidevineL3,remove, +E,31,android/media/metrics/PlaybackMetrics.DRM_TYPE_WV_L3_FALLBACK,5,Android.Media.Metrics.PlaybackDrmType,WvL3Fallback,remove, +E,31,android/media/metrics/PlaybackMetrics.PLAYBACK_TYPE_LIVE,2,Android.Media.Metrics.PlaybackType,Live,remove, +E,31,android/media/metrics/PlaybackMetrics.PLAYBACK_TYPE_OTHER,3,Android.Media.Metrics.PlaybackType,Other,remove, +E,31,android/media/metrics/PlaybackMetrics.PLAYBACK_TYPE_UNKNOWN,0,Android.Media.Metrics.PlaybackType,Unknown,remove, +E,31,android/media/metrics/PlaybackMetrics.PLAYBACK_TYPE_VOD,1,Android.Media.Metrics.PlaybackType,Vod,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_SOURCE_DEVICE,2,Android.Media.Metrics.PlaybackStreamSource,Device,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_SOURCE_MIXED,3,Android.Media.Metrics.PlaybackStreamSource,Mixed,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_SOURCE_NETWORK,1,Android.Media.Metrics.PlaybackStreamSource,Network,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_SOURCE_UNKNOWN,0,Android.Media.Metrics.PlaybackStreamSource,Unknown,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_DASH,3,Android.Media.Metrics.PlaybackStreamType,Dash,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_HLS,4,Android.Media.Metrics.PlaybackStreamType,Hls,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_OTHER,1,Android.Media.Metrics.PlaybackStreamType,Other,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_PROGRESSIVE,2,Android.Media.Metrics.PlaybackStreamType,Progressive,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_SS,5,Android.Media.Metrics.PlaybackStreamType,Ss,remove, +E,31,android/media/metrics/PlaybackMetrics.STREAM_TYPE_UNKNOWN,0,Android.Media.Metrics.PlaybackStreamType,Unknown,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_ABANDONED,15,Android.Media.Metrics.PlaybackState,Abandoned,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_BUFFERING,6,Android.Media.Metrics.PlaybackState,Buffering,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_ENDED,11,Android.Media.Metrics.PlaybackState,Ended,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_FAILED,13,Android.Media.Metrics.PlaybackState,Failed,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_INTERRUPTED_BY_AD,14,Android.Media.Metrics.PlaybackState,InterruptedByAd,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_JOINING_BACKGROUND,1,Android.Media.Metrics.PlaybackState,JoiningBackground,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_JOINING_FOREGROUND,2,Android.Media.Metrics.PlaybackState,JoiningForeground,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_NOT_STARTED,0,Android.Media.Metrics.PlaybackState,NotStarted,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_PAUSED,4,Android.Media.Metrics.PlaybackState,Paused,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_PAUSED_BUFFERING,7,Android.Media.Metrics.PlaybackState,PausedBuffering,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_PLAYING,3,Android.Media.Metrics.PlaybackState,Playing,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_SEEKING,5,Android.Media.Metrics.PlaybackState,Seeking,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_STOPPED,12,Android.Media.Metrics.PlaybackState,Stopped,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_SUPPRESSED,9,Android.Media.Metrics.PlaybackState,Suppressed,remove, +E,31,android/media/metrics/PlaybackStateEvent.STATE_SUPPRESSED_BUFFERING,10,Android.Media.Metrics.PlaybackState,SuppressedBuffering,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_CHANGE_REASON_ADAPTIVE,4,Android.Media.Metrics.TrackChangeReason,Adaptive,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_CHANGE_REASON_INITIAL,2,Android.Media.Metrics.TrackChangeReason,Initial,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_CHANGE_REASON_MANUAL,3,Android.Media.Metrics.TrackChangeReason,Manual,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_CHANGE_REASON_OTHER,1,Android.Media.Metrics.TrackChangeReason,Other,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_CHANGE_REASON_UNKNOWN,0,Android.Media.Metrics.TrackChangeReason,Unknown,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_STATE_OFF,0,Android.Media.Metrics.TrackState,Off,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_STATE_ON,1,Android.Media.Metrics.TrackState,On,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_TYPE_AUDIO,0,Android.Media.Metrics.TrackType,Audio,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_TYPE_TEXT,2,Android.Media.Metrics.TrackType,Text,remove, +E,31,android/media/metrics/TrackChangeEvent.TRACK_TYPE_VIDEO,1,Android.Media.Metrics.TrackType,Video,remove, E,28,android/media/MicrophoneInfo.CHANNEL_MAPPING_DIRECT,1,Android.Media.MicrophoneChannelMapping,Direct,remove, E,28,android/media/MicrophoneInfo.CHANNEL_MAPPING_PROCESSED,2,Android.Media.MicrophoneChannelMapping,Processed,remove, E,28,android/media/MicrophoneInfo.DIRECTIONALITY_BI_DIRECTIONAL,2,Android.Media.MicrophoneDirectionality,BiDirectional,remove, @@ -4115,17 +4471,17 @@ E,28,android/media/MicrophoneInfo.DIRECTIONALITY_HYPER_CARDIOID,4,Android.Media. E,28,android/media/MicrophoneInfo.DIRECTIONALITY_OMNI,1,Android.Media.MicrophoneDirectionality,Omni,remove, E,28,android/media/MicrophoneInfo.DIRECTIONALITY_SUPER_CARDIOID,5,Android.Media.MicrophoneDirectionality,SuperCardioid,remove, E,28,android/media/MicrophoneInfo.DIRECTIONALITY_UNKNOWN,0,Android.Media.MicrophoneDirectionality,Unknown,remove, -?,28,android/media/MicrophoneInfo.GROUP_UNKNOWN,-1,,,, -?,28,android/media/MicrophoneInfo.INDEX_IN_THE_GROUP_UNKNOWN,-1,,,, +I,28,android/media/MicrophoneInfo.GROUP_UNKNOWN,-1,,,, +I,28,android/media/MicrophoneInfo.INDEX_IN_THE_GROUP_UNKNOWN,-1,,,, E,28,android/media/MicrophoneInfo.LOCATION_MAINBODY,1,Android.Media.MicrophoneLocation,Mainbody,remove, E,28,android/media/MicrophoneInfo.LOCATION_MAINBODY_MOVABLE,2,Android.Media.MicrophoneLocation,MainbodyMovable,remove, E,28,android/media/MicrophoneInfo.LOCATION_PERIPHERAL,3,Android.Media.MicrophoneLocation,Peripheral,remove, E,28,android/media/MicrophoneInfo.LOCATION_UNKNOWN,0,Android.Media.MicrophoneLocation,Unknown,remove, -E,23,android/media/midi/MidiDeviceInfo$PortInfo.TYPE_INPUT,1,Android.Media.Midi.MidiPortType,Input,keep, -E,23,android/media/midi/MidiDeviceInfo$PortInfo.TYPE_OUTPUT,2,Android.Media.Midi.MidiPortType,Output,keep, E,23,android/media/midi/MidiDeviceInfo.TYPE_BLUETOOTH,3,Android.Media.Midi.MidiDeviceType,Bluetooth,keep, E,23,android/media/midi/MidiDeviceInfo.TYPE_USB,1,Android.Media.Midi.MidiDeviceType,Usb,keep, E,23,android/media/midi/MidiDeviceInfo.TYPE_VIRTUAL,2,Android.Media.Midi.MidiDeviceType,Virtual,keep, +E,23,android/media/midi/MidiDeviceInfo$PortInfo.TYPE_INPUT,1,Android.Media.Midi.MidiPortType,Input,keep, +E,23,android/media/midi/MidiDeviceInfo$PortInfo.TYPE_OUTPUT,2,Android.Media.Midi.MidiPortType,Output,keep, E,23,android/media/PlaybackParams.AUDIO_FALLBACK_MODE_DEFAULT,0,Android.Media.AudioFallbackMode,Default,keep, E,23,android/media/PlaybackParams.AUDIO_FALLBACK_MODE_FAIL,2,Android.Media.AudioFallbackMode,Fail,keep, E,23,android/media/PlaybackParams.AUDIO_FALLBACK_MODE_MUTE,1,Android.Media.AudioFallbackMode,Mute,keep, @@ -4136,7 +4492,6 @@ E,19,android/media/Rating.RATING_HEART,1,Android.Media.RatingStyle,Heart,remove, E,21,android/media/Rating.RATING_NONE,0,Android.Media.RatingStyle,None,remove, E,19,android/media/Rating.RATING_PERCENTAGE,6,Android.Media.RatingStyle,Percentage,remove, E,19,android/media/Rating.RATING_THUMB_UP_DOWN,2,Android.Media.RatingStyle,ThumbUpDown,remove, -E,15,android/media/RemoteControlClient$MetadataEditor.BITMAP_KEY_ARTWORK,100,Android.Media.BitmapKey,Artwork,remove, E,15,android/media/RemoteControlClient.FLAG_KEY_MEDIA_FAST_FORWARD,64,Android.Media.RemoteControlFlags,FastForward,remove,flags E,15,android/media/RemoteControlClient.FLAG_KEY_MEDIA_NEXT,128,Android.Media.RemoteControlFlags,Next,remove,flags E,15,android/media/RemoteControlClient.FLAG_KEY_MEDIA_PAUSE,16,Android.Media.RemoteControlFlags,Pause,remove,flags @@ -4156,6 +4511,7 @@ E,15,android/media/RemoteControlClient.PLAYSTATE_REWINDING,5,Android.Media.Remot E,15,android/media/RemoteControlClient.PLAYSTATE_SKIPPING_BACKWARDS,7,Android.Media.RemoteControlPlayState,SkippingBackwards,remove, E,15,android/media/RemoteControlClient.PLAYSTATE_SKIPPING_FORWARDS,6,Android.Media.RemoteControlPlayState,SkippingForwards,remove, E,15,android/media/RemoteControlClient.PLAYSTATE_STOPPED,1,Android.Media.RemoteControlPlayState,Stopped,remove, +E,15,android/media/RemoteControlClient$MetadataEditor.BITMAP_KEY_ARTWORK,100,Android.Media.BitmapKey,Artwork,remove, E,19,android/media/RemoteController.POSITION_SYNCHRONIZATION_CHECK,1,Android.Media.SynchronizationPosition,Check,remove, E,19,android/media/RemoteController.POSITION_SYNCHRONIZATION_NONE,0,Android.Media.SynchronizationPosition,None,remove, E,10,android/media/RingtoneManager.ID_COLUMN_INDEX,0,Android.Media.RingtoneColumnIndex,Id,keep, @@ -4167,10 +4523,10 @@ E,10,android/media/RingtoneManager.TYPE_RINGTONE,1,Android.Media.RingtoneType,Ri E,10,android/media/RingtoneManager.URI_COLUMN_INDEX,2,Android.Media.RingtoneColumnIndex,Uri,keep, E,21,android/media/session/MediaController$PlaybackInfo.PLAYBACK_TYPE_LOCAL,1,Android.Media.Session.MediaPlaybackType,Local,keep, E,21,android/media/session/MediaController$PlaybackInfo.PLAYBACK_TYPE_REMOTE,2,Android.Media.Session.MediaPlaybackType,Remote,keep, -?,21,android/media/session/MediaSession$QueueItem.UNKNOWN_ID,-1,,,, A,0,,0,Android.Media.Session.MediaSessionFlags,None,remove,flags E,21,android/media/session/MediaSession.FLAG_HANDLES_MEDIA_BUTTONS,1,Android.Media.Session.MediaSessionFlags,HandlesMediaButtons,remove,flags E,21,android/media/session/MediaSession.FLAG_HANDLES_TRANSPORT_CONTROLS,2,Android.Media.Session.MediaSessionFlags,HandlesTransportControls,remove,flags +I,21,android/media/session/MediaSession$QueueItem.UNKNOWN_ID,-1,,,, E,21,android/media/session/PlaybackState.STATE_BUFFERING,6,Android.Media.Session.PlaybackStateCode,Buffering,remove, E,21,android/media/session/PlaybackState.STATE_CONNECTING,8,Android.Media.Session.PlaybackStateCode,Connecting,remove, E,21,android/media/session/PlaybackState.STATE_ERROR,7,Android.Media.Session.PlaybackStateCode,Error,remove, @@ -4183,10 +4539,10 @@ E,21,android/media/session/PlaybackState.STATE_SKIPPING_TO_NEXT,10,Android.Media E,21,android/media/session/PlaybackState.STATE_SKIPPING_TO_PREVIOUS,9,Android.Media.Session.PlaybackStateCode,SkippingToPrevious,remove, E,21,android/media/session/PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM,11,Android.Media.Session.PlaybackStateCode,SkippingToQueueItem,remove, E,21,android/media/session/PlaybackState.STATE_STOPPED,1,Android.Media.Session.PlaybackStateCode,Stopped,remove, -?,29,android/media/Session2Command$Result.RESULT_ERROR_UNKNOWN_ERROR,-1,,,, -?,29,android/media/Session2Command$Result.RESULT_INFO_SKIPPED,1,,,, -?,29,android/media/Session2Command$Result.RESULT_SUCCESS,0,,,, -?,29,android/media/Session2Command.COMMAND_CODE_CUSTOM,0,,,, +I,29,android/media/Session2Command.COMMAND_CODE_CUSTOM,0,,,, +I,29,android/media/Session2Command$Result.RESULT_ERROR_UNKNOWN_ERROR,-1,,,, +I,29,android/media/Session2Command$Result.RESULT_INFO_SKIPPED,1,,,, +I,29,android/media/Session2Command$Result.RESULT_SUCCESS,0,,,, E,29,android/media/Session2Token.TYPE_SESSION,0,Android.Media.MediaSessionType,Session,remove, E,29,android/media/Session2Token.TYPE_SESSION_SERVICE,1,Android.Media.MediaSessionType,SessionService,remove, E,23,android/media/SyncParams.AUDIO_ADJUST_MODE_DEFAULT,0,Android.Media.AudioAdjustMode,Default,keep, @@ -4551,7 +4907,7 @@ E,30,android/net/ConnectivityDiagnosticsManager$ConnectivityReport.NETWORK_VALID E,30,android/net/ConnectivityDiagnosticsManager$ConnectivityReport.NETWORK_VALIDATION_RESULT_VALID,1,Android.Net.NetworkValidationResult,Valid,remove, E,30,android/net/ConnectivityDiagnosticsManager$DataStallReport.DETECTION_METHOD_DNS_EVENTS,1,Android.Net.DataStallDetectionMethod,DnsEvents,remove, E,30,android/net/ConnectivityDiagnosticsManager$DataStallReport.DETECTION_METHOD_TCP_METRICS,2,Android.Net.DataStallDetectionMethod,TcpMetrics,remove, -?,0,android/net/ConnectivityManager.DEFAULT_NETWORK_PREFERENCE,1,,,, +I,0,android/net/ConnectivityManager.DEFAULT_NETWORK_PREFERENCE,1,,,, E,26,android/net/ConnectivityManager.MULTIPATH_PREFERENCE_HANDOVER,1,Android.Net.MultipathPreference,Handover,keep, E,26,android/net/ConnectivityManager.MULTIPATH_PREFERENCE_PERFORMANCE,4,Android.Net.MultipathPreference,Performance,keep, E,26,android/net/ConnectivityManager.MULTIPATH_PREFERENCE_RELIABILITY,2,Android.Net.MultipathPreference,Reliability,keep, @@ -4569,15 +4925,22 @@ E,10,android/net/ConnectivityManager.TYPE_MOBILE_SUPL,3,Android.Net.Connectivity E,21,android/net/ConnectivityManager.TYPE_VPN,17,Android.Net.ConnectivityType,Vpn,keep, E,10,android/net/ConnectivityManager.TYPE_WIFI,1,Android.Net.ConnectivityType,Wifi,keep, E,10,android/net/ConnectivityManager.TYPE_WIMAX,6,Android.Net.ConnectivityType,Wimax,keep, -?,29,android/net/DnsResolver.CLASS_IN,1,,,, -?,29,android/net/DnsResolver.ERROR_PARSE,0,,,, -?,29,android/net/DnsResolver.ERROR_SYSTEM,1,,,, +A,31,,0,Android.Net.NetworkCallbackFlags,None,remove,flags +E,31,android/net/ConnectivityManager$NetworkCallback.FLAG_INCLUDE_LOCATION_INFO,1,Android.Net.NetworkCallbackFlags,IncludeLocationInfo,remove,flags +I,29,android/net/DnsResolver.CLASS_IN,1,,,, +I,29,android/net/DnsResolver.ERROR_PARSE,0,,,, +I,29,android/net/DnsResolver.ERROR_SYSTEM,1,,,, E,29,android/net/DnsResolver.FLAG_EMPTY,0,Android.Net.DnsResolverFlag,Empty,remove, E,29,android/net/DnsResolver.FLAG_NO_CACHE_LOOKUP,4,Android.Net.DnsResolverFlag,NoCacheLookup,remove, E,29,android/net/DnsResolver.FLAG_NO_CACHE_STORE,2,Android.Net.DnsResolverFlag,NoCacheStore,remove, E,29,android/net/DnsResolver.FLAG_NO_RETRY,1,Android.Net.DnsResolverFlag,NoRetry,remove, E,29,android/net/DnsResolver.TYPE_A,1,Android.Net.DnsResolverType,A,remove, E,29,android/net/DnsResolver.TYPE_AAAA,28,Android.Net.DnsResolverType,Aaaa,remove, +E,31,android/net/eap/EapSessionConfig$EapMethodConfig.EAP_TYPE_AKA,23,Android.Net.Eap.EapType,Aka,remove, +E,31,android/net/eap/EapSessionConfig$EapMethodConfig.EAP_TYPE_AKA_PRIME,50,Android.Net.Eap.EapType,AkaPrime,remove, +E,31,android/net/eap/EapSessionConfig$EapMethodConfig.EAP_TYPE_MSCHAP_V2,26,Android.Net.Eap.EapType,MschapV2,remove, +E,31,android/net/eap/EapSessionConfig$EapMethodConfig.EAP_TYPE_SIM,18,Android.Net.Eap.EapType,Sim,remove, +E,31,android/net/eap/EapSessionConfig$EapMethodConfig.EAP_TYPE_TTLS,21,Android.Net.Eap.EapType,Ttls,remove, E,15,android/net/http/SslError.SSL_DATE_INVALID,4,Android.Net.Http.SslErrorType,DateInvalid,remove, E,10,android/net/http/SslError.SSL_EXPIRED,1,Android.Net.Http.SslErrorType,Expired,remove, E,10,android/net/http/SslError.SSL_IDMISMATCH,2,Android.Net.Http.SslErrorType,Idmismatch,remove, @@ -4585,6 +4948,59 @@ E,15,android/net/http/SslError.SSL_INVALID,5,Android.Net.Http.SslErrorType,Inval E,10,android/net/http/SslError.SSL_MAX_ERROR,6,Android.Net.Http.SslErrorType,MaxError,remove, E,10,android/net/http/SslError.SSL_NOTYETVALID,0,Android.Net.Http.SslErrorType,Notyetvalid,remove, E,10,android/net/http/SslError.SSL_UNTRUSTED,3,Android.Net.Http.SslErrorType,Untrusted,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_AUTHENTICATION_FAILED,24,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,AuthenticationFailed,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_CHILD_SA_NOT_FOUND,44,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,ChildSaNotFound,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_FAILED_CP_REQUIRED,37,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,FailedCpRequired,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INTERNAL_ADDRESS_FAILURE,36,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InternalAddressFailure,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_IKE_SPI,4,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidIkeSpi,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_KE_PAYLOAD,17,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidKePayload,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_MAJOR_VERSION,5,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidMajorVersion,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_MESSAGE_ID,9,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidMessageId,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_SELECTORS,39,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidSelectors,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_INVALID_SYNTAX,7,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,InvalidSyntax,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_NO_ADDITIONAL_SAS,35,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,NoAdditionalSas,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_NO_PROPOSAL_CHOSEN,14,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,NoProposalChosen,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_SINGLE_PAIR_REQUIRED,34,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,SinglePairRequired,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_TEMPORARY_FAILURE,43,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,TemporaryFailure,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_TS_UNACCEPTABLE,38,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,TsUnacceptable,remove, +E,31,android/net/ipsec/ike/exceptions/IkeProtocolException.ERROR_TYPE_UNSUPPORTED_CRITICAL_PAYLOAD,1,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType,UnsupportedCriticalPayload,remove, +E,31,android/net/ipsec/ike/IkeSessionConfiguration.EXTENSION_TYPE_FRAGMENTATION,1,Android.Net.Ipsec.Ike.IkeSessionExtensionType,Fragmentation,remove, +E,31,android/net/ipsec/ike/IkeSessionConfiguration.EXTENSION_TYPE_MOBIKE,2,Android.Net.Ipsec.Ike.IkeSessionExtensionType,Mobike,remove, +E,31,android/net/ipsec/ike/IkeSessionParams.IKE_OPTION_ACCEPT_ANY_REMOTE_ID,0,Android.Net.Ipsec.Ike.IkeSessionOption,AcceptAnyRemoteId,remove, +E,31,android/net/ipsec/ike/IkeSessionParams.IKE_OPTION_EAP_ONLY_AUTH,1,Android.Net.Ipsec.Ike.IkeSessionOption,EapOnlyAuth,remove, +E,31,android/net/ipsec/ike/IkeSessionParams.IKE_OPTION_FORCE_PORT_4500,3,Android.Net.Ipsec.Ike.IkeSessionOption,ForcePort4500,remove, +E,31,android/net/ipsec/ike/IkeSessionParams.IKE_OPTION_MOBIKE,2,Android.Net.Ipsec.Ike.IkeSessionOption,Mobike,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_1024_BIT_MODP,2,Android.Net.IpSec.Ike.SaProposalDhGroup,Group1024BitModp,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_1536_BIT_MODP,5,Android.Net.IpSec.Ike.SaProposalDhGroup,Group1536BitModp,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_2048_BIT_MODP,14,Android.Net.IpSec.Ike.SaProposalDhGroup,Group2048BitModp,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_3072_BIT_MODP,15,Android.Net.IpSec.Ike.SaProposalDhGroup,Group3072BitModp,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_4096_BIT_MODP,16,Android.Net.IpSec.Ike.SaProposalDhGroup,Group4096BitModp,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_CURVE_25519,31,Android.Net.IpSec.Ike.SaProposalDhGroup,Curve25519,remove, +E,31,android/net/ipsec/ike/SaProposal.DH_GROUP_NONE,0,Android.Net.IpSec.Ike.SaProposalDhGroup,None,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_3DES,3,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,ThreeDes,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_AES_CBC,12,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,AesCbc,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_AES_CTR,13,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,AesCtr,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_AES_GCM_12,19,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,AesGcm12,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_AES_GCM_16,20,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,AesGcm16,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_AES_GCM_8,18,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,AesGcm8,remove, +E,31,android/net/ipsec/ike/SaProposal.ENCRYPTION_ALGORITHM_CHACHA20_POLY1305,28,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm,Chacha20Poly1305,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_AES_CMAC_96,8,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,AesCmac96,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_AES_XCBC_96,5,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,AesXcbc96,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_HMAC_SHA1_96,2,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,HmacSha196,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_HMAC_SHA2_256_128,12,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,HmacSha2256128,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_HMAC_SHA2_384_192,13,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,HmacSha2384192,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_HMAC_SHA2_512_256,14,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,HmacSha2512256,remove, +E,31,android/net/ipsec/ike/SaProposal.INTEGRITY_ALGORITHM_NONE,0,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm,None,remove, +E,31,android/net/ipsec/ike/SaProposal.KEY_LEN_AES_128,128,Android.Net.IpSec.Ike.SaProposalKeyLength,Aes128,remove, +E,31,android/net/ipsec/ike/SaProposal.KEY_LEN_AES_192,192,Android.Net.IpSec.Ike.SaProposalKeyLength,Aes192,remove, +E,31,android/net/ipsec/ike/SaProposal.KEY_LEN_AES_256,256,Android.Net.IpSec.Ike.SaProposalKeyLength,Aes256,remove, +E,31,android/net/ipsec/ike/SaProposal.KEY_LEN_UNUSED,0,Android.Net.IpSec.Ike.SaProposalKeyLength,Unused,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_AES128_CMAC,8,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,Aes128Cmac,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_AES128_XCBC,4,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,Aes128Xcbc,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_HMAC_SHA1,2,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,HmacSha1,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_SHA2_256,5,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,Sha2256,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_SHA2_384,6,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,Sha2384,remove, +E,31,android/net/ipsec/ike/SaProposal.PSEUDORANDOM_FUNCTION_SHA2_512,7,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction,Sha2512,remove, E,28,android/net/IpSecManager.DIRECTION_IN,0,Android.Net.IpSecTransportDirection,In,remove, E,28,android/net/IpSecManager.DIRECTION_OUT,1,Android.Net.IpSecTransportDirection,Out,remove, E,19,android/net/LocalSocket.SOCKET_DGRAM,1,Android.Net.SocketType,Dgram,remove, @@ -4597,8 +5013,10 @@ E,23,android/net/NetworkCapabilities.NET_CAPABILITY_CAPTIVE_PORTAL,17,Android.Ne E,21,android/net/NetworkCapabilities.NET_CAPABILITY_CBS,5,Android.Net.NetCapability,Cbs,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_DUN,2,Android.Net.NetCapability,Dun,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_EIMS,10,Android.Net.NetCapability,Eims,remove, +E,31,android/net/NetworkCapabilities.NET_CAPABILITY_ENTERPRISE,29,Android.Net.NetCapability,Enterprise,remove, E,28,android/net/NetworkCapabilities.NET_CAPABILITY_FOREGROUND,19,Android.Net.NetCapability,Foreground,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_FOTA,3,Android.Net.NetCapability,Fota,remove, +E,31,android/net/NetworkCapabilities.NET_CAPABILITY_HEAD_UNIT,32,Android.Net.NetCapability,HeadUnit,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_IA,7,Android.Net.NetCapability,Ia,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_IMS,4,Android.Net.NetCapability,Ims,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_INTERNET,12,Android.Net.NetCapability,Internet,remove, @@ -4617,26 +5035,27 @@ E,21,android/net/NetworkCapabilities.NET_CAPABILITY_TRUSTED,14,Android.Net.NetCa E,23,android/net/NetworkCapabilities.NET_CAPABILITY_VALIDATED,16,Android.Net.NetCapability,Validated,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_WIFI_P2P,6,Android.Net.NetCapability,WifiP2p,remove, E,21,android/net/NetworkCapabilities.NET_CAPABILITY_XCAP,9,Android.Net.NetCapability,Xcap,remove, -?,29,android/net/NetworkCapabilities.SIGNAL_STRENGTH_UNSPECIFIED,-2147483648,,,, +I,29,android/net/NetworkCapabilities.SIGNAL_STRENGTH_UNSPECIFIED,-2147483648,,,, E,21,android/net/NetworkCapabilities.TRANSPORT_BLUETOOTH,2,Android.Net.TransportType,Bluetooth,remove, E,21,android/net/NetworkCapabilities.TRANSPORT_CELLULAR,0,Android.Net.TransportType,Cellular,remove, E,21,android/net/NetworkCapabilities.TRANSPORT_ETHERNET,3,Android.Net.TransportType,Ethernet,remove, E,27,android/net/NetworkCapabilities.TRANSPORT_LOWPAN,6,Android.Net.TransportType,Lowpan,remove, +E,31,android/net/NetworkCapabilities.TRANSPORT_USB,8,Android.Net.TransportType,Usb,remove, E,21,android/net/NetworkCapabilities.TRANSPORT_VPN,4,Android.Net.TransportType,Vpn,remove, E,21,android/net/NetworkCapabilities.TRANSPORT_WIFI,1,Android.Net.TransportType,Wifi,remove, E,26,android/net/NetworkCapabilities.TRANSPORT_WIFI_AWARE,5,Android.Net.TransportType,WifiAware,remove, E,16,android/net/nsd/NsdManager.FAILURE_ALREADY_ACTIVE,3,Android.Net.Nsd.NsdFailure,AlreadyActive,remove, E,16,android/net/nsd/NsdManager.FAILURE_INTERNAL_ERROR,0,Android.Net.Nsd.NsdFailure,InternalError,remove, E,16,android/net/nsd/NsdManager.FAILURE_MAX_LIMIT,4,Android.Net.Nsd.NsdFailure,MaxLimit,remove, -?,16,android/net/nsd/NsdManager.NSD_STATE_DISABLED,1,,,, -?,16,android/net/nsd/NsdManager.NSD_STATE_ENABLED,2,,,, +I,16,android/net/nsd/NsdManager.NSD_STATE_DISABLED,1,,,, +I,16,android/net/nsd/NsdManager.NSD_STATE_ENABLED,2,,,, E,16,android/net/nsd/NsdManager.PROTOCOL_DNS_SD,1,Android.Net.Nsd.NsdProtocol,DnsSd,remove, E,30,android/net/PlatformVpnProfile.TYPE_IKEV2_IPSEC_PSK,7,Android.Net.PlatformVpnProfileType,Ikev2IpsecPsk,remove, E,30,android/net/PlatformVpnProfile.TYPE_IKEV2_IPSEC_RSA,8,Android.Net.PlatformVpnProfileType,Ikev2IpsecRsa,remove, E,30,android/net/PlatformVpnProfile.TYPE_IKEV2_IPSEC_USER_PASS,6,Android.Net.PlatformVpnProfileType,Ikev2IpsecUserPass,remove, -?,21,android/net/PskKeyManager.MAX_IDENTITY_HINT_LENGTH_BYTES,128,,,, -?,21,android/net/PskKeyManager.MAX_IDENTITY_LENGTH_BYTES,128,,,, -?,21,android/net/PskKeyManager.MAX_KEY_LENGTH_BYTES,256,,,, +I,21,android/net/PskKeyManager.MAX_IDENTITY_HINT_LENGTH_BYTES,128,,,, +I,21,android/net/PskKeyManager.MAX_IDENTITY_LENGTH_BYTES,128,,,, +I,21,android/net/PskKeyManager.MAX_KEY_LENGTH_BYTES,256,,,, E,15,android/net/rtp/AudioGroup.MODE_ECHO_SUPPRESSION,3,Android.Net.Rtp.AudioGroupMode,EchoSuppression,keep, E,15,android/net/rtp/AudioGroup.MODE_MUTED,1,Android.Net.Rtp.AudioGroupMode,Muted,keep, E,15,android/net/rtp/AudioGroup.MODE_NORMAL,2,Android.Net.Rtp.AudioGroupMode,Normal,keep, @@ -4657,7 +5076,7 @@ E,10,android/net/sip/SipErrorCode.SERVER_UNREACHABLE,-12,Android.Net.Sip.SipErro E,10,android/net/sip/SipErrorCode.SOCKET_ERROR,-1,Android.Net.Sip.SipErrorCodes,SocketError,remove, E,10,android/net/sip/SipErrorCode.TIME_OUT,-5,Android.Net.Sip.SipErrorCodes,TimeOut,remove, E,10,android/net/sip/SipErrorCode.TRANSACTION_TERMINTED,-3,Android.Net.Sip.SipErrorCodes,TransactionTerminted,remove, -?,0,android/net/sip/SipManager.INCOMING_CALL_RESULT_CODE,101,,,, +I,0,android/net/sip/SipManager.INCOMING_CALL_RESULT_CODE,101,,,, E,10,android/net/sip/SipSession$State.DEREGISTERING,2,Android.Net.Sip.SipSessionState,Deregistering,remove, E,10,android/net/sip/SipSession$State.IN_CALL,8,Android.Net.Sip.SipSessionState,InCall,remove, E,10,android/net/sip/SipSession$State.INCOMING_CALL,3,Android.Net.Sip.SipSessionState,IncomingCall,remove, @@ -4679,7 +5098,7 @@ E,29,android/net/SocketKeepalive.ERROR_INVALID_PORT,-22,Android.Net.ErrorCode,In E,29,android/net/SocketKeepalive.ERROR_INVALID_SOCKET,-25,Android.Net.ErrorCode,InvalidSocket,remove, E,29,android/net/SocketKeepalive.ERROR_SOCKET_NOT_IDLE,-26,Android.Net.ErrorCode,SocketNotIdle,remove, E,29,android/net/SocketKeepalive.ERROR_UNSUPPORTED,-30,Android.Net.ErrorCode,Unsupported,remove, -?,0,android/net/TrafficStats.UNSUPPORTED,-1,,,, +I,0,android/net/TrafficStats.UNSUPPORTED,-1,,,, E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.ALL_BUT_NUL_AND_ANGLE_BRACKETS_LEGAL,1439,Android.Net.IllegalCharacterFlags,AllButNulAndAngleBracketsLegal,keep,flags E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.ALL_BUT_NUL_LEGAL,1535,Android.Net.IllegalCharacterFlags,AllButNulLegal,keep,flags E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.ALL_BUT_WHITESPACE_LEGAL,1532,Android.Net.IllegalCharacterFlags,AllButWhitespaceLegal,keep,flags @@ -4702,6 +5121,13 @@ E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.SPACE_OK,1,And E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.SQUOTE_OK,16,Android.Net.IllegalCharacterFlags,SquoteOk,keep,flags E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.URL_AND_SPACE_LEGAL,405,Android.Net.IllegalCharacterFlags,UrlAndSpaceLegal,keep,flags E,10,android/net/UrlQuerySanitizer$IllegalCharacterValueSanitizer.URL_LEGAL,404,Android.Net.IllegalCharacterFlags,UrlLegal,keep,flags +E,31,android/net/vcn/VcnManager.VCN_ERROR_CODE_CONFIG_ERROR,1,Android.Net.Vcn.VcnErrorCode,ConfigError,remove, +E,31,android/net/vcn/VcnManager.VCN_ERROR_CODE_INTERNAL_ERROR,0,Android.Net.Vcn.VcnErrorCode,InternalError,remove, +E,31,android/net/vcn/VcnManager.VCN_ERROR_CODE_NETWORK_ERROR,2,Android.Net.Vcn.VcnErrorCode,NetworkError,remove, +E,31,android/net/vcn/VcnManager.VCN_STATUS_CODE_ACTIVE,2,Android.Net.Vcn.VcnStatusCode,Active,remove, +E,31,android/net/vcn/VcnManager.VCN_STATUS_CODE_INACTIVE,1,Android.Net.Vcn.VcnStatusCode,Inactive,remove, +E,31,android/net/vcn/VcnManager.VCN_STATUS_CODE_NOT_CONFIGURED,0,Android.Net.Vcn.VcnStatusCode,NotConfigured,remove, +E,31,android/net/vcn/VcnManager.VCN_STATUS_CODE_SAFE_MODE,3,Android.Net.Vcn.VcnStatusCode,SafeMode,remove, A,0,,0,Android.Net.Wifi.Aware.WifiAwareCipherSuite,None,remove, E,30,android/net/wifi/aware/Characteristics.WIFI_AWARE_CIPHER_SUITE_NCS_SK_128,1,Android.Net.Wifi.Aware.WifiAwareCipherSuite,NcsSk128,remove, E,30,android/net/wifi/aware/Characteristics.WIFI_AWARE_CIPHER_SUITE_NCS_SK_256,2,Android.Net.Wifi.Aware.WifiAwareCipherSuite,NcsSk256,remove, @@ -4711,11 +5137,14 @@ E,26,android/net/wifi/aware/SubscribeConfig.SUBSCRIBE_TYPE_ACTIVE,1,Android.Net. E,26,android/net/wifi/aware/SubscribeConfig.SUBSCRIBE_TYPE_PASSIVE,0,Android.Net.Wifi.Aware.SubscribeType,Passive,keep, E,26,android/net/wifi/aware/WifiAwareManager.WIFI_AWARE_DATA_PATH_ROLE_INITIATOR,0,Android.Net.Wifi.Aware.WifiAwareDataPathRole,Initiator,keep, E,26,android/net/wifi/aware/WifiAwareManager.WIFI_AWARE_DATA_PATH_ROLE_RESPONDER,1,Android.Net.Wifi.Aware.WifiAwareDataPathRole,Responder,keep, +E,31,android/net/wifi/aware/WifiAwareManager.WIFI_AWARE_DISCOVERY_LOST_REASON_PEER_NOT_VISIBLE,1,Android.Net.Wifi.Aware.WifiAwareDiscoveryLostReason,PeerNotVisible,remove, +E,31,android/net/wifi/aware/WifiAwareManager.WIFI_AWARE_DISCOVERY_LOST_REASON_UNKNOWN,0,Android.Net.Wifi.Aware.WifiAwareDiscoveryLostReason,Unknown,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_AUTHENTICATION,-2,Android.Net.Wifi.EasyConnectEventFailure,Authentication,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_BUSY,-5,Android.Net.Wifi.EasyConnectEventFailure,Busy,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_CANNOT_FIND_NETWORK,-10,Android.Net.Wifi.EasyConnectEventFailure,CannotFindNetwork,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_CONFIGURATION,-4,Android.Net.Wifi.EasyConnectEventFailure,Configuration,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_ENROLLEE_AUTHENTICATION,-11,Android.Net.Wifi.EasyConnectEventFailure,EnrolleeAuthentication,remove, +E,31,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_ENROLLEE_FAILED_TO_SCAN_NETWORK_CHANNEL,-14,Android.Net.Wifi.EasyConnectEventFailure,EnrolleeFailedToScanNetworkChannel,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_ENROLLEE_REJECTED_CONFIGURATION,-12,Android.Net.Wifi.EasyConnectEventFailure,EnrolleeRejectedConfiguration,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_GENERIC,-7,Android.Net.Wifi.EasyConnectEventFailure,Generic,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_INVALID_NETWORK,-9,Android.Net.Wifi.EasyConnectEventFailure,InvalidNetwork,remove, @@ -4723,6 +5152,7 @@ E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_INVAL E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE,-3,Android.Net.Wifi.EasyConnectEventFailure,NotCompatible,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_NOT_SUPPORTED,-8,Android.Net.Wifi.EasyConnectEventFailure,NotSupported,remove, E,30,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_TIMEOUT,-6,Android.Net.Wifi.EasyConnectEventFailure,Timeout,remove, +E,31,android/net/wifi/EasyConnectStatusCallback.EASY_CONNECT_EVENT_FAILURE_URI_GENERATION,-13,Android.Net.Wifi.EasyConnectEventFailure,UriGeneration,remove, E,16,android/net/wifi/p2p/nsd/WifiP2pServiceInfo.SERVICE_TYPE_ALL,0,Android.Net.Wifi.P2p.Nsd.ServiceType,All,remove, E,16,android/net/wifi/p2p/nsd/WifiP2pServiceInfo.SERVICE_TYPE_BONJOUR,1,Android.Net.Wifi.P2p.Nsd.ServiceType,Bonjour,remove, E,16,android/net/wifi/p2p/nsd/WifiP2pServiceInfo.SERVICE_TYPE_UPNP,2,Android.Net.Wifi.P2p.Nsd.ServiceType,Upnp,remove, @@ -4744,46 +5174,60 @@ E,15,android/net/wifi/p2p/WifiP2pManager.BUSY,2,Android.Net.Wifi.P2p.WifiP2pFail E,15,android/net/wifi/p2p/WifiP2pManager.ERROR,0,Android.Net.Wifi.P2p.WifiP2pFailureReason,Error,remove, E,16,android/net/wifi/p2p/WifiP2pManager.NO_SERVICE_REQUESTS,3,Android.Net.Wifi.P2p.WifiP2pFailureReason,NoServiceRequests,remove, E,15,android/net/wifi/p2p/WifiP2pManager.P2P_UNSUPPORTED,1,Android.Net.Wifi.P2p.WifiP2pFailureReason,P2pUnsupported,remove, -?,16,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_DISCOVERY_STARTED,2,,,, -?,16,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_DISCOVERY_STOPPED,1,,,, +I,16,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_DISCOVERY_STARTED,2,,,, +I,16,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_DISCOVERY_STOPPED,1,,,, E,15,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_STATE_DISABLED,1,Android.Net.Wifi.P2p.WifiP2pState,Disabled,remove, E,15,android/net/wifi/p2p/WifiP2pManager.WIFI_P2P_STATE_ENABLED,2,Android.Net.Wifi.P2p.WifiP2pState,Enabled,remove, +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_AUDIO_ONLY_SUPPORT_AT_SOURCE,2048,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,AudioOnlySupportAtSource,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_AUDIO_UNSUPPORTED_AT_PRIMARY_SINK,1024,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,AudioUnsupportedAtPrimarySink,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_CONTENT_PROTECTION_SUPPORT,256,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,ContentProtectionSupport,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_COUPLED_SINK_SUPPORT_AT_SINK,8,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,CoupledSinkSupportAtSink,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_COUPLED_SINK_SUPPORT_AT_SOURCE,4,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,CoupledSinkSupportAtSource,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_DEVICE_TYPE_MASK,3,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,DeviceTypeMask,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_PREFERRED_CONNECTIVITY_MASK,128,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,PreferredConnectivityMask,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_SESSION_AVAILABLE_MASK,48,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,SessionAvailableMask,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_TDLS_PERSISTENT_GROUP,4096,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,TdlsPersistentGroup,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_TDLS_PERSISTENT_GROUP_REINVOKE,8192,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,TdlsPersistentGroupReinvoke,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_TIME_SYNCHRONIZATION_SUPPORT,512,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,TimeSynchronizationSupport,remove,flags +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_INFO_WFD_SERVICE_DISCOVERY_SUPPORT,64,Android.Net.Wifi.P2P.WfdInfoDeviceInfo,WfdServiceDiscoverySupport,remove,flags E,30,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_TYPE_PRIMARY_SINK,1,Android.Net.Wifi.P2p.WfdInfoDeviceType,PrimarySink,remove, E,30,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_TYPE_SECONDARY_SINK,2,Android.Net.Wifi.P2p.WfdInfoDeviceType,SecondarySink,remove, E,30,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_TYPE_SOURCE_OR_PRIMARY_SINK,3,Android.Net.Wifi.P2p.WfdInfoDeviceType,SourceOrPrimarySink,remove, E,30,android/net/wifi/p2p/WifiP2pWfdInfo.DEVICE_TYPE_WFD_SOURCE,0,Android.Net.Wifi.P2p.WfdInfoDeviceType,WfdSource,remove, -?,29,android/net/wifi/rtt/CivicLocationKeys.ADDITIONAL_CODE,32,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.APT,26,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.BOROUGH,4,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.BRANCH_ROAD_NAME,36,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.BUILDING,25,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.CITY,3,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.COUNTY,2,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.DESK,33,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.FLOOR,27,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.GROUP_OF_STREETS,6,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.HNO,19,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.HNS,20,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.LANGUAGE,0,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.LMK,21,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.LOC,22,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.NAM,23,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.NEIGHBORHOOD,5,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.PCN,30,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.PO_BOX,31,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.POD,17,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.POSTAL_CODE,24,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.PRD,16,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.PRIMARY_ROAD_NAME,34,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.ROAD_SECTION,35,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.ROOM,28,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.SCRIPT,128,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.STATE,1,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.STREET_NAME_POST_MODIFIER,39,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.STREET_NAME_PRE_MODIFIER,38,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.STS,18,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.SUBBRANCH_ROAD_NAME,37,,,, -?,29,android/net/wifi/rtt/CivicLocationKeys.TYPE_OF_PLACE,29,,,, +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.PREFERRED_CONNECTIVITY_P2P,0,Android.Net.Wifi.P2P.WfdInfoPreferredConnectivity,P2P,remove, +E,31,android/net/wifi/p2p/WifiP2pWfdInfo.PREFERRED_CONNECTIVITY_TDLS,1,Android.Net.Wifi.P2P.WfdInfoPreferredConnectivity,Tdls,remove, +I,29,android/net/wifi/rtt/CivicLocationKeys.ADDITIONAL_CODE,32,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.APT,26,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.BOROUGH,4,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.BRANCH_ROAD_NAME,36,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.BUILDING,25,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.CITY,3,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.COUNTY,2,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.DESK,33,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.FLOOR,27,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.GROUP_OF_STREETS,6,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.HNO,19,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.HNS,20,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.LANGUAGE,0,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.LMK,21,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.LOC,22,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.NAM,23,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.NEIGHBORHOOD,5,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.PCN,30,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.PO_BOX,31,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.POD,17,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.POSTAL_CODE,24,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.PRD,16,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.PRIMARY_ROAD_NAME,34,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.ROAD_SECTION,35,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.ROOM,28,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.SCRIPT,128,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.STATE,1,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.STREET_NAME_POST_MODIFIER,39,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.STREET_NAME_PRE_MODIFIER,38,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.STS,18,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.SUBBRANCH_ROAD_NAME,37,,,, +I,29,android/net/wifi/rtt/CivicLocationKeys.TYPE_OF_PLACE,29,,,, E,28,android/net/wifi/rtt/RangingResult.STATUS_FAIL,1,Android.Net.Wifi.Rtt.RangingStatus,Fail,remove, E,28,android/net/wifi/rtt/RangingResult.STATUS_RESPONDER_DOES_NOT_SUPPORT_IEEE80211MC,2,Android.Net.Wifi.Rtt.RangingStatus,ResponderDoesNotSupportIeee80211mc,remove, E,28,android/net/wifi/rtt/RangingResult.STATUS_SUCCESS,0,Android.Net.Wifi.Rtt.RangingStatus,Success,remove, @@ -4796,7 +5240,7 @@ E,29,android/net/wifi/rtt/ResponderLocation.DATUM_NAD83_MLLW,3,Android.Net.Wifi. E,29,android/net/wifi/rtt/ResponderLocation.DATUM_NAD83_NAV88,2,Android.Net.Wifi.Rtt.DatumType,Nad83Nav88,remove, E,29,android/net/wifi/rtt/ResponderLocation.DATUM_UNDEFINED,0,Android.Net.Wifi.Rtt.DatumType,Undefined,remove, E,29,android/net/wifi/rtt/ResponderLocation.DATUM_WGS84,1,Android.Net.Wifi.Rtt.DatumType,Wgs84,remove, -?,29,android/net/wifi/rtt/ResponderLocation.LCI_VERSION_1,1,,,, +I,29,android/net/wifi/rtt/ResponderLocation.LCI_VERSION_1,1,,,, E,29,android/net/wifi/rtt/ResponderLocation.LOCATION_FIXED,0,Android.Net.Wifi.Rtt.LocationMode,Fixed,remove, E,29,android/net/wifi/rtt/ResponderLocation.LOCATION_MOVEMENT_UNKNOWN,2,Android.Net.Wifi.Rtt.LocationMode,MovementUnknown,remove, E,29,android/net/wifi/rtt/ResponderLocation.LOCATION_RESERVED,3,Android.Net.Wifi.Rtt.LocationMode,Reserved,remove, @@ -4806,7 +5250,14 @@ E,23,android/net/wifi/ScanResult.CHANNEL_WIDTH_20MHZ,0,Android.Net.Wifi.WifiChan E,23,android/net/wifi/ScanResult.CHANNEL_WIDTH_40MHZ,1,Android.Net.Wifi.WifiChannelWidth,Width40mhz,keep, E,23,android/net/wifi/ScanResult.CHANNEL_WIDTH_80MHZ,2,Android.Net.Wifi.WifiChannelWidth,Width80mhz,keep, E,23,android/net/wifi/ScanResult.CHANNEL_WIDTH_80MHZ_PLUS_MHZ,4,Android.Net.Wifi.WifiChannelWidth,Width80mhzPlusMhz,keep, +I,31,android/net/wifi/ScanResult.UNSPECIFIED,-1,,,, +A,31,,-1,Android.Net.Wifi.WifiBand,Unspecified,remove, +E,31,android/net/wifi/ScanResult.WIFI_BAND_24_GHZ,1,Android.Net.Wifi.WifiBand,Band24Ghz,remove, +E,31,android/net/wifi/ScanResult.WIFI_BAND_5_GHZ,2,Android.Net.Wifi.WifiBand,Band5Ghz,remove, +E,31,android/net/wifi/ScanResult.WIFI_BAND_6_GHZ,8,Android.Net.Wifi.WifiBand,Band6Ghz,remove, +E,31,android/net/wifi/ScanResult.WIFI_BAND_60_GHZ,16,Android.Net.Wifi.WifiBand,Band60Ghz,remove, E,30,android/net/wifi/ScanResult.WIFI_STANDARD_11AC,5,Android.Net.Wifi.WifiStandard,Wifi11ac,remove, +E,31,android/net/wifi/ScanResult.WIFI_STANDARD_11AD,7,Android.Net.Wifi.WifiStandard,Wifi11ad,remove, E,30,android/net/wifi/ScanResult.WIFI_STANDARD_11AX,6,Android.Net.Wifi.WifiStandard,Wifi11ax,remove, E,30,android/net/wifi/ScanResult.WIFI_STANDARD_11N,4,Android.Net.Wifi.WifiStandard,Wifi11n,remove, E,30,android/net/wifi/ScanResult.WIFI_STANDARD_LEGACY,1,Android.Net.Wifi.WifiStandard,Legacy,remove, @@ -4815,19 +5266,31 @@ E,30,android/net/wifi/SoftApConfiguration.SECURITY_TYPE_OPEN,0,Android.Net.Wifi. E,30,android/net/wifi/SoftApConfiguration.SECURITY_TYPE_WPA2_PSK,1,Android.Net.Wifi.SoftApConfigurationSecurityType,Wpa2Psk,remove, E,30,android/net/wifi/SoftApConfiguration.SECURITY_TYPE_WPA3_SAE,3,Android.Net.Wifi.SoftApConfigurationSecurityType,Wpa3Sae,remove, E,30,android/net/wifi/SoftApConfiguration.SECURITY_TYPE_WPA3_SAE_TRANSITION,2,Android.Net.Wifi.SoftApConfigurationSecurityType,Wpa3SaeTransition,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP,3,Android.Net.Wifi.WifiConfigurationSecurityType,Eap,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP_SUITE_B,5,Android.Net.Wifi.WifiConfigurationSecurityType,EapSuiteB,remove, +E,31,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP_WPA3_ENTERPRISE,9,Android.Net.Wifi.WifiConfigurationSecurityType,EapWpa3Enterprise,remove, +E,31,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP_WPA3_ENTERPRISE_192_BIT,5,Android.Net.Wifi.WifiConfigurationSecurityType,EapWpa3Enterprise192Bit,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_OPEN,0,Android.Net.Wifi.WifiConfigurationSecurityType,Open,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_OWE,6,Android.Net.Wifi.WifiConfigurationSecurityType,Owe,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_PSK,2,Android.Net.Wifi.WifiConfigurationSecurityType,Psk,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_SAE,4,Android.Net.Wifi.WifiConfigurationSecurityType,Sae,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WAPI_CERT,8,Android.Net.Wifi.WifiConfigurationSecurityType,WapiCert,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WAPI_PSK,7,Android.Net.Wifi.WifiConfigurationSecurityType,WapiPsk,remove, +E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WEP,1,Android.Net.Wifi.WifiConfigurationSecurityType,Wep,remove, E,10,android/net/wifi/WifiConfiguration$AuthAlgorithm.LEAP,2,Android.Net.Wifi.AuthAlgorithmType,Leap,remove, E,10,android/net/wifi/WifiConfiguration$AuthAlgorithm.OPEN,0,Android.Net.Wifi.AuthAlgorithmType,Open,remove, E,30,android/net/wifi/WifiConfiguration$AuthAlgorithm.SAE,3,Android.Net.Wifi.AuthAlgorithmType,Sae,remove, E,10,android/net/wifi/WifiConfiguration$AuthAlgorithm.SHARED,1,Android.Net.Wifi.AuthAlgorithmType,Shared,remove, E,10,android/net/wifi/WifiConfiguration$GroupCipher.CCMP,3,Android.Net.Wifi.GroupCipherType,Ccmp,remove, +E,31,android/net/wifi/WifiConfiguration$GroupCipher.GCMP_128,7,Android.Net.Wifi.GroupCipherType,Gcmp128,remove, E,29,android/net/wifi/WifiConfiguration$GroupCipher.GCMP_256,5,Android.Net.Wifi.GroupCipherType,Gcmp256,remove, E,30,android/net/wifi/WifiConfiguration$GroupCipher.SMS4,6,Android.Net.Wifi.GroupCipherType,Sms4,remove, E,10,android/net/wifi/WifiConfiguration$GroupCipher.TKIP,2,Android.Net.Wifi.GroupCipherType,Tkip,remove, E,10,android/net/wifi/WifiConfiguration$GroupCipher.WEP104,1,Android.Net.Wifi.GroupCipherType,Wep104,remove, E,10,android/net/wifi/WifiConfiguration$GroupCipher.WEP40,0,Android.Net.Wifi.GroupCipherType,Wep40,remove, -?,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_CMAC_256,0,,,, -?,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_GMAC_128,1,,,, -?,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_GMAC_256,2,,,, +I,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_CMAC_256,0,,,, +I,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_GMAC_128,1,,,, +I,29,android/net/wifi/WifiConfiguration$GroupMgmtCipher.BIP_GMAC_256,2,,,, E,10,android/net/wifi/WifiConfiguration$KeyMgmt.IEEE8021X,3,Android.Net.Wifi.KeyManagementType,Ieee8021x,remove, E,10,android/net/wifi/WifiConfiguration$KeyMgmt.NONE,0,Android.Net.Wifi.KeyManagementType,None,remove, E,29,android/net/wifi/WifiConfiguration$KeyMgmt.OWE,9,Android.Net.Wifi.KeyManagementType,Owe,remove, @@ -4836,6 +5299,7 @@ E,29,android/net/wifi/WifiConfiguration$KeyMgmt.SUITE_B_192,10,Android.Net.Wifi. E,10,android/net/wifi/WifiConfiguration$KeyMgmt.WPA_EAP,2,Android.Net.Wifi.KeyManagementType,WpaEap,remove, E,10,android/net/wifi/WifiConfiguration$KeyMgmt.WPA_PSK,1,Android.Net.Wifi.KeyManagementType,WpaPsk,remove, E,10,android/net/wifi/WifiConfiguration$PairwiseCipher.CCMP,2,Android.Net.Wifi.PairwiseCipherType,Ccmp,remove, +E,31,android/net/wifi/WifiConfiguration$PairwiseCipher.GCMP_128,5,Android.Net.Wifi.PairwiseCipherType,Gcmp128,remove, E,29,android/net/wifi/WifiConfiguration$PairwiseCipher.GCMP_256,3,Android.Net.Wifi.PairwiseCipherType,Gcmp256,remove, E,10,android/net/wifi/WifiConfiguration$PairwiseCipher.NONE,0,Android.Net.Wifi.PairwiseCipherType,None,remove, E,30,android/net/wifi/WifiConfiguration$PairwiseCipher.SMS4,4,Android.Net.Wifi.PairwiseCipherType,Sms4,remove, @@ -4846,15 +5310,6 @@ E,10,android/net/wifi/WifiConfiguration$Protocol.WPA,0,Android.Net.Wifi.Protocol E,10,android/net/wifi/WifiConfiguration$Status.CURRENT,0,Android.Net.Wifi.WifiStatus,Current,remove, E,10,android/net/wifi/WifiConfiguration$Status.DISABLED,1,Android.Net.Wifi.WifiStatus,Disabled,remove, E,10,android/net/wifi/WifiConfiguration$Status.ENABLED,2,Android.Net.Wifi.WifiStatus,Enabled,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP,3,Android.Net.Wifi.WifiConfigurationSecurityType,Eap,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_EAP_SUITE_B,5,Android.Net.Wifi.WifiConfigurationSecurityType,EapSuiteB,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_OPEN,0,Android.Net.Wifi.WifiConfigurationSecurityType,Open,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_OWE,6,Android.Net.Wifi.WifiConfigurationSecurityType,Owe,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_PSK,2,Android.Net.Wifi.WifiConfigurationSecurityType,Psk,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_SAE,4,Android.Net.Wifi.WifiConfigurationSecurityType,Sae,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WAPI_CERT,8,Android.Net.Wifi.WifiConfigurationSecurityType,WapiCert,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WAPI_PSK,7,Android.Net.Wifi.WifiConfigurationSecurityType,WapiPsk,remove, -E,30,android/net/wifi/WifiConfiguration.SECURITY_TYPE_WEP,1,Android.Net.Wifi.WifiConfigurationSecurityType,Wep,remove, E,21,android/net/wifi/WifiEnterpriseConfig$Eap.AKA,5,Android.Net.Wifi.WifiEapMethod,Aka,remove, E,23,android/net/wifi/WifiEnterpriseConfig$Eap.AKA_PRIME,6,Android.Net.Wifi.WifiEapMethod,AkaPrime,remove, E,18,android/net/wifi/WifiEnterpriseConfig$Eap.NONE,-1,Android.Net.Wifi.WifiEapMethod,None,remove, @@ -4873,12 +5328,22 @@ E,18,android/net/wifi/WifiEnterpriseConfig$Phase2.MSCHAPV2,3,Android.Net.Wifi.Wi E,18,android/net/wifi/WifiEnterpriseConfig$Phase2.NONE,0,Android.Net.Wifi.WifiPhase2Method,None,remove, E,18,android/net/wifi/WifiEnterpriseConfig$Phase2.PAP,1,Android.Net.Wifi.WifiPhase2Method,Pap,remove, E,26,android/net/wifi/WifiEnterpriseConfig$Phase2.SIM,5,Android.Net.Wifi.WifiPhase2Method,Sim,remove, -?,29,android/net/wifi/WifiInfo.LINK_SPEED_UNKNOWN,-1,,,, -E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_GENERIC,2,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,Generic,keep, -E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_INCOMPATIBLE_MODE,3,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,IncompatibleMode,keep, -E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_NO_CHANNEL,1,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,NoChannel,keep, -E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_TETHERING_DISALLOWED,4,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,TetheringDisallowed,keep, -?,0,android/net/wifi/WifiManager.ERROR_AUTHENTICATING,1,,,, +I,29,android/net/wifi/WifiInfo.LINK_SPEED_UNKNOWN,-1,,,, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_EAP,3,Android.Net.Wifi.WifiSecurityType,Eap,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_EAP_WPA3_ENTERPRISE,9,Android.Net.Wifi.WifiSecurityType,EapWpa3Enterprise,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_EAP_WPA3_ENTERPRISE_192_BIT,5,Android.Net.Wifi.WifiSecurityType,EapWpa3Enterprise192Bit,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_OPEN,0,Android.Net.Wifi.WifiSecurityType,Open,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_OSEN,10,Android.Net.Wifi.WifiSecurityType,Osen,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_OWE,6,Android.Net.Wifi.WifiSecurityType,Owe,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_PASSPOINT_R1_R2,11,Android.Net.Wifi.WifiSecurityType,PasspointR1R2,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_PASSPOINT_R3,12,Android.Net.Wifi.WifiSecurityType,PasspointR3,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_PSK,2,Android.Net.Wifi.WifiSecurityType,Psk,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_SAE,4,Android.Net.Wifi.WifiSecurityType,Sae,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_UNKNOWN,-1,Android.Net.Wifi.WifiSecurityType,Unknown,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_WAPI_CERT,8,Android.Net.Wifi.WifiSecurityType,WapiCert,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_WAPI_PSK,7,Android.Net.Wifi.WifiSecurityType,WapiPsk,remove, +E,31,android/net/wifi/WifiInfo.SECURITY_TYPE_WEP,1,Android.Net.Wifi.WifiSecurityType,Wep,remove, +I,0,android/net/wifi/WifiManager.ERROR_AUTHENTICATING,1,,,, E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE,3,Android.Net.Wifi.NetworkStatus,SuggestionsErrorAddDuplicate,remove, E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP,4,Android.Net.Wifi.NetworkStatus,SuggestionsErrorAddExceedsMaxPerApp,remove, E,30,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALID,7,Android.Net.Wifi.NetworkStatus,SuggestionsErrorAddInvalid,remove, @@ -4887,6 +5352,11 @@ E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWE E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL,1,Android.Net.Wifi.NetworkStatus,SuggestionsErrorInternal,remove, E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID,5,Android.Net.Wifi.NetworkStatus,SuggestionsErrorRemoveInvalid,remove, E,29,android/net/wifi/WifiManager.STATUS_NETWORK_SUGGESTIONS_SUCCESS,0,Android.Net.Wifi.NetworkStatus,SuggestionsSuccess,remove, +E,31,android/net/wifi/WifiManager.STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGE,4,Android.Net.Wifi.StatusSuggestionApproval,ApprovedByCarrierPrivilege,remove, +E,31,android/net/wifi/WifiManager.STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USER,2,Android.Net.Wifi.StatusSuggestionApproval,ApprovedByUser,remove, +E,31,android/net/wifi/WifiManager.STATUS_SUGGESTION_APPROVAL_PENDING,1,Android.Net.Wifi.StatusSuggestionApproval,Pending,remove, +E,31,android/net/wifi/WifiManager.STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USER,3,Android.Net.Wifi.StatusSuggestionApproval,RejectedByUser,remove, +E,31,android/net/wifi/WifiManager.STATUS_SUGGESTION_APPROVAL_UNKNOWN,0,Android.Net.Wifi.StatusSuggestionApproval,Unknown,remove, E,30,android/net/wifi/WifiManager.STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATION,1,Android.Net.Wifi.StatusSuggestionConnectionFailure,Association,remove, E,30,android/net/wifi/WifiManager.STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATION,2,Android.Net.Wifi.StatusSuggestionConnectionFailure,Authentication,remove, E,30,android/net/wifi/WifiManager.STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONING,3,Android.Net.Wifi.StatusSuggestionConnectionFailure,IpProvisioning,remove, @@ -4905,11 +5375,28 @@ E,21,android/net/wifi/WifiManager.WPS_OVERLAP_ERROR,3,Android.Net.Wifi.WpsFailur E,21,android/net/wifi/WifiManager.WPS_TIMED_OUT,7,Android.Net.Wifi.WpsFailureReason,TimedOut,keep, E,21,android/net/wifi/WifiManager.WPS_TKIP_ONLY_PROHIBITED,5,Android.Net.Wifi.WpsFailureReason,TkipOnlyProhibited,keep, E,21,android/net/wifi/WifiManager.WPS_WEP_PROHIBITED,4,Android.Net.Wifi.WpsFailureReason,WepProhibited,keep, -?,15,android/net/wifi/WpsInfo.DISPLAY,1,,,, -?,15,android/net/wifi/WpsInfo.INVALID,4,,,, -?,15,android/net/wifi/WpsInfo.KEYPAD,2,,,, -?,15,android/net/wifi/WpsInfo.LABEL,3,,,, -?,15,android/net/wifi/WpsInfo.PBC,0,,,, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_ADD_PASSPOINT_FAILURE,3,Android.Net.Wifi.AddNetworkResultStatus,AddPasspointFailure,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_ADD_WIFI_CONFIG_FAILURE,4,Android.Net.Wifi.AddNetworkResultStatus,AddWifiConfigFailure,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_FAILURE_UNKNOWN,1,Android.Net.Wifi.AddNetworkResultStatus,FailureUnknown,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_FAILURE_UPDATE_NETWORK_KEYS,9,Android.Net.Wifi.AddNetworkResultStatus,FailureUpdateNetworkKeys,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_INVALID_CONFIGURATION,5,Android.Net.Wifi.AddNetworkResultStatus,InvalidConfiguration,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_INVALID_CONFIGURATION_ENTERPRISE,10,Android.Net.Wifi.AddNetworkResultStatus,InvalidConfigurationEnterprise,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_NO_PERMISSION,2,Android.Net.Wifi.AddNetworkResultStatus,NoPermission,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_NO_PERMISSION_MODIFY_CONFIG,6,Android.Net.Wifi.AddNetworkResultStatus,NoPermissionModifyConfig,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_NO_PERMISSION_MODIFY_MAC_RANDOMIZATION,8,Android.Net.Wifi.AddNetworkResultStatus,NoPermissionModifyMacRandomization,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_NO_PERMISSION_MODIFY_PROXY_SETTING,7,Android.Net.Wifi.AddNetworkResultStatus,NoPermissionModifyProxySetting,remove, +E,31,android/net/wifi/WifiManager$AddNetworkResult.STATUS_SUCCESS,0,Android.Net.Wifi.AddNetworkResultStatus,Success,remove, +E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_GENERIC,2,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,Generic,keep, +E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_INCOMPATIBLE_MODE,3,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,IncompatibleMode,keep, +E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_NO_CHANNEL,1,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,NoChannel,keep, +E,26,android/net/wifi/WifiManager$LocalOnlyHotspotCallback.ERROR_TETHERING_DISALLOWED,4,Android.Net.Wifi.LocalOnlyHotspotCallbackErrorCode,TetheringDisallowed,keep, +E,31,android/net/wifi/WifiNetworkSuggestion.RANDOMIZATION_NON_PERSISTENT,1,Android.Net.Wifi.WifiNetworkSuggestionRandomization,NonPersistent,remove, +E,31,android/net/wifi/WifiNetworkSuggestion.RANDOMIZATION_PERSISTENT,0,Android.Net.Wifi.WifiNetworkSuggestionRandomization,Persistent,remove, +I,15,android/net/wifi/WpsInfo.DISPLAY,1,,,, +I,15,android/net/wifi/WpsInfo.INVALID,4,,,, +I,15,android/net/wifi/WpsInfo.KEYPAD,2,,,, +I,15,android/net/wifi/WpsInfo.LABEL,3,,,, +I,15,android/net/wifi/WpsInfo.PBC,0,,,, E,19,android/nfc/cardemulation/CardEmulation.SELECTION_MODE_ALWAYS_ASK,1,Android.Nfc.CardEmulators.CardSelectionMode,AlwaysAsk,remove, E,19,android/nfc/cardemulation/CardEmulation.SELECTION_MODE_ASK_IF_CONFLICT,2,Android.Nfc.CardEmulators.CardSelectionMode,AskIfConflict,remove, E,19,android/nfc/cardemulation/CardEmulation.SELECTION_MODE_PREFER_DEFAULT,0,Android.Nfc.CardEmulators.CardSelectionMode,PreferDefault,remove, @@ -4926,11 +5413,11 @@ E,19,android/nfc/NfcAdapter.FLAG_READER_SKIP_NDEF_CHECK,128,Android.Nfc.NfcReade E,30,android/nfc/NfcAdapter.PREFERRED_PAYMENT_CHANGED,2,Android.Nfc.PreferredPaymentAction,Changed,remove, E,30,android/nfc/NfcAdapter.PREFERRED_PAYMENT_LOADED,1,Android.Nfc.PreferredPaymentAction,Loaded,remove, E,30,android/nfc/NfcAdapter.PREFERRED_PAYMENT_UPDATED,3,Android.Nfc.PreferredPaymentAction,Updated,remove, -?,18,android/nfc/NfcAdapter.STATE_OFF,1,,,, -?,18,android/nfc/NfcAdapter.STATE_ON,3,,,, -?,18,android/nfc/NfcAdapter.STATE_TURNING_OFF,4,,,, -?,18,android/nfc/NfcAdapter.STATE_TURNING_ON,2,,,, -?,0,android/nfc/tech/MifareClassic.BLOCK_SIZE,16,,,, +I,18,android/nfc/NfcAdapter.STATE_OFF,1,,,, +I,18,android/nfc/NfcAdapter.STATE_ON,3,,,, +I,18,android/nfc/NfcAdapter.STATE_TURNING_OFF,4,,,, +I,18,android/nfc/NfcAdapter.STATE_TURNING_ON,2,,,, +I,0,android/nfc/tech/MifareClassic.BLOCK_SIZE,16,,,, E,10,android/nfc/tech/MifareClassic.SIZE_1K,1024,Android.Nfc.Tech.MifareClassicSize,Ize1k,remove, E,10,android/nfc/tech/MifareClassic.SIZE_2K,2048,Android.Nfc.Tech.MifareClassicSize,Ize2k,remove, E,10,android/nfc/tech/MifareClassic.SIZE_4K,4096,Android.Nfc.Tech.MifareClassicSize,Ize4k,remove, @@ -4939,1828 +5426,1828 @@ E,10,android/nfc/tech/MifareClassic.TYPE_CLASSIC,0,Android.Nfc.Tech.MifareClassi E,10,android/nfc/tech/MifareClassic.TYPE_PLUS,1,Android.Nfc.Tech.MifareClassicType,Plus,remove, E,10,android/nfc/tech/MifareClassic.TYPE_PRO,2,Android.Nfc.Tech.MifareClassicType,Pro,remove, E,10,android/nfc/tech/MifareClassic.TYPE_UNKNOWN,-1,Android.Nfc.Tech.MifareClassicType,Unknown,remove, -?,0,android/nfc/tech/MifareUltralight.PAGE_SIZE,4,,,, +I,0,android/nfc/tech/MifareUltralight.PAGE_SIZE,4,,,, E,10,android/nfc/tech/MifareUltralight.TYPE_ULTRALIGHT,1,Android.Nfc.Tech.MifareUltralightType,Ultralight,remove, E,10,android/nfc/tech/MifareUltralight.TYPE_ULTRALIGHT_C,2,Android.Nfc.Tech.MifareUltralightType,UltralightC,remove, E,10,android/nfc/tech/MifareUltralight.TYPE_UNKNOWN,-1,Android.Nfc.Tech.MifareUltralightType,Unknown,remove, E,17,android/nfc/tech/NfcBarcode.TYPE_KOVIO,1,Android.Nfc.Tech.NfcBarcodeType,Kovio,remove, E,17,android/nfc/tech/NfcBarcode.TYPE_UNKNOWN,-1,Android.Nfc.Tech.NfcBarcodeType,Unknown,remove, -?,17,android/opengl/EGL14.EGL_ALPHA_MASK_SIZE,12350,,,, -?,17,android/opengl/EGL14.EGL_ALPHA_SIZE,12321,,,, -?,17,android/opengl/EGL14.EGL_BACK_BUFFER,12420,,,, -?,17,android/opengl/EGL14.EGL_BAD_ACCESS,12290,,,, -?,17,android/opengl/EGL14.EGL_BAD_ALLOC,12291,,,, -?,17,android/opengl/EGL14.EGL_BAD_ATTRIBUTE,12292,,,, -?,17,android/opengl/EGL14.EGL_BAD_CONFIG,12293,,,, -?,17,android/opengl/EGL14.EGL_BAD_CONTEXT,12294,,,, -?,17,android/opengl/EGL14.EGL_BAD_CURRENT_SURFACE,12295,,,, -?,17,android/opengl/EGL14.EGL_BAD_DISPLAY,12296,,,, -?,17,android/opengl/EGL14.EGL_BAD_MATCH,12297,,,, -?,17,android/opengl/EGL14.EGL_BAD_NATIVE_PIXMAP,12298,,,, -?,17,android/opengl/EGL14.EGL_BAD_NATIVE_WINDOW,12299,,,, -?,17,android/opengl/EGL14.EGL_BAD_PARAMETER,12300,,,, -?,17,android/opengl/EGL14.EGL_BAD_SURFACE,12301,,,, -?,17,android/opengl/EGL14.EGL_BIND_TO_TEXTURE_RGB,12345,,,, -?,17,android/opengl/EGL14.EGL_BIND_TO_TEXTURE_RGBA,12346,,,, -?,17,android/opengl/EGL14.EGL_BLUE_SIZE,12322,,,, -?,17,android/opengl/EGL14.EGL_BUFFER_DESTROYED,12437,,,, -?,17,android/opengl/EGL14.EGL_BUFFER_PRESERVED,12436,,,, -?,17,android/opengl/EGL14.EGL_BUFFER_SIZE,12320,,,, -?,17,android/opengl/EGL14.EGL_CLIENT_APIS,12429,,,, -?,17,android/opengl/EGL14.EGL_COLOR_BUFFER_TYPE,12351,,,, -?,17,android/opengl/EGL14.EGL_CONFIG_CAVEAT,12327,,,, -?,17,android/opengl/EGL14.EGL_CONFIG_ID,12328,,,, -?,17,android/opengl/EGL14.EGL_CONFORMANT,12354,,,, -?,17,android/opengl/EGL14.EGL_CONTEXT_CLIENT_TYPE,12439,,,, -?,17,android/opengl/EGL14.EGL_CONTEXT_CLIENT_VERSION,12440,,,, -?,17,android/opengl/EGL14.EGL_CONTEXT_LOST,12302,,,, -?,17,android/opengl/EGL14.EGL_CORE_NATIVE_ENGINE,12379,,,, -?,17,android/opengl/EGL14.EGL_DEFAULT_DISPLAY,0,,,, -?,17,android/opengl/EGL14.EGL_DEPTH_SIZE,12325,,,, -?,17,android/opengl/EGL14.EGL_DISPLAY_SCALING,10000,,,, -?,17,android/opengl/EGL14.EGL_DRAW,12377,,,, -?,17,android/opengl/EGL14.EGL_EXTENSIONS,12373,,,, -?,17,android/opengl/EGL14.EGL_FALSE,0,,,, -?,17,android/opengl/EGL14.EGL_GREEN_SIZE,12323,,,, -?,17,android/opengl/EGL14.EGL_HEIGHT,12374,,,, -?,17,android/opengl/EGL14.EGL_HORIZONTAL_RESOLUTION,12432,,,, -?,17,android/opengl/EGL14.EGL_LARGEST_PBUFFER,12376,,,, -?,17,android/opengl/EGL14.EGL_LEVEL,12329,,,, -?,17,android/opengl/EGL14.EGL_LUMINANCE_BUFFER,12431,,,, -?,17,android/opengl/EGL14.EGL_LUMINANCE_SIZE,12349,,,, -?,17,android/opengl/EGL14.EGL_MATCH_NATIVE_PIXMAP,12353,,,, -?,17,android/opengl/EGL14.EGL_MAX_PBUFFER_HEIGHT,12330,,,, -?,17,android/opengl/EGL14.EGL_MAX_PBUFFER_PIXELS,12331,,,, -?,17,android/opengl/EGL14.EGL_MAX_PBUFFER_WIDTH,12332,,,, -?,17,android/opengl/EGL14.EGL_MAX_SWAP_INTERVAL,12348,,,, -?,17,android/opengl/EGL14.EGL_MIN_SWAP_INTERVAL,12347,,,, -?,17,android/opengl/EGL14.EGL_MIPMAP_LEVEL,12419,,,, -?,17,android/opengl/EGL14.EGL_MIPMAP_TEXTURE,12418,,,, -?,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE,12441,,,, -?,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_BOX,12443,,,, -?,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_BOX_BIT,512,,,, -?,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_DEFAULT,12442,,,, -?,17,android/opengl/EGL14.EGL_NATIVE_RENDERABLE,12333,,,, -?,17,android/opengl/EGL14.EGL_NATIVE_VISUAL_ID,12334,,,, -?,17,android/opengl/EGL14.EGL_NATIVE_VISUAL_TYPE,12335,,,, -?,17,android/opengl/EGL14.EGL_NO_TEXTURE,12380,,,, -?,17,android/opengl/EGL14.EGL_NON_CONFORMANT_CONFIG,12369,,,, -?,17,android/opengl/EGL14.EGL_NONE,12344,,,, -?,17,android/opengl/EGL14.EGL_NOT_INITIALIZED,12289,,,, -?,17,android/opengl/EGL14.EGL_OPENGL_API,12450,,,, -?,17,android/opengl/EGL14.EGL_OPENGL_BIT,8,,,, -?,17,android/opengl/EGL14.EGL_OPENGL_ES_API,12448,,,, -?,17,android/opengl/EGL14.EGL_OPENGL_ES_BIT,1,,,, -?,17,android/opengl/EGL14.EGL_OPENGL_ES2_BIT,4,,,, -?,17,android/opengl/EGL14.EGL_OPENVG_API,12449,,,, -?,17,android/opengl/EGL14.EGL_OPENVG_BIT,2,,,, -?,17,android/opengl/EGL14.EGL_OPENVG_IMAGE,12438,,,, -?,17,android/opengl/EGL14.EGL_PBUFFER_BIT,1,,,, -?,17,android/opengl/EGL14.EGL_PIXEL_ASPECT_RATIO,12434,,,, -?,17,android/opengl/EGL14.EGL_PIXMAP_BIT,2,,,, -?,17,android/opengl/EGL14.EGL_READ,12378,,,, -?,17,android/opengl/EGL14.EGL_RED_SIZE,12324,,,, -?,17,android/opengl/EGL14.EGL_RENDER_BUFFER,12422,,,, -?,17,android/opengl/EGL14.EGL_RENDERABLE_TYPE,12352,,,, -?,17,android/opengl/EGL14.EGL_RGB_BUFFER,12430,,,, -?,17,android/opengl/EGL14.EGL_SAMPLE_BUFFERS,12338,,,, -?,17,android/opengl/EGL14.EGL_SAMPLES,12337,,,, -?,17,android/opengl/EGL14.EGL_SINGLE_BUFFER,12421,,,, -?,17,android/opengl/EGL14.EGL_SLOW_CONFIG,12368,,,, -?,17,android/opengl/EGL14.EGL_STENCIL_SIZE,12326,,,, -?,17,android/opengl/EGL14.EGL_SUCCESS,12288,,,, -?,17,android/opengl/EGL14.EGL_SURFACE_TYPE,12339,,,, -?,17,android/opengl/EGL14.EGL_SWAP_BEHAVIOR,12435,,,, -?,17,android/opengl/EGL14.EGL_SWAP_BEHAVIOR_PRESERVED_BIT,1024,,,, -?,17,android/opengl/EGL14.EGL_TEXTURE_2D,12383,,,, -?,17,android/opengl/EGL14.EGL_TEXTURE_FORMAT,12416,,,, -?,17,android/opengl/EGL14.EGL_TEXTURE_RGB,12381,,,, -?,17,android/opengl/EGL14.EGL_TEXTURE_RGBA,12382,,,, -?,17,android/opengl/EGL14.EGL_TEXTURE_TARGET,12417,,,, -?,17,android/opengl/EGL14.EGL_TRANSPARENT_BLUE_VALUE,12341,,,, -?,17,android/opengl/EGL14.EGL_TRANSPARENT_GREEN_VALUE,12342,,,, -?,17,android/opengl/EGL14.EGL_TRANSPARENT_RED_VALUE,12343,,,, -?,17,android/opengl/EGL14.EGL_TRANSPARENT_RGB,12370,,,, -?,17,android/opengl/EGL14.EGL_TRANSPARENT_TYPE,12340,,,, -?,17,android/opengl/EGL14.EGL_TRUE,1,,,, -?,17,android/opengl/EGL14.EGL_VENDOR,12371,,,, -?,17,android/opengl/EGL14.EGL_VERSION,12372,,,, -?,17,android/opengl/EGL14.EGL_VERTICAL_RESOLUTION,12433,,,, -?,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT,12424,,,, -?,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_NONPRE,12427,,,, -?,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_PRE,12428,,,, -?,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_PRE_BIT,64,,,, -?,17,android/opengl/EGL14.EGL_VG_COLORSPACE,12423,,,, -?,17,android/opengl/EGL14.EGL_VG_COLORSPACE_LINEAR,12426,,,, -?,17,android/opengl/EGL14.EGL_VG_COLORSPACE_LINEAR_BIT,32,,,, -?,17,android/opengl/EGL14.EGL_VG_COLORSPACE_sRGB,12425,,,, -?,17,android/opengl/EGL14.EGL_WIDTH,12375,,,, -?,17,android/opengl/EGL14.EGL_WINDOW_BIT,4,,,, -?,29,android/opengl/EGL15.EGL_CL_EVENT_HANDLE,12444,,,, -?,29,android/opengl/EGL15.EGL_CONDITION_SATISFIED,12534,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_MAJOR_VERSION,12440,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_MINOR_VERSION,12539,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT,2,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT,1,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_DEBUG,12720,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE,12721,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_PROFILE_MASK,12541,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY,12733,,,, -?,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_ROBUST_ACCESS,12722,,,, -?,29,android/opengl/EGL15.EGL_GL_COLORSPACE,12445,,,, -?,29,android/opengl/EGL15.EGL_GL_COLORSPACE_LINEAR,12426,,,, -?,29,android/opengl/EGL15.EGL_GL_COLORSPACE_SRGB,12425,,,, -?,29,android/opengl/EGL15.EGL_GL_RENDERBUFFER,12473,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_2D,12465,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_3D,12466,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X,12468,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,12470,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,12472,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X,12467,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y,12469,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z,12471,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_LEVEL,12476,,,, -?,29,android/opengl/EGL15.EGL_GL_TEXTURE_ZOFFSET,12477,,,, -?,29,android/opengl/EGL15.EGL_IMAGE_PRESERVED,12498,,,, -?,29,android/opengl/EGL15.EGL_LOSE_CONTEXT_ON_RESET,12735,,,, -?,29,android/opengl/EGL15.EGL_NO_RESET_NOTIFICATION,12734,,,, -?,29,android/opengl/EGL15.EGL_OPENGL_ES3_BIT,64,,,, -?,29,android/opengl/EGL15.EGL_PLATFORM_ANDROID_KHR,12609,,,, -?,29,android/opengl/EGL15.EGL_SIGNALED,12530,,,, -?,29,android/opengl/EGL15.EGL_SYNC_CL_EVENT,12542,,,, -?,29,android/opengl/EGL15.EGL_SYNC_CL_EVENT_COMPLETE,12543,,,, -?,29,android/opengl/EGL15.EGL_SYNC_CONDITION,12536,,,, -?,29,android/opengl/EGL15.EGL_SYNC_FENCE,12537,,,, -?,29,android/opengl/EGL15.EGL_SYNC_FLUSH_COMMANDS_BIT,1,,,, -?,29,android/opengl/EGL15.EGL_SYNC_PRIOR_COMMANDS_COMPLETE,12528,,,, -?,29,android/opengl/EGL15.EGL_SYNC_STATUS,12529,,,, -?,29,android/opengl/EGL15.EGL_SYNC_TYPE,12535,,,, -?,29,android/opengl/EGL15.EGL_TIMEOUT_EXPIRED,12533,,,, -?,29,android/opengl/EGL15.EGL_UNSIGNALED,12531,,,, -?,18,android/opengl/EGLExt.EGL_CONTEXT_FLAGS_KHR,12540,,,, -?,18,android/opengl/EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR,12440,,,, -?,18,android/opengl/EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR,12539,,,, -?,18,android/opengl/EGLExt.EGL_OPENGL_ES3_BIT_KHR,64,,,, -?,26,android/opengl/EGLExt.EGL_RECORDABLE_ANDROID,12610,,,, -?,0,android/opengl/ETC1.DECODED_BLOCK_SIZE,48,,,, -?,0,android/opengl/ETC1.ENCODED_BLOCK_SIZE,8,,,, -?,0,android/opengl/ETC1.ETC_PKM_HEADER_SIZE,16,,,, -?,0,android/opengl/ETC1.ETC1_RGB8_OES,36196,,,, +I,17,android/opengl/EGL14.EGL_ALPHA_MASK_SIZE,12350,,,, +I,17,android/opengl/EGL14.EGL_ALPHA_SIZE,12321,,,, +I,17,android/opengl/EGL14.EGL_BACK_BUFFER,12420,,,, +I,17,android/opengl/EGL14.EGL_BAD_ACCESS,12290,,,, +I,17,android/opengl/EGL14.EGL_BAD_ALLOC,12291,,,, +I,17,android/opengl/EGL14.EGL_BAD_ATTRIBUTE,12292,,,, +I,17,android/opengl/EGL14.EGL_BAD_CONFIG,12293,,,, +I,17,android/opengl/EGL14.EGL_BAD_CONTEXT,12294,,,, +I,17,android/opengl/EGL14.EGL_BAD_CURRENT_SURFACE,12295,,,, +I,17,android/opengl/EGL14.EGL_BAD_DISPLAY,12296,,,, +I,17,android/opengl/EGL14.EGL_BAD_MATCH,12297,,,, +I,17,android/opengl/EGL14.EGL_BAD_NATIVE_PIXMAP,12298,,,, +I,17,android/opengl/EGL14.EGL_BAD_NATIVE_WINDOW,12299,,,, +I,17,android/opengl/EGL14.EGL_BAD_PARAMETER,12300,,,, +I,17,android/opengl/EGL14.EGL_BAD_SURFACE,12301,,,, +I,17,android/opengl/EGL14.EGL_BIND_TO_TEXTURE_RGB,12345,,,, +I,17,android/opengl/EGL14.EGL_BIND_TO_TEXTURE_RGBA,12346,,,, +I,17,android/opengl/EGL14.EGL_BLUE_SIZE,12322,,,, +I,17,android/opengl/EGL14.EGL_BUFFER_DESTROYED,12437,,,, +I,17,android/opengl/EGL14.EGL_BUFFER_PRESERVED,12436,,,, +I,17,android/opengl/EGL14.EGL_BUFFER_SIZE,12320,,,, +I,17,android/opengl/EGL14.EGL_CLIENT_APIS,12429,,,, +I,17,android/opengl/EGL14.EGL_COLOR_BUFFER_TYPE,12351,,,, +I,17,android/opengl/EGL14.EGL_CONFIG_CAVEAT,12327,,,, +I,17,android/opengl/EGL14.EGL_CONFIG_ID,12328,,,, +I,17,android/opengl/EGL14.EGL_CONFORMANT,12354,,,, +I,17,android/opengl/EGL14.EGL_CONTEXT_CLIENT_TYPE,12439,,,, +I,17,android/opengl/EGL14.EGL_CONTEXT_CLIENT_VERSION,12440,,,, +I,17,android/opengl/EGL14.EGL_CONTEXT_LOST,12302,,,, +I,17,android/opengl/EGL14.EGL_CORE_NATIVE_ENGINE,12379,,,, +I,17,android/opengl/EGL14.EGL_DEFAULT_DISPLAY,0,,,, +I,17,android/opengl/EGL14.EGL_DEPTH_SIZE,12325,,,, +I,17,android/opengl/EGL14.EGL_DISPLAY_SCALING,10000,,,, +I,17,android/opengl/EGL14.EGL_DRAW,12377,,,, +I,17,android/opengl/EGL14.EGL_EXTENSIONS,12373,,,, +I,17,android/opengl/EGL14.EGL_FALSE,0,,,, +I,17,android/opengl/EGL14.EGL_GREEN_SIZE,12323,,,, +I,17,android/opengl/EGL14.EGL_HEIGHT,12374,,,, +I,17,android/opengl/EGL14.EGL_HORIZONTAL_RESOLUTION,12432,,,, +I,17,android/opengl/EGL14.EGL_LARGEST_PBUFFER,12376,,,, +I,17,android/opengl/EGL14.EGL_LEVEL,12329,,,, +I,17,android/opengl/EGL14.EGL_LUMINANCE_BUFFER,12431,,,, +I,17,android/opengl/EGL14.EGL_LUMINANCE_SIZE,12349,,,, +I,17,android/opengl/EGL14.EGL_MATCH_NATIVE_PIXMAP,12353,,,, +I,17,android/opengl/EGL14.EGL_MAX_PBUFFER_HEIGHT,12330,,,, +I,17,android/opengl/EGL14.EGL_MAX_PBUFFER_PIXELS,12331,,,, +I,17,android/opengl/EGL14.EGL_MAX_PBUFFER_WIDTH,12332,,,, +I,17,android/opengl/EGL14.EGL_MAX_SWAP_INTERVAL,12348,,,, +I,17,android/opengl/EGL14.EGL_MIN_SWAP_INTERVAL,12347,,,, +I,17,android/opengl/EGL14.EGL_MIPMAP_LEVEL,12419,,,, +I,17,android/opengl/EGL14.EGL_MIPMAP_TEXTURE,12418,,,, +I,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE,12441,,,, +I,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_BOX,12443,,,, +I,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_BOX_BIT,512,,,, +I,17,android/opengl/EGL14.EGL_MULTISAMPLE_RESOLVE_DEFAULT,12442,,,, +I,17,android/opengl/EGL14.EGL_NATIVE_RENDERABLE,12333,,,, +I,17,android/opengl/EGL14.EGL_NATIVE_VISUAL_ID,12334,,,, +I,17,android/opengl/EGL14.EGL_NATIVE_VISUAL_TYPE,12335,,,, +I,17,android/opengl/EGL14.EGL_NO_TEXTURE,12380,,,, +I,17,android/opengl/EGL14.EGL_NON_CONFORMANT_CONFIG,12369,,,, +I,17,android/opengl/EGL14.EGL_NONE,12344,,,, +I,17,android/opengl/EGL14.EGL_NOT_INITIALIZED,12289,,,, +I,17,android/opengl/EGL14.EGL_OPENGL_API,12450,,,, +I,17,android/opengl/EGL14.EGL_OPENGL_BIT,8,,,, +I,17,android/opengl/EGL14.EGL_OPENGL_ES_API,12448,,,, +I,17,android/opengl/EGL14.EGL_OPENGL_ES_BIT,1,,,, +I,17,android/opengl/EGL14.EGL_OPENGL_ES2_BIT,4,,,, +I,17,android/opengl/EGL14.EGL_OPENVG_API,12449,,,, +I,17,android/opengl/EGL14.EGL_OPENVG_BIT,2,,,, +I,17,android/opengl/EGL14.EGL_OPENVG_IMAGE,12438,,,, +I,17,android/opengl/EGL14.EGL_PBUFFER_BIT,1,,,, +I,17,android/opengl/EGL14.EGL_PIXEL_ASPECT_RATIO,12434,,,, +I,17,android/opengl/EGL14.EGL_PIXMAP_BIT,2,,,, +I,17,android/opengl/EGL14.EGL_READ,12378,,,, +I,17,android/opengl/EGL14.EGL_RED_SIZE,12324,,,, +I,17,android/opengl/EGL14.EGL_RENDER_BUFFER,12422,,,, +I,17,android/opengl/EGL14.EGL_RENDERABLE_TYPE,12352,,,, +I,17,android/opengl/EGL14.EGL_RGB_BUFFER,12430,,,, +I,17,android/opengl/EGL14.EGL_SAMPLE_BUFFERS,12338,,,, +I,17,android/opengl/EGL14.EGL_SAMPLES,12337,,,, +I,17,android/opengl/EGL14.EGL_SINGLE_BUFFER,12421,,,, +I,17,android/opengl/EGL14.EGL_SLOW_CONFIG,12368,,,, +I,17,android/opengl/EGL14.EGL_STENCIL_SIZE,12326,,,, +I,17,android/opengl/EGL14.EGL_SUCCESS,12288,,,, +I,17,android/opengl/EGL14.EGL_SURFACE_TYPE,12339,,,, +I,17,android/opengl/EGL14.EGL_SWAP_BEHAVIOR,12435,,,, +I,17,android/opengl/EGL14.EGL_SWAP_BEHAVIOR_PRESERVED_BIT,1024,,,, +I,17,android/opengl/EGL14.EGL_TEXTURE_2D,12383,,,, +I,17,android/opengl/EGL14.EGL_TEXTURE_FORMAT,12416,,,, +I,17,android/opengl/EGL14.EGL_TEXTURE_RGB,12381,,,, +I,17,android/opengl/EGL14.EGL_TEXTURE_RGBA,12382,,,, +I,17,android/opengl/EGL14.EGL_TEXTURE_TARGET,12417,,,, +I,17,android/opengl/EGL14.EGL_TRANSPARENT_BLUE_VALUE,12341,,,, +I,17,android/opengl/EGL14.EGL_TRANSPARENT_GREEN_VALUE,12342,,,, +I,17,android/opengl/EGL14.EGL_TRANSPARENT_RED_VALUE,12343,,,, +I,17,android/opengl/EGL14.EGL_TRANSPARENT_RGB,12370,,,, +I,17,android/opengl/EGL14.EGL_TRANSPARENT_TYPE,12340,,,, +I,17,android/opengl/EGL14.EGL_TRUE,1,,,, +I,17,android/opengl/EGL14.EGL_VENDOR,12371,,,, +I,17,android/opengl/EGL14.EGL_VERSION,12372,,,, +I,17,android/opengl/EGL14.EGL_VERTICAL_RESOLUTION,12433,,,, +I,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT,12424,,,, +I,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_NONPRE,12427,,,, +I,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_PRE,12428,,,, +I,17,android/opengl/EGL14.EGL_VG_ALPHA_FORMAT_PRE_BIT,64,,,, +I,17,android/opengl/EGL14.EGL_VG_COLORSPACE,12423,,,, +I,17,android/opengl/EGL14.EGL_VG_COLORSPACE_LINEAR,12426,,,, +I,17,android/opengl/EGL14.EGL_VG_COLORSPACE_LINEAR_BIT,32,,,, +I,17,android/opengl/EGL14.EGL_VG_COLORSPACE_sRGB,12425,,,, +I,17,android/opengl/EGL14.EGL_WIDTH,12375,,,, +I,17,android/opengl/EGL14.EGL_WINDOW_BIT,4,,,, +I,29,android/opengl/EGL15.EGL_CL_EVENT_HANDLE,12444,,,, +I,29,android/opengl/EGL15.EGL_CONDITION_SATISFIED,12534,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_MAJOR_VERSION,12440,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_MINOR_VERSION,12539,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT,2,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT,1,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_DEBUG,12720,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE,12721,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_PROFILE_MASK,12541,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY,12733,,,, +I,29,android/opengl/EGL15.EGL_CONTEXT_OPENGL_ROBUST_ACCESS,12722,,,, +I,29,android/opengl/EGL15.EGL_GL_COLORSPACE,12445,,,, +I,29,android/opengl/EGL15.EGL_GL_COLORSPACE_LINEAR,12426,,,, +I,29,android/opengl/EGL15.EGL_GL_COLORSPACE_SRGB,12425,,,, +I,29,android/opengl/EGL15.EGL_GL_RENDERBUFFER,12473,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_2D,12465,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_3D,12466,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X,12468,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,12470,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,12472,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X,12467,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y,12469,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z,12471,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_LEVEL,12476,,,, +I,29,android/opengl/EGL15.EGL_GL_TEXTURE_ZOFFSET,12477,,,, +I,29,android/opengl/EGL15.EGL_IMAGE_PRESERVED,12498,,,, +I,29,android/opengl/EGL15.EGL_LOSE_CONTEXT_ON_RESET,12735,,,, +I,29,android/opengl/EGL15.EGL_NO_RESET_NOTIFICATION,12734,,,, +I,29,android/opengl/EGL15.EGL_OPENGL_ES3_BIT,64,,,, +I,29,android/opengl/EGL15.EGL_PLATFORM_ANDROID_KHR,12609,,,, +I,29,android/opengl/EGL15.EGL_SIGNALED,12530,,,, +I,29,android/opengl/EGL15.EGL_SYNC_CL_EVENT,12542,,,, +I,29,android/opengl/EGL15.EGL_SYNC_CL_EVENT_COMPLETE,12543,,,, +I,29,android/opengl/EGL15.EGL_SYNC_CONDITION,12536,,,, +I,29,android/opengl/EGL15.EGL_SYNC_FENCE,12537,,,, +I,29,android/opengl/EGL15.EGL_SYNC_FLUSH_COMMANDS_BIT,1,,,, +I,29,android/opengl/EGL15.EGL_SYNC_PRIOR_COMMANDS_COMPLETE,12528,,,, +I,29,android/opengl/EGL15.EGL_SYNC_STATUS,12529,,,, +I,29,android/opengl/EGL15.EGL_SYNC_TYPE,12535,,,, +I,29,android/opengl/EGL15.EGL_TIMEOUT_EXPIRED,12533,,,, +I,29,android/opengl/EGL15.EGL_UNSIGNALED,12531,,,, +I,18,android/opengl/EGLExt.EGL_CONTEXT_FLAGS_KHR,12540,,,, +I,18,android/opengl/EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR,12440,,,, +I,18,android/opengl/EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR,12539,,,, +I,18,android/opengl/EGLExt.EGL_OPENGL_ES3_BIT_KHR,64,,,, +I,26,android/opengl/EGLExt.EGL_RECORDABLE_ANDROID,12610,,,, +I,0,android/opengl/ETC1.DECODED_BLOCK_SIZE,48,,,, +I,0,android/opengl/ETC1.ENCODED_BLOCK_SIZE,8,,,, +I,0,android/opengl/ETC1.ETC_PKM_HEADER_SIZE,16,,,, +I,0,android/opengl/ETC1.ETC1_RGB8_OES,36196,,,, E,10,android/opengl/GLDebugHelper.CONFIG_CHECK_GL_ERROR,1,Android.Opengl.GLDebugConfig,CheckGlError,remove, E,10,android/opengl/GLDebugHelper.CONFIG_CHECK_THREAD,2,Android.Opengl.GLDebugConfig,CheckThread,remove, E,10,android/opengl/GLDebugHelper.CONFIG_LOG_ARGUMENT_NAMES,4,Android.Opengl.GLDebugConfig,LogArgumentNames,remove, -?,0,android/opengl/GLDebugHelper.ERROR_WRONG_THREAD,28672,,,, -?,0,android/opengl/GLES10.GL_ADD,260,,,, -?,0,android/opengl/GLES10.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, -?,0,android/opengl/GLES10.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, -?,0,android/opengl/GLES10.GL_ALPHA,6406,,,, -?,0,android/opengl/GLES10.GL_ALPHA_BITS,3413,,,, -?,0,android/opengl/GLES10.GL_ALPHA_TEST,3008,,,, -?,0,android/opengl/GLES10.GL_ALWAYS,519,,,, -?,0,android/opengl/GLES10.GL_AMBIENT,4608,,,, -?,0,android/opengl/GLES10.GL_AMBIENT_AND_DIFFUSE,5634,,,, -?,0,android/opengl/GLES10.GL_AND,5377,,,, -?,0,android/opengl/GLES10.GL_AND_INVERTED,5380,,,, -?,0,android/opengl/GLES10.GL_AND_REVERSE,5378,,,, -?,0,android/opengl/GLES10.GL_BACK,1029,,,, -?,0,android/opengl/GLES10.GL_BLEND,3042,,,, -?,0,android/opengl/GLES10.GL_BLUE_BITS,3412,,,, -?,0,android/opengl/GLES10.GL_BYTE,5120,,,, -?,0,android/opengl/GLES10.GL_CCW,2305,,,, -?,0,android/opengl/GLES10.GL_CLAMP_TO_EDGE,33071,,,, -?,0,android/opengl/GLES10.GL_CLEAR,5376,,,, -?,0,android/opengl/GLES10.GL_COLOR_ARRAY,32886,,,, -?,0,android/opengl/GLES10.GL_COLOR_BUFFER_BIT,16384,,,, -?,0,android/opengl/GLES10.GL_COLOR_LOGIC_OP,3058,,,, -?,0,android/opengl/GLES10.GL_COLOR_MATERIAL,2903,,,, -?,0,android/opengl/GLES10.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, -?,0,android/opengl/GLES10.GL_CONSTANT_ATTENUATION,4615,,,, -?,0,android/opengl/GLES10.GL_COPY,5379,,,, -?,0,android/opengl/GLES10.GL_COPY_INVERTED,5388,,,, -?,0,android/opengl/GLES10.GL_CULL_FACE,2884,,,, -?,0,android/opengl/GLES10.GL_CW,2304,,,, -?,0,android/opengl/GLES10.GL_DECAL,8449,,,, -?,0,android/opengl/GLES10.GL_DECR,7683,,,, -?,0,android/opengl/GLES10.GL_DEPTH_BITS,3414,,,, -?,0,android/opengl/GLES10.GL_DEPTH_BUFFER_BIT,256,,,, -?,0,android/opengl/GLES10.GL_DEPTH_TEST,2929,,,, -?,0,android/opengl/GLES10.GL_DIFFUSE,4609,,,, -?,0,android/opengl/GLES10.GL_DITHER,3024,,,, -?,0,android/opengl/GLES10.GL_DONT_CARE,4352,,,, -?,0,android/opengl/GLES10.GL_DST_ALPHA,772,,,, -?,0,android/opengl/GLES10.GL_DST_COLOR,774,,,, -?,0,android/opengl/GLES10.GL_EMISSION,5632,,,, -?,0,android/opengl/GLES10.GL_EQUAL,514,,,, -?,0,android/opengl/GLES10.GL_EQUIV,5385,,,, -?,0,android/opengl/GLES10.GL_EXP,2048,,,, -?,0,android/opengl/GLES10.GL_EXP2,2049,,,, -?,0,android/opengl/GLES10.GL_EXTENSIONS,7939,,,, -?,0,android/opengl/GLES10.GL_FALSE,0,,,, -?,0,android/opengl/GLES10.GL_FASTEST,4353,,,, -?,0,android/opengl/GLES10.GL_FIXED,5132,,,, -?,0,android/opengl/GLES10.GL_FLAT,7424,,,, -?,0,android/opengl/GLES10.GL_FLOAT,5126,,,, -?,0,android/opengl/GLES10.GL_FOG,2912,,,, -?,0,android/opengl/GLES10.GL_FOG_COLOR,2918,,,, -?,0,android/opengl/GLES10.GL_FOG_DENSITY,2914,,,, -?,0,android/opengl/GLES10.GL_FOG_END,2916,,,, -?,0,android/opengl/GLES10.GL_FOG_HINT,3156,,,, -?,0,android/opengl/GLES10.GL_FOG_MODE,2917,,,, -?,0,android/opengl/GLES10.GL_FOG_START,2915,,,, -?,0,android/opengl/GLES10.GL_FRONT,1028,,,, -?,0,android/opengl/GLES10.GL_FRONT_AND_BACK,1032,,,, -?,0,android/opengl/GLES10.GL_GEQUAL,518,,,, -?,0,android/opengl/GLES10.GL_GREATER,516,,,, -?,0,android/opengl/GLES10.GL_GREEN_BITS,3411,,,, -?,0,android/opengl/GLES10.GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES,35739,,,, -?,0,android/opengl/GLES10.GL_IMPLEMENTATION_COLOR_READ_TYPE_OES,35738,,,, -?,0,android/opengl/GLES10.GL_INCR,7682,,,, -?,0,android/opengl/GLES10.GL_INVALID_ENUM,1280,,,, -?,0,android/opengl/GLES10.GL_INVALID_OPERATION,1282,,,, -?,0,android/opengl/GLES10.GL_INVALID_VALUE,1281,,,, -?,0,android/opengl/GLES10.GL_INVERT,5386,,,, -?,0,android/opengl/GLES10.GL_KEEP,7680,,,, -?,0,android/opengl/GLES10.GL_LEQUAL,515,,,, -?,0,android/opengl/GLES10.GL_LESS,513,,,, -?,0,android/opengl/GLES10.GL_LIGHT_MODEL_AMBIENT,2899,,,, -?,0,android/opengl/GLES10.GL_LIGHT_MODEL_TWO_SIDE,2898,,,, -?,0,android/opengl/GLES10.GL_LIGHT0,16384,,,, -?,0,android/opengl/GLES10.GL_LIGHT1,16385,,,, -?,0,android/opengl/GLES10.GL_LIGHT2,16386,,,, -?,0,android/opengl/GLES10.GL_LIGHT3,16387,,,, -?,0,android/opengl/GLES10.GL_LIGHT4,16388,,,, -?,0,android/opengl/GLES10.GL_LIGHT5,16389,,,, -?,0,android/opengl/GLES10.GL_LIGHT6,16390,,,, -?,0,android/opengl/GLES10.GL_LIGHT7,16391,,,, -?,0,android/opengl/GLES10.GL_LIGHTING,2896,,,, -?,0,android/opengl/GLES10.GL_LINE_LOOP,2,,,, -?,0,android/opengl/GLES10.GL_LINE_SMOOTH,2848,,,, -?,0,android/opengl/GLES10.GL_LINE_SMOOTH_HINT,3154,,,, -?,0,android/opengl/GLES10.GL_LINE_STRIP,3,,,, -?,0,android/opengl/GLES10.GL_LINEAR,9729,,,, -?,0,android/opengl/GLES10.GL_LINEAR_ATTENUATION,4616,,,, -?,0,android/opengl/GLES10.GL_LINEAR_MIPMAP_LINEAR,9987,,,, -?,0,android/opengl/GLES10.GL_LINEAR_MIPMAP_NEAREST,9985,,,, -?,0,android/opengl/GLES10.GL_LINES,1,,,, -?,0,android/opengl/GLES10.GL_LUMINANCE,6409,,,, -?,0,android/opengl/GLES10.GL_LUMINANCE_ALPHA,6410,,,, -?,0,android/opengl/GLES10.GL_MAX_ELEMENTS_INDICES,33001,,,, -?,0,android/opengl/GLES10.GL_MAX_ELEMENTS_VERTICES,33000,,,, -?,0,android/opengl/GLES10.GL_MAX_LIGHTS,3377,,,, -?,0,android/opengl/GLES10.GL_MAX_MODELVIEW_STACK_DEPTH,3382,,,, -?,0,android/opengl/GLES10.GL_MAX_PROJECTION_STACK_DEPTH,3384,,,, -?,0,android/opengl/GLES10.GL_MAX_TEXTURE_SIZE,3379,,,, -?,0,android/opengl/GLES10.GL_MAX_TEXTURE_STACK_DEPTH,3385,,,, -?,0,android/opengl/GLES10.GL_MAX_TEXTURE_UNITS,34018,,,, -?,0,android/opengl/GLES10.GL_MAX_VIEWPORT_DIMS,3386,,,, -?,0,android/opengl/GLES10.GL_MODELVIEW,5888,,,, -?,0,android/opengl/GLES10.GL_MODULATE,8448,,,, -?,0,android/opengl/GLES10.GL_MULTISAMPLE,32925,,,, -?,0,android/opengl/GLES10.GL_NAND,5390,,,, -?,0,android/opengl/GLES10.GL_NEAREST,9728,,,, -?,0,android/opengl/GLES10.GL_NEAREST_MIPMAP_LINEAR,9986,,,, -?,0,android/opengl/GLES10.GL_NEAREST_MIPMAP_NEAREST,9984,,,, -?,0,android/opengl/GLES10.GL_NEVER,512,,,, -?,0,android/opengl/GLES10.GL_NICEST,4354,,,, -?,0,android/opengl/GLES10.GL_NO_ERROR,0,,,, -?,0,android/opengl/GLES10.GL_NOOP,5381,,,, -?,0,android/opengl/GLES10.GL_NOR,5384,,,, -?,0,android/opengl/GLES10.GL_NORMAL_ARRAY,32885,,,, -?,0,android/opengl/GLES10.GL_NORMALIZE,2977,,,, -?,0,android/opengl/GLES10.GL_NOTEQUAL,517,,,, -?,0,android/opengl/GLES10.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, -?,0,android/opengl/GLES10.GL_ONE,1,,,, -?,0,android/opengl/GLES10.GL_ONE_MINUS_DST_ALPHA,773,,,, -?,0,android/opengl/GLES10.GL_ONE_MINUS_DST_COLOR,775,,,, -?,0,android/opengl/GLES10.GL_ONE_MINUS_SRC_ALPHA,771,,,, -?,0,android/opengl/GLES10.GL_ONE_MINUS_SRC_COLOR,769,,,, -?,0,android/opengl/GLES10.GL_OR,5383,,,, -?,0,android/opengl/GLES10.GL_OR_INVERTED,5389,,,, -?,0,android/opengl/GLES10.GL_OR_REVERSE,5387,,,, -?,0,android/opengl/GLES10.GL_OUT_OF_MEMORY,1285,,,, -?,0,android/opengl/GLES10.GL_PACK_ALIGNMENT,3333,,,, -?,0,android/opengl/GLES10.GL_PALETTE4_R5_G6_B5_OES,35730,,,, -?,0,android/opengl/GLES10.GL_PALETTE4_RGB5_A1_OES,35732,,,, -?,0,android/opengl/GLES10.GL_PALETTE4_RGB8_OES,35728,,,, -?,0,android/opengl/GLES10.GL_PALETTE4_RGBA4_OES,35731,,,, -?,0,android/opengl/GLES10.GL_PALETTE4_RGBA8_OES,35729,,,, -?,0,android/opengl/GLES10.GL_PALETTE8_R5_G6_B5_OES,35735,,,, -?,0,android/opengl/GLES10.GL_PALETTE8_RGB5_A1_OES,35737,,,, -?,0,android/opengl/GLES10.GL_PALETTE8_RGB8_OES,35733,,,, -?,0,android/opengl/GLES10.GL_PALETTE8_RGBA4_OES,35736,,,, -?,0,android/opengl/GLES10.GL_PALETTE8_RGBA8_OES,35734,,,, -?,0,android/opengl/GLES10.GL_PERSPECTIVE_CORRECTION_HINT,3152,,,, -?,0,android/opengl/GLES10.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, -?,0,android/opengl/GLES10.GL_POINT_SIZE,2833,,,, -?,0,android/opengl/GLES10.GL_POINT_SMOOTH,2832,,,, -?,0,android/opengl/GLES10.GL_POINT_SMOOTH_HINT,3153,,,, -?,0,android/opengl/GLES10.GL_POINTS,0,,,, -?,0,android/opengl/GLES10.GL_POLYGON_OFFSET_FILL,32823,,,, -?,0,android/opengl/GLES10.GL_POLYGON_SMOOTH_HINT,3155,,,, -?,0,android/opengl/GLES10.GL_POSITION,4611,,,, -?,0,android/opengl/GLES10.GL_PROJECTION,5889,,,, -?,0,android/opengl/GLES10.GL_QUADRATIC_ATTENUATION,4617,,,, -?,0,android/opengl/GLES10.GL_RED_BITS,3410,,,, -?,0,android/opengl/GLES10.GL_RENDERER,7937,,,, -?,0,android/opengl/GLES10.GL_REPEAT,10497,,,, -?,0,android/opengl/GLES10.GL_REPLACE,7681,,,, -?,0,android/opengl/GLES10.GL_RESCALE_NORMAL,32826,,,, -?,0,android/opengl/GLES10.GL_RGB,6407,,,, -?,0,android/opengl/GLES10.GL_RGBA,6408,,,, -?,0,android/opengl/GLES10.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, -?,0,android/opengl/GLES10.GL_SAMPLE_ALPHA_TO_ONE,32927,,,, -?,0,android/opengl/GLES10.GL_SAMPLE_COVERAGE,32928,,,, -?,0,android/opengl/GLES10.GL_SCISSOR_TEST,3089,,,, -?,0,android/opengl/GLES10.GL_SET,5391,,,, -?,0,android/opengl/GLES10.GL_SHININESS,5633,,,, -?,0,android/opengl/GLES10.GL_SHORT,5122,,,, -?,0,android/opengl/GLES10.GL_SMOOTH,7425,,,, -?,0,android/opengl/GLES10.GL_SMOOTH_LINE_WIDTH_RANGE,2850,,,, -?,0,android/opengl/GLES10.GL_SMOOTH_POINT_SIZE_RANGE,2834,,,, -?,0,android/opengl/GLES10.GL_SPECULAR,4610,,,, -?,0,android/opengl/GLES10.GL_SPOT_CUTOFF,4614,,,, -?,0,android/opengl/GLES10.GL_SPOT_DIRECTION,4612,,,, -?,0,android/opengl/GLES10.GL_SPOT_EXPONENT,4613,,,, -?,0,android/opengl/GLES10.GL_SRC_ALPHA,770,,,, -?,0,android/opengl/GLES10.GL_SRC_ALPHA_SATURATE,776,,,, -?,0,android/opengl/GLES10.GL_SRC_COLOR,768,,,, -?,0,android/opengl/GLES10.GL_STACK_OVERFLOW,1283,,,, -?,0,android/opengl/GLES10.GL_STACK_UNDERFLOW,1284,,,, -?,0,android/opengl/GLES10.GL_STENCIL_BITS,3415,,,, -?,0,android/opengl/GLES10.GL_STENCIL_BUFFER_BIT,1024,,,, -?,0,android/opengl/GLES10.GL_STENCIL_TEST,2960,,,, -?,0,android/opengl/GLES10.GL_SUBPIXEL_BITS,3408,,,, -?,0,android/opengl/GLES10.GL_TEXTURE,5890,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_2D,3553,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_COORD_ARRAY,32888,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_ENV,8960,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_ENV_COLOR,8705,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_ENV_MODE,8704,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_MAG_FILTER,10240,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_MIN_FILTER,10241,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_WRAP_S,10242,,,, -?,0,android/opengl/GLES10.GL_TEXTURE_WRAP_T,10243,,,, -?,0,android/opengl/GLES10.GL_TEXTURE0,33984,,,, -?,0,android/opengl/GLES10.GL_TEXTURE1,33985,,,, -?,0,android/opengl/GLES10.GL_TEXTURE10,33994,,,, -?,0,android/opengl/GLES10.GL_TEXTURE11,33995,,,, -?,0,android/opengl/GLES10.GL_TEXTURE12,33996,,,, -?,0,android/opengl/GLES10.GL_TEXTURE13,33997,,,, -?,0,android/opengl/GLES10.GL_TEXTURE14,33998,,,, -?,0,android/opengl/GLES10.GL_TEXTURE15,33999,,,, -?,0,android/opengl/GLES10.GL_TEXTURE16,34000,,,, -?,0,android/opengl/GLES10.GL_TEXTURE17,34001,,,, -?,0,android/opengl/GLES10.GL_TEXTURE18,34002,,,, -?,0,android/opengl/GLES10.GL_TEXTURE19,34003,,,, -?,0,android/opengl/GLES10.GL_TEXTURE2,33986,,,, -?,0,android/opengl/GLES10.GL_TEXTURE20,34004,,,, -?,0,android/opengl/GLES10.GL_TEXTURE21,34005,,,, -?,0,android/opengl/GLES10.GL_TEXTURE22,34006,,,, -?,0,android/opengl/GLES10.GL_TEXTURE23,34007,,,, -?,0,android/opengl/GLES10.GL_TEXTURE24,34008,,,, -?,0,android/opengl/GLES10.GL_TEXTURE25,34009,,,, -?,0,android/opengl/GLES10.GL_TEXTURE26,34010,,,, -?,0,android/opengl/GLES10.GL_TEXTURE27,34011,,,, -?,0,android/opengl/GLES10.GL_TEXTURE28,34012,,,, -?,0,android/opengl/GLES10.GL_TEXTURE29,34013,,,, -?,0,android/opengl/GLES10.GL_TEXTURE3,33987,,,, -?,0,android/opengl/GLES10.GL_TEXTURE30,34014,,,, -?,0,android/opengl/GLES10.GL_TEXTURE31,34015,,,, -?,0,android/opengl/GLES10.GL_TEXTURE4,33988,,,, -?,0,android/opengl/GLES10.GL_TEXTURE5,33989,,,, -?,0,android/opengl/GLES10.GL_TEXTURE6,33990,,,, -?,0,android/opengl/GLES10.GL_TEXTURE7,33991,,,, -?,0,android/opengl/GLES10.GL_TEXTURE8,33992,,,, -?,0,android/opengl/GLES10.GL_TEXTURE9,33993,,,, -?,0,android/opengl/GLES10.GL_TRIANGLE_FAN,6,,,, -?,0,android/opengl/GLES10.GL_TRIANGLE_STRIP,5,,,, -?,0,android/opengl/GLES10.GL_TRIANGLES,4,,,, -?,0,android/opengl/GLES10.GL_TRUE,1,,,, -?,0,android/opengl/GLES10.GL_UNPACK_ALIGNMENT,3317,,,, -?,0,android/opengl/GLES10.GL_UNSIGNED_BYTE,5121,,,, -?,0,android/opengl/GLES10.GL_UNSIGNED_SHORT,5123,,,, -?,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, -?,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, -?,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_5_6_5,33635,,,, -?,0,android/opengl/GLES10.GL_VENDOR,7936,,,, -?,0,android/opengl/GLES10.GL_VERSION,7938,,,, -?,0,android/opengl/GLES10.GL_VERTEX_ARRAY,32884,,,, -?,0,android/opengl/GLES10.GL_XOR,5382,,,, -?,0,android/opengl/GLES10.GL_ZERO,0,,,, -?,0,android/opengl/GLES11.GL_ACTIVE_TEXTURE,34016,,,, -?,0,android/opengl/GLES11.GL_ADD_SIGNED,34164,,,, -?,0,android/opengl/GLES11.GL_ALPHA_SCALE,3356,,,, -?,0,android/opengl/GLES11.GL_ALPHA_TEST_FUNC,3009,,,, -?,0,android/opengl/GLES11.GL_ALPHA_TEST_REF,3010,,,, -?,0,android/opengl/GLES11.GL_ARRAY_BUFFER,34962,,,, -?,0,android/opengl/GLES11.GL_ARRAY_BUFFER_BINDING,34964,,,, -?,0,android/opengl/GLES11.GL_BLEND_DST,3040,,,, -?,0,android/opengl/GLES11.GL_BLEND_SRC,3041,,,, -?,0,android/opengl/GLES11.GL_BUFFER_ACCESS,35003,,,, -?,0,android/opengl/GLES11.GL_BUFFER_SIZE,34660,,,, -?,0,android/opengl/GLES11.GL_BUFFER_USAGE,34661,,,, -?,0,android/opengl/GLES11.GL_CLIENT_ACTIVE_TEXTURE,34017,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE0,12288,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE1,12289,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE2,12290,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE3,12291,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE4,12292,,,, -?,0,android/opengl/GLES11.GL_CLIP_PLANE5,12293,,,, -?,0,android/opengl/GLES11.GL_COLOR_ARRAY_BUFFER_BINDING,34968,,,, -?,0,android/opengl/GLES11.GL_COLOR_ARRAY_POINTER,32912,,,, -?,0,android/opengl/GLES11.GL_COLOR_ARRAY_SIZE,32897,,,, -?,0,android/opengl/GLES11.GL_COLOR_ARRAY_STRIDE,32899,,,, -?,0,android/opengl/GLES11.GL_COLOR_ARRAY_TYPE,32898,,,, -?,0,android/opengl/GLES11.GL_COLOR_CLEAR_VALUE,3106,,,, -?,0,android/opengl/GLES11.GL_COLOR_WRITEMASK,3107,,,, -?,0,android/opengl/GLES11.GL_COMBINE,34160,,,, -?,0,android/opengl/GLES11.GL_COMBINE_ALPHA,34162,,,, -?,0,android/opengl/GLES11.GL_COMBINE_RGB,34161,,,, -?,0,android/opengl/GLES11.GL_CONSTANT,34166,,,, -?,0,android/opengl/GLES11.GL_COORD_REPLACE_OES,34914,,,, -?,0,android/opengl/GLES11.GL_CULL_FACE_MODE,2885,,,, -?,0,android/opengl/GLES11.GL_CURRENT_COLOR,2816,,,, -?,0,android/opengl/GLES11.GL_CURRENT_NORMAL,2818,,,, -?,0,android/opengl/GLES11.GL_CURRENT_TEXTURE_COORDS,2819,,,, -?,0,android/opengl/GLES11.GL_DEPTH_CLEAR_VALUE,2931,,,, -?,0,android/opengl/GLES11.GL_DEPTH_FUNC,2932,,,, -?,0,android/opengl/GLES11.GL_DEPTH_RANGE,2928,,,, -?,0,android/opengl/GLES11.GL_DEPTH_WRITEMASK,2930,,,, -?,0,android/opengl/GLES11.GL_DOT3_RGB,34478,,,, -?,0,android/opengl/GLES11.GL_DOT3_RGBA,34479,,,, -?,0,android/opengl/GLES11.GL_DYNAMIC_DRAW,35048,,,, -?,0,android/opengl/GLES11.GL_ELEMENT_ARRAY_BUFFER,34963,,,, -?,0,android/opengl/GLES11.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, -?,0,android/opengl/GLES11.GL_FRONT_FACE,2886,,,, -?,0,android/opengl/GLES11.GL_GENERATE_MIPMAP,33169,,,, -?,0,android/opengl/GLES11.GL_GENERATE_MIPMAP_HINT,33170,,,, -?,0,android/opengl/GLES11.GL_INTERPOLATE,34165,,,, -?,0,android/opengl/GLES11.GL_LINE_WIDTH,2849,,,, -?,0,android/opengl/GLES11.GL_LOGIC_OP_MODE,3056,,,, -?,0,android/opengl/GLES11.GL_MATRIX_MODE,2976,,,, -?,0,android/opengl/GLES11.GL_MAX_CLIP_PLANES,3378,,,, -?,0,android/opengl/GLES11.GL_MODELVIEW_MATRIX,2982,,,, -?,0,android/opengl/GLES11.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, -?,0,android/opengl/GLES11.GL_MODELVIEW_STACK_DEPTH,2979,,,, -?,0,android/opengl/GLES11.GL_NORMAL_ARRAY_BUFFER_BINDING,34967,,,, -?,0,android/opengl/GLES11.GL_NORMAL_ARRAY_POINTER,32911,,,, -?,0,android/opengl/GLES11.GL_NORMAL_ARRAY_STRIDE,32895,,,, -?,0,android/opengl/GLES11.GL_NORMAL_ARRAY_TYPE,32894,,,, -?,0,android/opengl/GLES11.GL_OPERAND0_ALPHA,34200,,,, -?,0,android/opengl/GLES11.GL_OPERAND0_RGB,34192,,,, -?,0,android/opengl/GLES11.GL_OPERAND1_ALPHA,34201,,,, -?,0,android/opengl/GLES11.GL_OPERAND1_RGB,34193,,,, -?,0,android/opengl/GLES11.GL_OPERAND2_ALPHA,34202,,,, -?,0,android/opengl/GLES11.GL_OPERAND2_RGB,34194,,,, -?,0,android/opengl/GLES11.GL_POINT_DISTANCE_ATTENUATION,33065,,,, -?,0,android/opengl/GLES11.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE,2833,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES,35743,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_OES,35740,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_POINTER_OES,35212,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_STRIDE_OES,35211,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_TYPE_OES,35210,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_MAX,33063,,,, -?,0,android/opengl/GLES11.GL_POINT_SIZE_MIN,33062,,,, -?,0,android/opengl/GLES11.GL_POINT_SPRITE_OES,34913,,,, -?,0,android/opengl/GLES11.GL_POLYGON_OFFSET_FACTOR,32824,,,, -?,0,android/opengl/GLES11.GL_POLYGON_OFFSET_UNITS,10752,,,, -?,0,android/opengl/GLES11.GL_PREVIOUS,34168,,,, -?,0,android/opengl/GLES11.GL_PRIMARY_COLOR,34167,,,, -?,0,android/opengl/GLES11.GL_PROJECTION_MATRIX,2983,,,, -?,0,android/opengl/GLES11.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, -?,0,android/opengl/GLES11.GL_PROJECTION_STACK_DEPTH,2980,,,, -?,0,android/opengl/GLES11.GL_RGB_SCALE,34163,,,, -?,0,android/opengl/GLES11.GL_SAMPLE_BUFFERS,32936,,,, -?,0,android/opengl/GLES11.GL_SAMPLE_COVERAGE_INVERT,32939,,,, -?,0,android/opengl/GLES11.GL_SAMPLE_COVERAGE_VALUE,32938,,,, -?,0,android/opengl/GLES11.GL_SAMPLES,32937,,,, -?,0,android/opengl/GLES11.GL_SCISSOR_BOX,3088,,,, -?,0,android/opengl/GLES11.GL_SHADE_MODEL,2900,,,, -?,0,android/opengl/GLES11.GL_SRC0_ALPHA,34184,,,, -?,0,android/opengl/GLES11.GL_SRC0_RGB,34176,,,, -?,0,android/opengl/GLES11.GL_SRC1_ALPHA,34185,,,, -?,0,android/opengl/GLES11.GL_SRC1_RGB,34177,,,, -?,0,android/opengl/GLES11.GL_SRC2_ALPHA,34186,,,, -?,0,android/opengl/GLES11.GL_SRC2_RGB,34178,,,, -?,0,android/opengl/GLES11.GL_STATIC_DRAW,35044,,,, -?,0,android/opengl/GLES11.GL_STENCIL_CLEAR_VALUE,2961,,,, -?,0,android/opengl/GLES11.GL_STENCIL_FAIL,2964,,,, -?,0,android/opengl/GLES11.GL_STENCIL_FUNC,2962,,,, -?,0,android/opengl/GLES11.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, -?,0,android/opengl/GLES11.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, -?,0,android/opengl/GLES11.GL_STENCIL_REF,2967,,,, -?,0,android/opengl/GLES11.GL_STENCIL_VALUE_MASK,2963,,,, -?,0,android/opengl/GLES11.GL_STENCIL_WRITEMASK,2968,,,, -?,0,android/opengl/GLES11.GL_SUBTRACT,34023,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_BINDING_2D,32873,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING,34970,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_POINTER,32914,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_SIZE,32904,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_STRIDE,32906,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_TYPE,32905,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_MATRIX,2984,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, -?,0,android/opengl/GLES11.GL_TEXTURE_STACK_DEPTH,2981,,,, -?,0,android/opengl/GLES11.GL_VERTEX_ARRAY_BUFFER_BINDING,34966,,,, -?,0,android/opengl/GLES11.GL_VERTEX_ARRAY_POINTER,32910,,,, -?,0,android/opengl/GLES11.GL_VERTEX_ARRAY_SIZE,32890,,,, -?,0,android/opengl/GLES11.GL_VERTEX_ARRAY_STRIDE,32892,,,, -?,0,android/opengl/GLES11.GL_VERTEX_ARRAY_TYPE,32891,,,, -?,0,android/opengl/GLES11.GL_VIEWPORT,2978,,,, -?,0,android/opengl/GLES11.GL_WRITE_ONLY,35001,,,, -?,0,android/opengl/GLES11Ext.GL_3DC_X_AMD,34809,,,, -?,0,android/opengl/GLES11Ext.GL_3DC_XY_AMD,34810,,,, -?,0,android/opengl/GLES11Ext.GL_ATC_RGB_AMD,35986,,,, -?,0,android/opengl/GLES11Ext.GL_ATC_RGBA_EXPLICIT_ALPHA_AMD,35987,,,, -?,0,android/opengl/GLES11Ext.GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD,34798,,,, -?,0,android/opengl/GLES11Ext.GL_BGRA,32993,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_DST_ALPHA_OES,32970,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_DST_RGB_OES,32968,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_ALPHA_OES,34877,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_OES,32777,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_RGB_OES,32777,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_SRC_ALPHA_OES,32971,,,, -?,0,android/opengl/GLES11Ext.GL_BLEND_SRC_RGB_OES,32969,,,, -?,0,android/opengl/GLES11Ext.GL_BUFFER_ACCESS_OES,35003,,,, -?,0,android/opengl/GLES11Ext.GL_BUFFER_MAP_POINTER_OES,35005,,,, -?,0,android/opengl/GLES11Ext.GL_BUFFER_MAPPED_OES,35004,,,, -?,0,android/opengl/GLES11Ext.GL_COLOR_ATTACHMENT0_OES,36064,,,, -?,0,android/opengl/GLES11Ext.GL_CURRENT_PALETTE_MATRIX_OES,34883,,,, -?,0,android/opengl/GLES11Ext.GL_DECR_WRAP_OES,34056,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH_ATTACHMENT_OES,36096,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT16_OES,33189,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT24_OES,33190,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT32_OES,33191,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH_STENCIL_OES,34041,,,, -?,0,android/opengl/GLES11Ext.GL_DEPTH24_STENCIL8_OES,35056,,,, -?,0,android/opengl/GLES11Ext.GL_ETC1_RGB8_OES,36196,,,, -?,0,android/opengl/GLES11Ext.GL_FIXED_OES,5132,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES,36049,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES,36048,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES,36051,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES,36050,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_BINDING_OES,36006,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_COMPLETE_OES,36053,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES,36054,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES,36057,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES,36058,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES,36055,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_OES,36160,,,, -?,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_UNSUPPORTED_OES,36061,,,, -?,0,android/opengl/GLES11Ext.GL_FUNC_ADD_OES,32774,,,, -?,0,android/opengl/GLES11Ext.GL_FUNC_REVERSE_SUBTRACT_OES,32779,,,, -?,0,android/opengl/GLES11Ext.GL_FUNC_SUBTRACT_OES,32778,,,, -?,0,android/opengl/GLES11Ext.GL_INCR_WRAP_OES,34055,,,, -?,0,android/opengl/GLES11Ext.GL_INVALID_FRAMEBUFFER_OPERATION_OES,1286,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES,35742,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_OES,34884,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_POINTER_OES,34889,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_SIZE_OES,34886,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_STRIDE_OES,34888,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_TYPE_OES,34887,,,, -?,0,android/opengl/GLES11Ext.GL_MATRIX_PALETTE_OES,34880,,,, -?,0,android/opengl/GLES11Ext.GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES,34076,,,, -?,0,android/opengl/GLES11Ext.GL_MAX_PALETTE_MATRICES_OES,34882,,,, -?,0,android/opengl/GLES11Ext.GL_MAX_RENDERBUFFER_SIZE_OES,34024,,,, -?,0,android/opengl/GLES11Ext.GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT,34047,,,, -?,0,android/opengl/GLES11Ext.GL_MAX_VERTEX_UNITS_OES,34468,,,, -?,0,android/opengl/GLES11Ext.GL_MIRRORED_REPEAT_OES,33648,,,, -?,0,android/opengl/GLES11Ext.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, -?,0,android/opengl/GLES11Ext.GL_NONE_OES,0,,,, -?,0,android/opengl/GLES11Ext.GL_NORMAL_MAP_OES,34065,,,, -?,0,android/opengl/GLES11Ext.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, -?,0,android/opengl/GLES11Ext.GL_REFLECTION_MAP_OES,34066,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_ALPHA_SIZE_OES,36179,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_BINDING_OES,36007,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_BLUE_SIZE_OES,36178,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_DEPTH_SIZE_OES,36180,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_GREEN_SIZE_OES,36177,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_HEIGHT_OES,36163,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_INTERNAL_FORMAT_OES,36164,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_OES,36161,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_RED_SIZE_OES,36176,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_STENCIL_SIZE_OES,36181,,,, -?,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_WIDTH_OES,36162,,,, -?,15,android/opengl/GLES11Ext.GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES,36200,,,, -?,0,android/opengl/GLES11Ext.GL_RGB5_A1_OES,32855,,,, -?,0,android/opengl/GLES11Ext.GL_RGB565_OES,36194,,,, -?,0,android/opengl/GLES11Ext.GL_RGB8_OES,32849,,,, -?,0,android/opengl/GLES11Ext.GL_RGBA4_OES,32854,,,, -?,0,android/opengl/GLES11Ext.GL_RGBA8_OES,32856,,,, -?,15,android/opengl/GLES11Ext.GL_SAMPLER_EXTERNAL_OES,36198,,,, -?,0,android/opengl/GLES11Ext.GL_STENCIL_ATTACHMENT_OES,36128,,,, -?,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX1_OES,36166,,,, -?,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX4_OES,36167,,,, -?,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX8_OES,36168,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_BINDING_CUBE_MAP_OES,34068,,,, -?,15,android/opengl/GLES11Ext.GL_TEXTURE_BINDING_EXTERNAL_OES,36199,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CROP_RECT_OES,35741,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES,34070,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES,34072,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES,34074,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_OES,34067,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES,34069,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES,34071,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES,34073,,,, -?,15,android/opengl/GLES11Ext.GL_TEXTURE_EXTERNAL_OES,36197,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_GEN_MODE_OES,9472,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_GEN_STR_OES,36192,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, -?,0,android/opengl/GLES11Ext.GL_TEXTURE_MAX_ANISOTROPY_EXT,34046,,,, -?,0,android/opengl/GLES11Ext.GL_UNSIGNED_INT_24_8_OES,34042,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_BUFFER_BINDING_OES,34974,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_OES,34477,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_POINTER_OES,34476,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_SIZE_OES,34475,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_STRIDE_OES,34474,,,, -?,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_TYPE_OES,34473,,,, -?,0,android/opengl/GLES11Ext.GL_WRITE_ONLY_OES,35001,,,, -?,0,android/opengl/GLES20.GL_ACTIVE_ATTRIBUTE_MAX_LENGTH,35722,,,, -?,0,android/opengl/GLES20.GL_ACTIVE_ATTRIBUTES,35721,,,, -?,0,android/opengl/GLES20.GL_ACTIVE_TEXTURE,34016,,,, -?,0,android/opengl/GLES20.GL_ACTIVE_UNIFORM_MAX_LENGTH,35719,,,, -?,0,android/opengl/GLES20.GL_ACTIVE_UNIFORMS,35718,,,, -?,0,android/opengl/GLES20.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, -?,0,android/opengl/GLES20.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, -?,0,android/opengl/GLES20.GL_ALPHA,6406,,,, -?,0,android/opengl/GLES20.GL_ALPHA_BITS,3413,,,, -?,0,android/opengl/GLES20.GL_ALWAYS,519,,,, -?,0,android/opengl/GLES20.GL_ARRAY_BUFFER,34962,,,, -?,0,android/opengl/GLES20.GL_ARRAY_BUFFER_BINDING,34964,,,, -?,0,android/opengl/GLES20.GL_ATTACHED_SHADERS,35717,,,, -?,0,android/opengl/GLES20.GL_BACK,1029,,,, -?,0,android/opengl/GLES20.GL_BLEND,3042,,,, -?,0,android/opengl/GLES20.GL_BLEND_COLOR,32773,,,, -?,0,android/opengl/GLES20.GL_BLEND_DST_ALPHA,32970,,,, -?,0,android/opengl/GLES20.GL_BLEND_DST_RGB,32968,,,, -?,0,android/opengl/GLES20.GL_BLEND_EQUATION,32777,,,, -?,0,android/opengl/GLES20.GL_BLEND_EQUATION_ALPHA,34877,,,, -?,0,android/opengl/GLES20.GL_BLEND_EQUATION_RGB,32777,,,, -?,0,android/opengl/GLES20.GL_BLEND_SRC_ALPHA,32971,,,, -?,0,android/opengl/GLES20.GL_BLEND_SRC_RGB,32969,,,, -?,0,android/opengl/GLES20.GL_BLUE_BITS,3412,,,, -?,0,android/opengl/GLES20.GL_BOOL,35670,,,, -?,0,android/opengl/GLES20.GL_BOOL_VEC2,35671,,,, -?,0,android/opengl/GLES20.GL_BOOL_VEC3,35672,,,, -?,0,android/opengl/GLES20.GL_BOOL_VEC4,35673,,,, -?,0,android/opengl/GLES20.GL_BUFFER_SIZE,34660,,,, -?,0,android/opengl/GLES20.GL_BUFFER_USAGE,34661,,,, -?,0,android/opengl/GLES20.GL_BYTE,5120,,,, -?,0,android/opengl/GLES20.GL_CCW,2305,,,, -?,0,android/opengl/GLES20.GL_CLAMP_TO_EDGE,33071,,,, -?,0,android/opengl/GLES20.GL_COLOR_ATTACHMENT0,36064,,,, -?,0,android/opengl/GLES20.GL_COLOR_BUFFER_BIT,16384,,,, -?,0,android/opengl/GLES20.GL_COLOR_CLEAR_VALUE,3106,,,, -?,0,android/opengl/GLES20.GL_COLOR_WRITEMASK,3107,,,, -?,0,android/opengl/GLES20.GL_COMPILE_STATUS,35713,,,, -?,0,android/opengl/GLES20.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, -?,0,android/opengl/GLES20.GL_CONSTANT_ALPHA,32771,,,, -?,0,android/opengl/GLES20.GL_CONSTANT_COLOR,32769,,,, -?,0,android/opengl/GLES20.GL_CULL_FACE,2884,,,, -?,0,android/opengl/GLES20.GL_CULL_FACE_MODE,2885,,,, -?,0,android/opengl/GLES20.GL_CURRENT_PROGRAM,35725,,,, -?,0,android/opengl/GLES20.GL_CURRENT_VERTEX_ATTRIB,34342,,,, -?,0,android/opengl/GLES20.GL_CW,2304,,,, -?,0,android/opengl/GLES20.GL_DECR,7683,,,, -?,0,android/opengl/GLES20.GL_DECR_WRAP,34056,,,, -?,0,android/opengl/GLES20.GL_DELETE_STATUS,35712,,,, -?,0,android/opengl/GLES20.GL_DEPTH_ATTACHMENT,36096,,,, -?,0,android/opengl/GLES20.GL_DEPTH_BITS,3414,,,, -?,0,android/opengl/GLES20.GL_DEPTH_BUFFER_BIT,256,,,, -?,0,android/opengl/GLES20.GL_DEPTH_CLEAR_VALUE,2931,,,, -?,0,android/opengl/GLES20.GL_DEPTH_COMPONENT,6402,,,, -?,0,android/opengl/GLES20.GL_DEPTH_COMPONENT16,33189,,,, -?,0,android/opengl/GLES20.GL_DEPTH_FUNC,2932,,,, -?,0,android/opengl/GLES20.GL_DEPTH_RANGE,2928,,,, -?,0,android/opengl/GLES20.GL_DEPTH_TEST,2929,,,, -?,0,android/opengl/GLES20.GL_DEPTH_WRITEMASK,2930,,,, -?,0,android/opengl/GLES20.GL_DITHER,3024,,,, -?,0,android/opengl/GLES20.GL_DONT_CARE,4352,,,, -?,0,android/opengl/GLES20.GL_DST_ALPHA,772,,,, -?,0,android/opengl/GLES20.GL_DST_COLOR,774,,,, -?,0,android/opengl/GLES20.GL_DYNAMIC_DRAW,35048,,,, -?,0,android/opengl/GLES20.GL_ELEMENT_ARRAY_BUFFER,34963,,,, -?,0,android/opengl/GLES20.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, -?,0,android/opengl/GLES20.GL_EQUAL,514,,,, -?,0,android/opengl/GLES20.GL_EXTENSIONS,7939,,,, -?,0,android/opengl/GLES20.GL_FALSE,0,,,, -?,0,android/opengl/GLES20.GL_FASTEST,4353,,,, -?,0,android/opengl/GLES20.GL_FIXED,5132,,,, -?,0,android/opengl/GLES20.GL_FLOAT,5126,,,, -?,0,android/opengl/GLES20.GL_FLOAT_MAT2,35674,,,, -?,0,android/opengl/GLES20.GL_FLOAT_MAT3,35675,,,, -?,0,android/opengl/GLES20.GL_FLOAT_MAT4,35676,,,, -?,0,android/opengl/GLES20.GL_FLOAT_VEC2,35664,,,, -?,0,android/opengl/GLES20.GL_FLOAT_VEC3,35665,,,, -?,0,android/opengl/GLES20.GL_FLOAT_VEC4,35666,,,, -?,0,android/opengl/GLES20.GL_FRAGMENT_SHADER,35632,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER,36160,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME,36049,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE,36048,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE,36051,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL,36050,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_BINDING,36006,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_COMPLETE,36053,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT,36054,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS,36057,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT,36055,,,, -?,0,android/opengl/GLES20.GL_FRAMEBUFFER_UNSUPPORTED,36061,,,, -?,0,android/opengl/GLES20.GL_FRONT,1028,,,, -?,0,android/opengl/GLES20.GL_FRONT_AND_BACK,1032,,,, -?,0,android/opengl/GLES20.GL_FRONT_FACE,2886,,,, -?,0,android/opengl/GLES20.GL_FUNC_ADD,32774,,,, -?,0,android/opengl/GLES20.GL_FUNC_REVERSE_SUBTRACT,32779,,,, -?,0,android/opengl/GLES20.GL_FUNC_SUBTRACT,32778,,,, -?,0,android/opengl/GLES20.GL_GENERATE_MIPMAP_HINT,33170,,,, -?,0,android/opengl/GLES20.GL_GEQUAL,518,,,, -?,0,android/opengl/GLES20.GL_GREATER,516,,,, -?,0,android/opengl/GLES20.GL_GREEN_BITS,3411,,,, -?,0,android/opengl/GLES20.GL_HIGH_FLOAT,36338,,,, -?,0,android/opengl/GLES20.GL_HIGH_INT,36341,,,, -?,0,android/opengl/GLES20.GL_IMPLEMENTATION_COLOR_READ_FORMAT,35739,,,, -?,0,android/opengl/GLES20.GL_IMPLEMENTATION_COLOR_READ_TYPE,35738,,,, -?,0,android/opengl/GLES20.GL_INCR,7682,,,, -?,0,android/opengl/GLES20.GL_INCR_WRAP,34055,,,, -?,0,android/opengl/GLES20.GL_INFO_LOG_LENGTH,35716,,,, -?,0,android/opengl/GLES20.GL_INT,5124,,,, -?,0,android/opengl/GLES20.GL_INT_VEC2,35667,,,, -?,0,android/opengl/GLES20.GL_INT_VEC3,35668,,,, -?,0,android/opengl/GLES20.GL_INT_VEC4,35669,,,, -?,0,android/opengl/GLES20.GL_INVALID_ENUM,1280,,,, -?,0,android/opengl/GLES20.GL_INVALID_FRAMEBUFFER_OPERATION,1286,,,, -?,0,android/opengl/GLES20.GL_INVALID_OPERATION,1282,,,, -?,0,android/opengl/GLES20.GL_INVALID_VALUE,1281,,,, -?,0,android/opengl/GLES20.GL_INVERT,5386,,,, -?,0,android/opengl/GLES20.GL_KEEP,7680,,,, -?,0,android/opengl/GLES20.GL_LEQUAL,515,,,, -?,0,android/opengl/GLES20.GL_LESS,513,,,, -?,0,android/opengl/GLES20.GL_LINE_LOOP,2,,,, -?,0,android/opengl/GLES20.GL_LINE_STRIP,3,,,, -?,0,android/opengl/GLES20.GL_LINE_WIDTH,2849,,,, -?,0,android/opengl/GLES20.GL_LINEAR,9729,,,, -?,0,android/opengl/GLES20.GL_LINEAR_MIPMAP_LINEAR,9987,,,, -?,0,android/opengl/GLES20.GL_LINEAR_MIPMAP_NEAREST,9985,,,, -?,0,android/opengl/GLES20.GL_LINES,1,,,, -?,0,android/opengl/GLES20.GL_LINK_STATUS,35714,,,, -?,0,android/opengl/GLES20.GL_LOW_FLOAT,36336,,,, -?,0,android/opengl/GLES20.GL_LOW_INT,36339,,,, -?,0,android/opengl/GLES20.GL_LUMINANCE,6409,,,, -?,0,android/opengl/GLES20.GL_LUMINANCE_ALPHA,6410,,,, -?,0,android/opengl/GLES20.GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS,35661,,,, -?,0,android/opengl/GLES20.GL_MAX_CUBE_MAP_TEXTURE_SIZE,34076,,,, -?,0,android/opengl/GLES20.GL_MAX_FRAGMENT_UNIFORM_VECTORS,36349,,,, -?,0,android/opengl/GLES20.GL_MAX_RENDERBUFFER_SIZE,34024,,,, -?,0,android/opengl/GLES20.GL_MAX_TEXTURE_IMAGE_UNITS,34930,,,, -?,0,android/opengl/GLES20.GL_MAX_TEXTURE_SIZE,3379,,,, -?,0,android/opengl/GLES20.GL_MAX_VARYING_VECTORS,36348,,,, -?,0,android/opengl/GLES20.GL_MAX_VERTEX_ATTRIBS,34921,,,, -?,0,android/opengl/GLES20.GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS,35660,,,, -?,0,android/opengl/GLES20.GL_MAX_VERTEX_UNIFORM_VECTORS,36347,,,, -?,0,android/opengl/GLES20.GL_MAX_VIEWPORT_DIMS,3386,,,, -?,0,android/opengl/GLES20.GL_MEDIUM_FLOAT,36337,,,, -?,0,android/opengl/GLES20.GL_MEDIUM_INT,36340,,,, -?,0,android/opengl/GLES20.GL_MIRRORED_REPEAT,33648,,,, -?,0,android/opengl/GLES20.GL_NEAREST,9728,,,, -?,0,android/opengl/GLES20.GL_NEAREST_MIPMAP_LINEAR,9986,,,, -?,0,android/opengl/GLES20.GL_NEAREST_MIPMAP_NEAREST,9984,,,, -?,0,android/opengl/GLES20.GL_NEVER,512,,,, -?,0,android/opengl/GLES20.GL_NICEST,4354,,,, -?,0,android/opengl/GLES20.GL_NO_ERROR,0,,,, -?,0,android/opengl/GLES20.GL_NONE,0,,,, -?,0,android/opengl/GLES20.GL_NOTEQUAL,517,,,, -?,0,android/opengl/GLES20.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, -?,0,android/opengl/GLES20.GL_NUM_SHADER_BINARY_FORMATS,36345,,,, -?,0,android/opengl/GLES20.GL_ONE,1,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_CONSTANT_ALPHA,32772,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_CONSTANT_COLOR,32770,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_DST_ALPHA,773,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_DST_COLOR,775,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_SRC_ALPHA,771,,,, -?,0,android/opengl/GLES20.GL_ONE_MINUS_SRC_COLOR,769,,,, -?,0,android/opengl/GLES20.GL_OUT_OF_MEMORY,1285,,,, -?,0,android/opengl/GLES20.GL_PACK_ALIGNMENT,3333,,,, -?,0,android/opengl/GLES20.GL_POINTS,0,,,, -?,0,android/opengl/GLES20.GL_POLYGON_OFFSET_FACTOR,32824,,,, -?,0,android/opengl/GLES20.GL_POLYGON_OFFSET_FILL,32823,,,, -?,0,android/opengl/GLES20.GL_POLYGON_OFFSET_UNITS,10752,,,, -?,0,android/opengl/GLES20.GL_RED_BITS,3410,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER,36161,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_ALPHA_SIZE,36179,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_BINDING,36007,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_BLUE_SIZE,36178,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_DEPTH_SIZE,36180,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_GREEN_SIZE,36177,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_HEIGHT,36163,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_INTERNAL_FORMAT,36164,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_RED_SIZE,36176,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_STENCIL_SIZE,36181,,,, -?,0,android/opengl/GLES20.GL_RENDERBUFFER_WIDTH,36162,,,, -?,0,android/opengl/GLES20.GL_RENDERER,7937,,,, -?,0,android/opengl/GLES20.GL_REPEAT,10497,,,, -?,0,android/opengl/GLES20.GL_REPLACE,7681,,,, -?,0,android/opengl/GLES20.GL_RGB,6407,,,, -?,0,android/opengl/GLES20.GL_RGB5_A1,32855,,,, -?,0,android/opengl/GLES20.GL_RGB565,36194,,,, -?,0,android/opengl/GLES20.GL_RGBA,6408,,,, -?,0,android/opengl/GLES20.GL_RGBA4,32854,,,, -?,0,android/opengl/GLES20.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, -?,0,android/opengl/GLES20.GL_SAMPLE_BUFFERS,32936,,,, -?,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE,32928,,,, -?,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE_INVERT,32939,,,, -?,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE_VALUE,32938,,,, -?,0,android/opengl/GLES20.GL_SAMPLER_2D,35678,,,, -?,0,android/opengl/GLES20.GL_SAMPLER_CUBE,35680,,,, -?,0,android/opengl/GLES20.GL_SAMPLES,32937,,,, -?,0,android/opengl/GLES20.GL_SCISSOR_BOX,3088,,,, -?,0,android/opengl/GLES20.GL_SCISSOR_TEST,3089,,,, -?,0,android/opengl/GLES20.GL_SHADER_BINARY_FORMATS,36344,,,, -?,0,android/opengl/GLES20.GL_SHADER_COMPILER,36346,,,, -?,0,android/opengl/GLES20.GL_SHADER_SOURCE_LENGTH,35720,,,, -?,0,android/opengl/GLES20.GL_SHADER_TYPE,35663,,,, -?,0,android/opengl/GLES20.GL_SHADING_LANGUAGE_VERSION,35724,,,, -?,0,android/opengl/GLES20.GL_SHORT,5122,,,, -?,0,android/opengl/GLES20.GL_SRC_ALPHA,770,,,, -?,0,android/opengl/GLES20.GL_SRC_ALPHA_SATURATE,776,,,, -?,0,android/opengl/GLES20.GL_SRC_COLOR,768,,,, -?,0,android/opengl/GLES20.GL_STATIC_DRAW,35044,,,, -?,0,android/opengl/GLES20.GL_STENCIL_ATTACHMENT,36128,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_FAIL,34817,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_FUNC,34816,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_PASS_DEPTH_FAIL,34818,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_PASS_DEPTH_PASS,34819,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_REF,36003,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_VALUE_MASK,36004,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BACK_WRITEMASK,36005,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BITS,3415,,,, -?,0,android/opengl/GLES20.GL_STENCIL_BUFFER_BIT,1024,,,, -?,0,android/opengl/GLES20.GL_STENCIL_CLEAR_VALUE,2961,,,, -?,0,android/opengl/GLES20.GL_STENCIL_FAIL,2964,,,, -?,0,android/opengl/GLES20.GL_STENCIL_FUNC,2962,,,, -?,0,android/opengl/GLES20.GL_STENCIL_INDEX,6401,,,, -?,0,android/opengl/GLES20.GL_STENCIL_INDEX8,36168,,,, -?,0,android/opengl/GLES20.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, -?,0,android/opengl/GLES20.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, -?,0,android/opengl/GLES20.GL_STENCIL_REF,2967,,,, -?,0,android/opengl/GLES20.GL_STENCIL_TEST,2960,,,, -?,0,android/opengl/GLES20.GL_STENCIL_VALUE_MASK,2963,,,, -?,0,android/opengl/GLES20.GL_STENCIL_WRITEMASK,2968,,,, -?,0,android/opengl/GLES20.GL_STREAM_DRAW,35040,,,, -?,0,android/opengl/GLES20.GL_SUBPIXEL_BITS,3408,,,, -?,0,android/opengl/GLES20.GL_TEXTURE,5890,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_2D,3553,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_BINDING_2D,32873,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_BINDING_CUBE_MAP,34068,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP,34067,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,34070,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,34072,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,34074,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_X,34069,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,34071,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_Z,34073,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_MAG_FILTER,10240,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_MIN_FILTER,10241,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_WRAP_S,10242,,,, -?,0,android/opengl/GLES20.GL_TEXTURE_WRAP_T,10243,,,, -?,0,android/opengl/GLES20.GL_TEXTURE0,33984,,,, -?,0,android/opengl/GLES20.GL_TEXTURE1,33985,,,, -?,0,android/opengl/GLES20.GL_TEXTURE10,33994,,,, -?,0,android/opengl/GLES20.GL_TEXTURE11,33995,,,, -?,0,android/opengl/GLES20.GL_TEXTURE12,33996,,,, -?,0,android/opengl/GLES20.GL_TEXTURE13,33997,,,, -?,0,android/opengl/GLES20.GL_TEXTURE14,33998,,,, -?,0,android/opengl/GLES20.GL_TEXTURE15,33999,,,, -?,0,android/opengl/GLES20.GL_TEXTURE16,34000,,,, -?,0,android/opengl/GLES20.GL_TEXTURE17,34001,,,, -?,0,android/opengl/GLES20.GL_TEXTURE18,34002,,,, -?,0,android/opengl/GLES20.GL_TEXTURE19,34003,,,, -?,0,android/opengl/GLES20.GL_TEXTURE2,33986,,,, -?,0,android/opengl/GLES20.GL_TEXTURE20,34004,,,, -?,0,android/opengl/GLES20.GL_TEXTURE21,34005,,,, -?,0,android/opengl/GLES20.GL_TEXTURE22,34006,,,, -?,0,android/opengl/GLES20.GL_TEXTURE23,34007,,,, -?,0,android/opengl/GLES20.GL_TEXTURE24,34008,,,, -?,0,android/opengl/GLES20.GL_TEXTURE25,34009,,,, -?,0,android/opengl/GLES20.GL_TEXTURE26,34010,,,, -?,0,android/opengl/GLES20.GL_TEXTURE27,34011,,,, -?,0,android/opengl/GLES20.GL_TEXTURE28,34012,,,, -?,0,android/opengl/GLES20.GL_TEXTURE29,34013,,,, -?,0,android/opengl/GLES20.GL_TEXTURE3,33987,,,, -?,0,android/opengl/GLES20.GL_TEXTURE30,34014,,,, -?,0,android/opengl/GLES20.GL_TEXTURE31,34015,,,, -?,0,android/opengl/GLES20.GL_TEXTURE4,33988,,,, -?,0,android/opengl/GLES20.GL_TEXTURE5,33989,,,, -?,0,android/opengl/GLES20.GL_TEXTURE6,33990,,,, -?,0,android/opengl/GLES20.GL_TEXTURE7,33991,,,, -?,0,android/opengl/GLES20.GL_TEXTURE8,33992,,,, -?,0,android/opengl/GLES20.GL_TEXTURE9,33993,,,, -?,0,android/opengl/GLES20.GL_TRIANGLE_FAN,6,,,, -?,0,android/opengl/GLES20.GL_TRIANGLE_STRIP,5,,,, -?,0,android/opengl/GLES20.GL_TRIANGLES,4,,,, -?,0,android/opengl/GLES20.GL_TRUE,1,,,, -?,0,android/opengl/GLES20.GL_UNPACK_ALIGNMENT,3317,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_BYTE,5121,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_INT,5125,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_SHORT,5123,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, -?,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_5_6_5,33635,,,, -?,0,android/opengl/GLES20.GL_VALIDATE_STATUS,35715,,,, -?,0,android/opengl/GLES20.GL_VENDOR,7936,,,, -?,0,android/opengl/GLES20.GL_VERSION,7938,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING,34975,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_ENABLED,34338,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_NORMALIZED,34922,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_POINTER,34373,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_SIZE,34339,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_STRIDE,34340,,,, -?,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_TYPE,34341,,,, -?,0,android/opengl/GLES20.GL_VERTEX_SHADER,35633,,,, -?,0,android/opengl/GLES20.GL_VIEWPORT,2978,,,, -?,0,android/opengl/GLES20.GL_ZERO,0,,,, -?,18,android/opengl/GLES30.GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH,35381,,,, -?,18,android/opengl/GLES30.GL_ACTIVE_UNIFORM_BLOCKS,35382,,,, -?,18,android/opengl/GLES30.GL_ALREADY_SIGNALED,37146,,,, -?,18,android/opengl/GLES30.GL_ANY_SAMPLES_PASSED,35887,,,, -?,18,android/opengl/GLES30.GL_ANY_SAMPLES_PASSED_CONSERVATIVE,36202,,,, -?,18,android/opengl/GLES30.GL_BLUE,6405,,,, -?,18,android/opengl/GLES30.GL_BUFFER_ACCESS_FLAGS,37151,,,, -?,18,android/opengl/GLES30.GL_BUFFER_MAP_LENGTH,37152,,,, -?,18,android/opengl/GLES30.GL_BUFFER_MAP_OFFSET,37153,,,, -?,18,android/opengl/GLES30.GL_BUFFER_MAP_POINTER,35005,,,, -?,18,android/opengl/GLES30.GL_BUFFER_MAPPED,35004,,,, -?,18,android/opengl/GLES30.GL_COLOR,6144,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT1,36065,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT10,36074,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT11,36075,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT12,36076,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT13,36077,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT14,36078,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT15,36079,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT2,36066,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT3,36067,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT4,36068,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT5,36069,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT6,36070,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT7,36071,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT8,36072,,,, -?,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT9,36073,,,, -?,18,android/opengl/GLES30.GL_COMPARE_REF_TO_TEXTURE,34894,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_R11_EAC,37488,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_RG11_EAC,37490,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_RGB8_ETC2,37492,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2,37494,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_RGBA8_ETC2_EAC,37496,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_SIGNED_R11_EAC,37489,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_SIGNED_RG11_EAC,37491,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC,37497,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_ETC2,37493,,,, -?,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2,37495,,,, -?,18,android/opengl/GLES30.GL_CONDITION_SATISFIED,37148,,,, -?,18,android/opengl/GLES30.GL_COPY_READ_BUFFER,36662,,,, -?,18,android/opengl/GLES30.GL_COPY_READ_BUFFER_BINDING,36662,,,, -?,18,android/opengl/GLES30.GL_COPY_WRITE_BUFFER,36663,,,, -?,18,android/opengl/GLES30.GL_COPY_WRITE_BUFFER_BINDING,36663,,,, -?,18,android/opengl/GLES30.GL_CURRENT_QUERY,34917,,,, -?,18,android/opengl/GLES30.GL_DEPTH,6145,,,, -?,18,android/opengl/GLES30.GL_DEPTH_COMPONENT24,33190,,,, -?,18,android/opengl/GLES30.GL_DEPTH_COMPONENT32F,36012,,,, -?,18,android/opengl/GLES30.GL_DEPTH_STENCIL,34041,,,, -?,18,android/opengl/GLES30.GL_DEPTH_STENCIL_ATTACHMENT,33306,,,, -?,18,android/opengl/GLES30.GL_DEPTH24_STENCIL8,35056,,,, -?,18,android/opengl/GLES30.GL_DEPTH32F_STENCIL8,36013,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER0,34853,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER1,34854,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER10,34863,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER11,34864,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER12,34865,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER13,34866,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER14,34867,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER15,34868,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER2,34855,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER3,34856,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER4,34857,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER5,34858,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER6,34859,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER7,34860,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER8,34861,,,, -?,18,android/opengl/GLES30.GL_DRAW_BUFFER9,34862,,,, -?,18,android/opengl/GLES30.GL_DRAW_FRAMEBUFFER,36009,,,, -?,18,android/opengl/GLES30.GL_DRAW_FRAMEBUFFER_BINDING,36006,,,, -?,18,android/opengl/GLES30.GL_DYNAMIC_COPY,35050,,,, -?,18,android/opengl/GLES30.GL_DYNAMIC_READ,35049,,,, -?,18,android/opengl/GLES30.GL_FLOAT_32_UNSIGNED_INT_24_8_REV,36269,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT2x3,35685,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT2x4,35686,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT3x2,35687,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT3x4,35688,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT4x2,35689,,,, -?,18,android/opengl/GLES30.GL_FLOAT_MAT4x3,35690,,,, -?,18,android/opengl/GLES30.GL_FRAGMENT_SHADER_DERIVATIVE_HINT,35723,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE,33301,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE,33300,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING,33296,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE,33297,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE,33302,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE,33299,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE,33298,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE,33303,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER,36052,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_DEFAULT,33304,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE,36182,,,, -?,18,android/opengl/GLES30.GL_FRAMEBUFFER_UNDEFINED,33305,,,, -?,18,android/opengl/GLES30.GL_GREEN,6404,,,, -?,18,android/opengl/GLES30.GL_HALF_FLOAT,5131,,,, -?,18,android/opengl/GLES30.GL_INT_2_10_10_10_REV,36255,,,, -?,18,android/opengl/GLES30.GL_INT_SAMPLER_2D,36298,,,, -?,18,android/opengl/GLES30.GL_INT_SAMPLER_2D_ARRAY,36303,,,, -?,18,android/opengl/GLES30.GL_INT_SAMPLER_3D,36299,,,, -?,18,android/opengl/GLES30.GL_INT_SAMPLER_CUBE,36300,,,, -?,18,android/opengl/GLES30.GL_INTERLEAVED_ATTRIBS,35980,,,, -?,18,android/opengl/GLES30.GL_INVALID_INDEX,-1,,,, -?,18,android/opengl/GLES30.GL_MAJOR_VERSION,33307,,,, -?,18,android/opengl/GLES30.GL_MAP_FLUSH_EXPLICIT_BIT,16,,,, -?,18,android/opengl/GLES30.GL_MAP_INVALIDATE_BUFFER_BIT,8,,,, -?,18,android/opengl/GLES30.GL_MAP_INVALIDATE_RANGE_BIT,4,,,, -?,18,android/opengl/GLES30.GL_MAP_READ_BIT,1,,,, -?,18,android/opengl/GLES30.GL_MAP_UNSYNCHRONIZED_BIT,32,,,, -?,18,android/opengl/GLES30.GL_MAP_WRITE_BIT,2,,,, -?,18,android/opengl/GLES30.GL_MAX,32776,,,, -?,18,android/opengl/GLES30.GL_MAX_3D_TEXTURE_SIZE,32883,,,, -?,18,android/opengl/GLES30.GL_MAX_ARRAY_TEXTURE_LAYERS,35071,,,, -?,18,android/opengl/GLES30.GL_MAX_COLOR_ATTACHMENTS,36063,,,, -?,18,android/opengl/GLES30.GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS,35379,,,, -?,18,android/opengl/GLES30.GL_MAX_COMBINED_UNIFORM_BLOCKS,35374,,,, -?,18,android/opengl/GLES30.GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS,35377,,,, -?,18,android/opengl/GLES30.GL_MAX_DRAW_BUFFERS,34852,,,, -?,18,android/opengl/GLES30.GL_MAX_ELEMENT_INDEX,36203,,,, -?,18,android/opengl/GLES30.GL_MAX_ELEMENTS_INDICES,33001,,,, -?,18,android/opengl/GLES30.GL_MAX_ELEMENTS_VERTICES,33000,,,, -?,18,android/opengl/GLES30.GL_MAX_FRAGMENT_INPUT_COMPONENTS,37157,,,, -?,18,android/opengl/GLES30.GL_MAX_FRAGMENT_UNIFORM_BLOCKS,35373,,,, -?,18,android/opengl/GLES30.GL_MAX_FRAGMENT_UNIFORM_COMPONENTS,35657,,,, -?,18,android/opengl/GLES30.GL_MAX_PROGRAM_TEXEL_OFFSET,35077,,,, -?,18,android/opengl/GLES30.GL_MAX_SAMPLES,36183,,,, -?,18,android/opengl/GLES30.GL_MAX_SERVER_WAIT_TIMEOUT,37137,,,, -?,18,android/opengl/GLES30.GL_MAX_TEXTURE_LOD_BIAS,34045,,,, -?,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS,35978,,,, -?,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS,35979,,,, -?,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS,35968,,,, -?,18,android/opengl/GLES30.GL_MAX_UNIFORM_BLOCK_SIZE,35376,,,, -?,18,android/opengl/GLES30.GL_MAX_UNIFORM_BUFFER_BINDINGS,35375,,,, -?,18,android/opengl/GLES30.GL_MAX_VARYING_COMPONENTS,35659,,,, -?,18,android/opengl/GLES30.GL_MAX_VERTEX_OUTPUT_COMPONENTS,37154,,,, -?,18,android/opengl/GLES30.GL_MAX_VERTEX_UNIFORM_BLOCKS,35371,,,, -?,18,android/opengl/GLES30.GL_MAX_VERTEX_UNIFORM_COMPONENTS,35658,,,, -?,18,android/opengl/GLES30.GL_MIN,32775,,,, -?,18,android/opengl/GLES30.GL_MIN_PROGRAM_TEXEL_OFFSET,35076,,,, -?,18,android/opengl/GLES30.GL_MINOR_VERSION,33308,,,, -?,18,android/opengl/GLES30.GL_NUM_EXTENSIONS,33309,,,, -?,18,android/opengl/GLES30.GL_NUM_PROGRAM_BINARY_FORMATS,34814,,,, -?,18,android/opengl/GLES30.GL_NUM_SAMPLE_COUNTS,37760,,,, -?,18,android/opengl/GLES30.GL_OBJECT_TYPE,37138,,,, -?,18,android/opengl/GLES30.GL_PACK_ROW_LENGTH,3330,,,, -?,18,android/opengl/GLES30.GL_PACK_SKIP_PIXELS,3332,,,, -?,18,android/opengl/GLES30.GL_PACK_SKIP_ROWS,3331,,,, -?,18,android/opengl/GLES30.GL_PIXEL_PACK_BUFFER,35051,,,, -?,18,android/opengl/GLES30.GL_PIXEL_PACK_BUFFER_BINDING,35053,,,, -?,18,android/opengl/GLES30.GL_PIXEL_UNPACK_BUFFER,35052,,,, -?,18,android/opengl/GLES30.GL_PIXEL_UNPACK_BUFFER_BINDING,35055,,,, -?,18,android/opengl/GLES30.GL_PRIMITIVE_RESTART_FIXED_INDEX,36201,,,, -?,18,android/opengl/GLES30.GL_PROGRAM_BINARY_FORMATS,34815,,,, -?,18,android/opengl/GLES30.GL_PROGRAM_BINARY_LENGTH,34625,,,, -?,18,android/opengl/GLES30.GL_PROGRAM_BINARY_RETRIEVABLE_HINT,33367,,,, -?,18,android/opengl/GLES30.GL_QUERY_RESULT,34918,,,, -?,18,android/opengl/GLES30.GL_QUERY_RESULT_AVAILABLE,34919,,,, -?,18,android/opengl/GLES30.GL_R11F_G11F_B10F,35898,,,, -?,18,android/opengl/GLES30.GL_R16F,33325,,,, -?,18,android/opengl/GLES30.GL_R16I,33331,,,, -?,18,android/opengl/GLES30.GL_R16UI,33332,,,, -?,18,android/opengl/GLES30.GL_R32F,33326,,,, -?,18,android/opengl/GLES30.GL_R32I,33333,,,, -?,18,android/opengl/GLES30.GL_R32UI,33334,,,, -?,18,android/opengl/GLES30.GL_R8,33321,,,, -?,18,android/opengl/GLES30.GL_R8_SNORM,36756,,,, -?,18,android/opengl/GLES30.GL_R8I,33329,,,, -?,18,android/opengl/GLES30.GL_R8UI,33330,,,, -?,18,android/opengl/GLES30.GL_RASTERIZER_DISCARD,35977,,,, -?,18,android/opengl/GLES30.GL_READ_BUFFER,3074,,,, -?,18,android/opengl/GLES30.GL_READ_FRAMEBUFFER,36008,,,, -?,18,android/opengl/GLES30.GL_READ_FRAMEBUFFER_BINDING,36010,,,, -?,18,android/opengl/GLES30.GL_RED,6403,,,, -?,18,android/opengl/GLES30.GL_RED_INTEGER,36244,,,, -?,18,android/opengl/GLES30.GL_RENDERBUFFER_SAMPLES,36011,,,, -?,18,android/opengl/GLES30.GL_RG,33319,,,, -?,18,android/opengl/GLES30.GL_RG_INTEGER,33320,,,, -?,18,android/opengl/GLES30.GL_RG16F,33327,,,, -?,18,android/opengl/GLES30.GL_RG16I,33337,,,, -?,18,android/opengl/GLES30.GL_RG16UI,33338,,,, -?,18,android/opengl/GLES30.GL_RG32F,33328,,,, -?,18,android/opengl/GLES30.GL_RG32I,33339,,,, -?,18,android/opengl/GLES30.GL_RG32UI,33340,,,, -?,18,android/opengl/GLES30.GL_RG8,33323,,,, -?,18,android/opengl/GLES30.GL_RG8_SNORM,36757,,,, -?,18,android/opengl/GLES30.GL_RG8I,33335,,,, -?,18,android/opengl/GLES30.GL_RG8UI,33336,,,, -?,18,android/opengl/GLES30.GL_RGB_INTEGER,36248,,,, -?,18,android/opengl/GLES30.GL_RGB10_A2,32857,,,, -?,18,android/opengl/GLES30.GL_RGB10_A2UI,36975,,,, -?,18,android/opengl/GLES30.GL_RGB16F,34843,,,, -?,18,android/opengl/GLES30.GL_RGB16I,36233,,,, -?,18,android/opengl/GLES30.GL_RGB16UI,36215,,,, -?,18,android/opengl/GLES30.GL_RGB32F,34837,,,, -?,18,android/opengl/GLES30.GL_RGB32I,36227,,,, -?,18,android/opengl/GLES30.GL_RGB32UI,36209,,,, -?,18,android/opengl/GLES30.GL_RGB8,32849,,,, -?,18,android/opengl/GLES30.GL_RGB8_SNORM,36758,,,, -?,18,android/opengl/GLES30.GL_RGB8I,36239,,,, -?,18,android/opengl/GLES30.GL_RGB8UI,36221,,,, -?,18,android/opengl/GLES30.GL_RGB9_E5,35901,,,, -?,18,android/opengl/GLES30.GL_RGBA_INTEGER,36249,,,, -?,18,android/opengl/GLES30.GL_RGBA16F,34842,,,, -?,18,android/opengl/GLES30.GL_RGBA16I,36232,,,, -?,18,android/opengl/GLES30.GL_RGBA16UI,36214,,,, -?,18,android/opengl/GLES30.GL_RGBA32F,34836,,,, -?,18,android/opengl/GLES30.GL_RGBA32I,36226,,,, -?,18,android/opengl/GLES30.GL_RGBA32UI,36208,,,, -?,18,android/opengl/GLES30.GL_RGBA8,32856,,,, -?,18,android/opengl/GLES30.GL_RGBA8_SNORM,36759,,,, -?,18,android/opengl/GLES30.GL_RGBA8I,36238,,,, -?,18,android/opengl/GLES30.GL_RGBA8UI,36220,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_2D_ARRAY,36289,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_2D_ARRAY_SHADOW,36292,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_2D_SHADOW,35682,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_3D,35679,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_BINDING,35097,,,, -?,18,android/opengl/GLES30.GL_SAMPLER_CUBE_SHADOW,36293,,,, -?,18,android/opengl/GLES30.GL_SEPARATE_ATTRIBS,35981,,,, -?,18,android/opengl/GLES30.GL_SIGNALED,37145,,,, -?,18,android/opengl/GLES30.GL_SIGNED_NORMALIZED,36764,,,, -?,18,android/opengl/GLES30.GL_SRGB,35904,,,, -?,18,android/opengl/GLES30.GL_SRGB8,35905,,,, -?,18,android/opengl/GLES30.GL_SRGB8_ALPHA8,35907,,,, -?,18,android/opengl/GLES30.GL_STATIC_COPY,35046,,,, -?,18,android/opengl/GLES30.GL_STATIC_READ,35045,,,, -?,18,android/opengl/GLES30.GL_STENCIL,6146,,,, -?,18,android/opengl/GLES30.GL_STREAM_COPY,35042,,,, -?,18,android/opengl/GLES30.GL_STREAM_READ,35041,,,, -?,18,android/opengl/GLES30.GL_SYNC_CONDITION,37139,,,, -?,18,android/opengl/GLES30.GL_SYNC_FENCE,37142,,,, -?,18,android/opengl/GLES30.GL_SYNC_FLAGS,37141,,,, -?,18,android/opengl/GLES30.GL_SYNC_FLUSH_COMMANDS_BIT,1,,,, -?,18,android/opengl/GLES30.GL_SYNC_GPU_COMMANDS_COMPLETE,37143,,,, -?,18,android/opengl/GLES30.GL_SYNC_STATUS,37140,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_2D_ARRAY,35866,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_3D,32879,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_BASE_LEVEL,33084,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_BINDING_2D_ARRAY,35869,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_BINDING_3D,32874,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_COMPARE_FUNC,34893,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_COMPARE_MODE,34892,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_IMMUTABLE_FORMAT,37167,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_IMMUTABLE_LEVELS,33503,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_MAX_LEVEL,33085,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_MAX_LOD,33083,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_MIN_LOD,33082,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_A,36421,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_B,36420,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_G,36419,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_R,36418,,,, -?,18,android/opengl/GLES30.GL_TEXTURE_WRAP_R,32882,,,, -?,18,android/opengl/GLES30.GL_TIMEOUT_EXPIRED,37147,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK,36386,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_ACTIVE,36388,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BINDING,36389,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER,35982,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_BINDING,35983,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_MODE,35967,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_SIZE,35973,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_START,35972,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_PAUSED,36387,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN,35976,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH,35958,,,, -?,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_VARYINGS,35971,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_ARRAY_STRIDE,35388,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES,35395,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS,35394,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_BINDING,35391,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_DATA_SIZE,35392,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_INDEX,35386,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_NAME_LENGTH,35393,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER,35398,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER,35396,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BUFFER,35345,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_BINDING,35368,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT,35380,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_SIZE,35370,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_START,35369,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_IS_ROW_MAJOR,35390,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_MATRIX_STRIDE,35389,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_NAME_LENGTH,35385,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_OFFSET,35387,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_SIZE,35384,,,, -?,18,android/opengl/GLES30.GL_UNIFORM_TYPE,35383,,,, -?,18,android/opengl/GLES30.GL_UNPACK_IMAGE_HEIGHT,32878,,,, -?,18,android/opengl/GLES30.GL_UNPACK_ROW_LENGTH,3314,,,, -?,18,android/opengl/GLES30.GL_UNPACK_SKIP_IMAGES,32877,,,, -?,18,android/opengl/GLES30.GL_UNPACK_SKIP_PIXELS,3316,,,, -?,18,android/opengl/GLES30.GL_UNPACK_SKIP_ROWS,3315,,,, -?,18,android/opengl/GLES30.GL_UNSIGNALED,37144,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_10F_11F_11F_REV,35899,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_2_10_10_10_REV,33640,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_24_8,34042,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_5_9_9_9_REV,35902,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_2D,36306,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_2D_ARRAY,36311,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_3D,36307,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_CUBE,36308,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC2,36294,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC3,36295,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC4,36296,,,, -?,18,android/opengl/GLES30.GL_UNSIGNED_NORMALIZED,35863,,,, -?,18,android/opengl/GLES30.GL_VERTEX_ARRAY_BINDING,34229,,,, -?,18,android/opengl/GLES30.GL_VERTEX_ATTRIB_ARRAY_DIVISOR,35070,,,, -?,18,android/opengl/GLES30.GL_VERTEX_ATTRIB_ARRAY_INTEGER,35069,,,, -?,18,android/opengl/GLES30.GL_WAIT_FAILED,37149,,,, -?,21,android/opengl/GLES31.GL_ACTIVE_ATOMIC_COUNTER_BUFFERS,37593,,,, -?,21,android/opengl/GLES31.GL_ACTIVE_PROGRAM,33369,,,, -?,21,android/opengl/GLES31.GL_ACTIVE_RESOURCES,37621,,,, -?,21,android/opengl/GLES31.GL_ACTIVE_VARIABLES,37637,,,, -?,24,android/opengl/GLES31.GL_ALL_BARRIER_BITS,-1,,,, -?,21,android/opengl/GLES31.GL_ALL_SHADER_BITS,-1,,,, -?,21,android/opengl/GLES31.GL_ARRAY_SIZE,37627,,,, -?,21,android/opengl/GLES31.GL_ARRAY_STRIDE,37630,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BARRIER_BIT,4096,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER,37568,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_BINDING,37569,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_INDEX,37633,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_SIZE,37571,,,, -?,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_START,37570,,,, -?,21,android/opengl/GLES31.GL_BLOCK_INDEX,37629,,,, -?,21,android/opengl/GLES31.GL_BUFFER_BINDING,37634,,,, -?,21,android/opengl/GLES31.GL_BUFFER_DATA_SIZE,37635,,,, -?,21,android/opengl/GLES31.GL_BUFFER_UPDATE_BARRIER_BIT,512,,,, -?,21,android/opengl/GLES31.GL_BUFFER_VARIABLE,37605,,,, -?,21,android/opengl/GLES31.GL_COMMAND_BARRIER_BIT,64,,,, -?,21,android/opengl/GLES31.GL_COMPUTE_SHADER,37305,,,, -?,21,android/opengl/GLES31.GL_COMPUTE_SHADER_BIT,32,,,, -?,21,android/opengl/GLES31.GL_COMPUTE_WORK_GROUP_SIZE,33383,,,, -?,21,android/opengl/GLES31.GL_DEPTH_STENCIL_TEXTURE_MODE,37098,,,, -?,21,android/opengl/GLES31.GL_DISPATCH_INDIRECT_BUFFER,37102,,,, -?,21,android/opengl/GLES31.GL_DISPATCH_INDIRECT_BUFFER_BINDING,37103,,,, -?,21,android/opengl/GLES31.GL_DRAW_INDIRECT_BUFFER,36671,,,, -?,21,android/opengl/GLES31.GL_DRAW_INDIRECT_BUFFER_BINDING,36675,,,, -?,24,android/opengl/GLES31.GL_ELEMENT_ARRAY_BARRIER_BIT,2,,,, -?,21,android/opengl/GLES31.GL_FRAGMENT_SHADER_BIT,2,,,, -?,21,android/opengl/GLES31.GL_FRAMEBUFFER_BARRIER_BIT,1024,,,, -?,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS,37652,,,, -?,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_HEIGHT,37649,,,, -?,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_SAMPLES,37651,,,, -?,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_WIDTH,37648,,,, -?,21,android/opengl/GLES31.GL_IMAGE_2D,36941,,,, -?,21,android/opengl/GLES31.GL_IMAGE_2D_ARRAY,36947,,,, -?,21,android/opengl/GLES31.GL_IMAGE_3D,36942,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_ACCESS,36670,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_FORMAT,36974,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_LAYER,36669,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_LAYERED,36668,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_LEVEL,36667,,,, -?,21,android/opengl/GLES31.GL_IMAGE_BINDING_NAME,36666,,,, -?,21,android/opengl/GLES31.GL_IMAGE_CUBE,36944,,,, -?,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS,37065,,,, -?,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE,37064,,,, -?,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_TYPE,37063,,,, -?,21,android/opengl/GLES31.GL_INT_IMAGE_2D,36952,,,, -?,21,android/opengl/GLES31.GL_INT_IMAGE_2D_ARRAY,36958,,,, -?,21,android/opengl/GLES31.GL_INT_IMAGE_3D,36953,,,, -?,21,android/opengl/GLES31.GL_INT_IMAGE_CUBE,36955,,,, -?,21,android/opengl/GLES31.GL_INT_SAMPLER_2D_MULTISAMPLE,37129,,,, -?,21,android/opengl/GLES31.GL_IS_ROW_MAJOR,37632,,,, -?,21,android/opengl/GLES31.GL_LOCATION,37646,,,, -?,21,android/opengl/GLES31.GL_MATRIX_STRIDE,37631,,,, -?,21,android/opengl/GLES31.GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS,37596,,,, -?,21,android/opengl/GLES31.GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE,37592,,,, -?,21,android/opengl/GLES31.GL_MAX_COLOR_TEXTURE_SAMPLES,37134,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS,37585,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_ATOMIC_COUNTERS,37591,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS,33382,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_IMAGE_UNIFORMS,37071,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES,36665,,,, -?,21,android/opengl/GLES31.GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS,37084,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS,33380,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_ATOMIC_COUNTERS,33381,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_IMAGE_UNIFORMS,37309,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS,37083,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_SHARED_MEMORY_SIZE,33378,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS,37308,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_UNIFORM_BLOCKS,37307,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_UNIFORM_COMPONENTS,33379,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_COUNT,37310,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS,37099,,,, -?,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_SIZE,37311,,,, -?,21,android/opengl/GLES31.GL_MAX_DEPTH_TEXTURE_SAMPLES,37135,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS,37584,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAGMENT_ATOMIC_COUNTERS,37590,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAGMENT_IMAGE_UNIFORMS,37070,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS,37082,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_HEIGHT,37654,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_SAMPLES,37656,,,, -?,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_WIDTH,37653,,,, -?,21,android/opengl/GLES31.GL_MAX_IMAGE_UNITS,36664,,,, -?,21,android/opengl/GLES31.GL_MAX_INTEGER_SAMPLES,37136,,,, -?,21,android/opengl/GLES31.GL_MAX_NAME_LENGTH,37622,,,, -?,21,android/opengl/GLES31.GL_MAX_NUM_ACTIVE_VARIABLES,37623,,,, -?,21,android/opengl/GLES31.GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET,36447,,,, -?,21,android/opengl/GLES31.GL_MAX_SAMPLE_MASK_WORDS,36441,,,, -?,21,android/opengl/GLES31.GL_MAX_SHADER_STORAGE_BLOCK_SIZE,37086,,,, -?,21,android/opengl/GLES31.GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS,37085,,,, -?,21,android/opengl/GLES31.GL_MAX_UNIFORM_LOCATIONS,33390,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS,37580,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_ATOMIC_COUNTERS,37586,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_BINDINGS,33498,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET,33497,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_STRIDE,33509,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_IMAGE_UNIFORMS,37066,,,, -?,21,android/opengl/GLES31.GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS,37078,,,, -?,21,android/opengl/GLES31.GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET,36446,,,, -?,21,android/opengl/GLES31.GL_NAME_LENGTH,37625,,,, -?,21,android/opengl/GLES31.GL_NUM_ACTIVE_VARIABLES,37636,,,, -?,21,android/opengl/GLES31.GL_OFFSET,37628,,,, -?,21,android/opengl/GLES31.GL_PIXEL_BUFFER_BARRIER_BIT,128,,,, -?,21,android/opengl/GLES31.GL_PROGRAM_INPUT,37603,,,, -?,21,android/opengl/GLES31.GL_PROGRAM_OUTPUT,37604,,,, -?,21,android/opengl/GLES31.GL_PROGRAM_PIPELINE_BINDING,33370,,,, -?,21,android/opengl/GLES31.GL_PROGRAM_SEPARABLE,33368,,,, -?,21,android/opengl/GLES31.GL_READ_ONLY,35000,,,, -?,21,android/opengl/GLES31.GL_READ_WRITE,35002,,,, -?,21,android/opengl/GLES31.GL_REFERENCED_BY_COMPUTE_SHADER,37643,,,, -?,21,android/opengl/GLES31.GL_REFERENCED_BY_FRAGMENT_SHADER,37642,,,, -?,21,android/opengl/GLES31.GL_REFERENCED_BY_VERTEX_SHADER,37638,,,, -?,21,android/opengl/GLES31.GL_SAMPLE_MASK,36433,,,, -?,21,android/opengl/GLES31.GL_SAMPLE_MASK_VALUE,36434,,,, -?,21,android/opengl/GLES31.GL_SAMPLE_POSITION,36432,,,, -?,21,android/opengl/GLES31.GL_SAMPLER_2D_MULTISAMPLE,37128,,,, -?,24,android/opengl/GLES31.GL_SHADER_IMAGE_ACCESS_BARRIER_BIT,32,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BARRIER_BIT,8192,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BLOCK,37606,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER,37074,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_BINDING,37075,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT,37087,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_SIZE,37077,,,, -?,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_START,37076,,,, -?,21,android/opengl/GLES31.GL_STENCIL_INDEX,6401,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_2D_MULTISAMPLE,37120,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_ALPHA_SIZE,32863,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_ALPHA_TYPE,35859,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_BINDING_2D_MULTISAMPLE,37124,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_BLUE_SIZE,32862,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_BLUE_TYPE,35858,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_COMPRESSED,34465,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_DEPTH,32881,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_DEPTH_SIZE,34890,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_DEPTH_TYPE,35862,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_FETCH_BARRIER_BIT,8,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_FIXED_SAMPLE_LOCATIONS,37127,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_GREEN_SIZE,32861,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_GREEN_TYPE,35857,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_HEIGHT,4097,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_INTERNAL_FORMAT,4099,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_RED_SIZE,32860,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_RED_TYPE,35856,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_SAMPLES,37126,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_SHARED_SIZE,35903,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_STENCIL_SIZE,35057,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_UPDATE_BARRIER_BIT,256,,,, -?,21,android/opengl/GLES31.GL_TEXTURE_WIDTH,4096,,,, -?,21,android/opengl/GLES31.GL_TOP_LEVEL_ARRAY_SIZE,37644,,,, -?,21,android/opengl/GLES31.GL_TOP_LEVEL_ARRAY_STRIDE,37645,,,, -?,21,android/opengl/GLES31.GL_TRANSFORM_FEEDBACK_BARRIER_BIT,2048,,,, -?,21,android/opengl/GLES31.GL_TRANSFORM_FEEDBACK_VARYING,37620,,,, -?,21,android/opengl/GLES31.GL_TYPE,37626,,,, -?,21,android/opengl/GLES31.GL_UNIFORM,37601,,,, -?,21,android/opengl/GLES31.GL_UNIFORM_BARRIER_BIT,4,,,, -?,21,android/opengl/GLES31.GL_UNIFORM_BLOCK,37602,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_ATOMIC_COUNTER,37595,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_2D,36963,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_2D_ARRAY,36969,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_3D,36964,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_CUBE,36966,,,, -?,21,android/opengl/GLES31.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE,37130,,,, -?,24,android/opengl/GLES31.GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT,1,,,, -?,21,android/opengl/GLES31.GL_VERTEX_ATTRIB_BINDING,33492,,,, -?,21,android/opengl/GLES31.GL_VERTEX_ATTRIB_RELATIVE_OFFSET,33493,,,, -?,21,android/opengl/GLES31.GL_VERTEX_BINDING_BUFFER,36687,,,, -?,21,android/opengl/GLES31.GL_VERTEX_BINDING_DIVISOR,33494,,,, -?,21,android/opengl/GLES31.GL_VERTEX_BINDING_OFFSET,33495,,,, -?,21,android/opengl/GLES31.GL_VERTEX_BINDING_STRIDE,33496,,,, -?,21,android/opengl/GLES31.GL_VERTEX_SHADER_BIT,1,,,, -?,21,android/opengl/GLES31.GL_WRITE_ONLY,35001,,,, -?,21,android/opengl/GLES31Ext.GL_BLEND_ADVANCED_COHERENT_KHR,37509,,,, -?,21,android/opengl/GLES31Ext.GL_BUFFER_KHR,33504,,,, -?,21,android/opengl/GLES31Ext.GL_CLAMP_TO_BORDER_EXT,33069,,,, -?,21,android/opengl/GLES31Ext.GL_COLORBURN_KHR,37530,,,, -?,21,android/opengl/GLES31Ext.GL_COLORDODGE_KHR,37529,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x10_KHR,37819,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x5_KHR,37816,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x6_KHR,37817,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x8_KHR,37818,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_12x10_KHR,37820,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_12x12_KHR,37821,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_4x4_KHR,37808,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_5x4_KHR,37809,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_5x5_KHR,37810,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_6x5_KHR,37811,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_6x6_KHR,37812,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x5_KHR,37813,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x6_KHR,37814,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x8_KHR,37815,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR,37851,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR,37848,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR,37849,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR,37850,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR,37852,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR,37853,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR,37840,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR,37841,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR,37842,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR,37843,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR,37844,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR,37845,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR,37846,,,, -?,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR,37847,,,, -?,21,android/opengl/GLES31Ext.GL_CONTEXT_FLAG_DEBUG_BIT_KHR,2,,,, -?,21,android/opengl/GLES31Ext.GL_DARKEN_KHR,37527,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_CALLBACK_FUNCTION_KHR,33348,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_CALLBACK_USER_PARAM_KHR,33349,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_GROUP_STACK_DEPTH_KHR,33389,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_LOGGED_MESSAGES_KHR,37189,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR,33347,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_OUTPUT_KHR,37600,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR,33346,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_HIGH_KHR,37190,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_LOW_KHR,37192,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_MEDIUM_KHR,37191,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_NOTIFICATION_KHR,33387,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_API_KHR,33350,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_APPLICATION_KHR,33354,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_OTHER_KHR,33355,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_SHADER_COMPILER_KHR,33352,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_THIRD_PARTY_KHR,33353,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR,33351,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR,33357,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_ERROR_KHR,33356,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_MARKER_KHR,33384,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_OTHER_KHR,33361,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PERFORMANCE_KHR,33360,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_POP_GROUP_KHR,33386,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PORTABILITY_KHR,33359,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PUSH_GROUP_KHR,33385,,,, -?,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR,33358,,,, -?,21,android/opengl/GLES31Ext.GL_DECODE_EXT,35401,,,, -?,21,android/opengl/GLES31Ext.GL_DIFFERENCE_KHR,37534,,,, -?,21,android/opengl/GLES31Ext.GL_EXCLUSION_KHR,37536,,,, -?,21,android/opengl/GLES31Ext.GL_FIRST_VERTEX_CONVENTION_EXT,36429,,,, -?,21,android/opengl/GLES31Ext.GL_FRACTIONAL_EVEN_EXT,36476,,,, -?,21,android/opengl/GLES31Ext.GL_FRACTIONAL_ODD_EXT,36475,,,, -?,21,android/opengl/GLES31Ext.GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES,36445,,,, -?,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT,36263,,,, -?,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT,37650,,,, -?,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT,36264,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_INPUT_TYPE_EXT,35095,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT,35096,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_VERTICES_OUT_EXT,35094,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_BIT_EXT,4,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_EXT,36313,,,, -?,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_INVOCATIONS_EXT,34943,,,, -?,21,android/opengl/GLES31Ext.GL_HARDLIGHT_KHR,37531,,,, -?,21,android/opengl/GLES31Ext.GL_HSL_COLOR_KHR,37551,,,, -?,21,android/opengl/GLES31Ext.GL_HSL_HUE_KHR,37549,,,, -?,21,android/opengl/GLES31Ext.GL_HSL_LUMINOSITY_KHR,37552,,,, -?,21,android/opengl/GLES31Ext.GL_HSL_SATURATION_KHR,37550,,,, -?,21,android/opengl/GLES31Ext.GL_IMAGE_BUFFER_EXT,36945,,,, -?,21,android/opengl/GLES31Ext.GL_IMAGE_CUBE_MAP_ARRAY_EXT,36948,,,, -?,21,android/opengl/GLES31Ext.GL_INT_IMAGE_BUFFER_EXT,36956,,,, -?,21,android/opengl/GLES31Ext.GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT,36959,,,, -?,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37132,,,, -?,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_BUFFER_EXT,36304,,,, -?,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT,36878,,,, -?,21,android/opengl/GLES31Ext.GL_IS_PER_PATCH_EXT,37607,,,, -?,21,android/opengl/GLES31Ext.GL_ISOLINES_EXT,36474,,,, -?,21,android/opengl/GLES31Ext.GL_LAST_VERTEX_CONVENTION_EXT,36430,,,, -?,21,android/opengl/GLES31Ext.GL_LAYER_PROVOKING_VERTEX_EXT,33374,,,, -?,21,android/opengl/GLES31Ext.GL_LIGHTEN_KHR,37528,,,, -?,21,android/opengl/GLES31Ext.GL_LINE_STRIP_ADJACENCY_EXT,11,,,, -?,21,android/opengl/GLES31Ext.GL_LINES_ADJACENCY_EXT,10,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT,35378,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT,36382,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT,36383,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR,33388,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_LOGGED_MESSAGES_KHR,37188,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_MESSAGE_LENGTH_KHR,37187,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES,36444,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_FRAMEBUFFER_LAYERS_EXT,37655,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT,37583,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT,37589,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT,37069,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT,37155,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT,37156,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT,36320,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT,36442,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT,37079,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT,35881,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT,36321,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT,35372,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT,36319,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_LABEL_LENGTH_KHR,33512,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_PATCH_VERTICES_EXT,36477,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT,37581,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT,37587,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT,37067,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT,34924,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT,36483,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT,37080,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT,36481,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT,36485,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT,36489,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT,36479,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT,37582,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT,37588,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT,37068,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT,34925,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT,36486,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT,37081,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT,36482,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT,36490,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT,36480,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_GEN_LEVEL_EXT,36478,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TESS_PATCH_COMPONENTS_EXT,36484,,,, -?,21,android/opengl/GLES31Ext.GL_MAX_TEXTURE_BUFFER_SIZE_EXT,35883,,,, -?,21,android/opengl/GLES31Ext.GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES,36443,,,, -?,21,android/opengl/GLES31Ext.GL_MIN_SAMPLE_SHADING_VALUE_OES,35895,,,, -?,21,android/opengl/GLES31Ext.GL_MULTIPLY_KHR,37524,,,, -?,21,android/opengl/GLES31Ext.GL_OVERLAY_KHR,37526,,,, -?,21,android/opengl/GLES31Ext.GL_PATCH_VERTICES_EXT,36466,,,, -?,21,android/opengl/GLES31Ext.GL_PATCHES_EXT,14,,,, -?,21,android/opengl/GLES31Ext.GL_PRIMITIVE_BOUNDING_BOX_EXT,37566,,,, -?,21,android/opengl/GLES31Ext.GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED,33313,,,, -?,21,android/opengl/GLES31Ext.GL_PRIMITIVES_GENERATED_EXT,35975,,,, -?,21,android/opengl/GLES31Ext.GL_PROGRAM_KHR,33506,,,, -?,21,android/opengl/GLES31Ext.GL_QUADS_EXT,7,,,, -?,21,android/opengl/GLES31Ext.GL_QUERY_KHR,33507,,,, -?,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_GEOMETRY_SHADER_EXT,37641,,,, -?,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT,37639,,,, -?,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT,37640,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLE_SHADING_OES,35894,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37131,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLER_BUFFER_EXT,36290,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLER_CUBE_MAP_ARRAY_EXT,36876,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT,36877,,,, -?,21,android/opengl/GLES31Ext.GL_SAMPLER_KHR,33510,,,, -?,21,android/opengl/GLES31Ext.GL_SCREEN_KHR,37525,,,, -?,21,android/opengl/GLES31Ext.GL_SHADER_KHR,33505,,,, -?,21,android/opengl/GLES31Ext.GL_SKIP_DECODE_EXT,35402,,,, -?,21,android/opengl/GLES31Ext.GL_SOFTLIGHT_KHR,37532,,,, -?,21,android/opengl/GLES31Ext.GL_STACK_OVERFLOW_KHR,1283,,,, -?,21,android/opengl/GLES31Ext.GL_STACK_UNDERFLOW_KHR,1284,,,, -?,21,android/opengl/GLES31Ext.GL_STENCIL_INDEX_OES,6401,,,, -?,21,android/opengl/GLES31Ext.GL_STENCIL_INDEX8_OES,36168,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_OUTPUT_VERTICES_EXT,36469,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_SHADER_BIT_EXT,8,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_SHADER_EXT,36488,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_EVALUATION_SHADER_BIT_EXT,16,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_EVALUATION_SHADER_EXT,36487,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_GEN_MODE_EXT,36470,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_GEN_POINT_MODE_EXT,36473,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_GEN_SPACING_EXT,36471,,,, -?,21,android/opengl/GLES31Ext.GL_TESS_GEN_VERTEX_ORDER_EXT,36472,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES,37122,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES,37125,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_BUFFER_EXT,35884,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT,36874,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BORDER_COLOR_EXT,4100,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_BINDING_EXT,35882,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT,35885,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_EXT,35882,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT,37279,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_OFFSET_EXT,37277,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_SIZE_EXT,37278,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_CUBE_MAP_ARRAY_EXT,36873,,,, -?,21,android/opengl/GLES31Ext.GL_TEXTURE_SRGB_DECODE_EXT,35400,,,, -?,21,android/opengl/GLES31Ext.GL_TRIANGLE_STRIP_ADJACENCY_EXT,13,,,, -?,21,android/opengl/GLES31Ext.GL_TRIANGLES_ADJACENCY_EXT,12,,,, -?,21,android/opengl/GLES31Ext.GL_UNDEFINED_VERTEX_EXT,33376,,,, -?,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_IMAGE_BUFFER_EXT,36967,,,, -?,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT,36970,,,, -?,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37133,,,, -?,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT,36312,,,, -?,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT,36879,,,, -?,21,android/opengl/GLES31Ext.GL_VERTEX_ARRAY_KHR,32884,,,, -?,24,android/opengl/GLES32.GL_BUFFER,33504,,,, -?,24,android/opengl/GLES32.GL_CLAMP_TO_BORDER,33069,,,, -?,24,android/opengl/GLES32.GL_COLORBURN,37530,,,, -?,24,android/opengl/GLES32.GL_COLORDODGE,37529,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x10,37819,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x5,37816,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x6,37817,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x8,37818,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_12x10,37820,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_12x12,37821,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_4x4,37808,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_5x4,37809,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_5x5,37810,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_6x5,37811,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_6x6,37812,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x5,37813,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x6,37814,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x8,37815,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10,37851,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5,37848,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6,37849,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8,37850,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10,37852,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12,37853,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4,37840,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4,37841,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5,37842,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5,37843,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6,37844,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5,37845,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6,37846,,,, -?,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8,37847,,,, -?,24,android/opengl/GLES32.GL_CONTEXT_FLAG_DEBUG_BIT,2,,,, -?,24,android/opengl/GLES32.GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT,4,,,, -?,24,android/opengl/GLES32.GL_CONTEXT_FLAGS,33310,,,, -?,24,android/opengl/GLES32.GL_CONTEXT_LOST,1287,,,, -?,24,android/opengl/GLES32.GL_DARKEN,37527,,,, -?,24,android/opengl/GLES32.GL_DEBUG_CALLBACK_FUNCTION,33348,,,, -?,24,android/opengl/GLES32.GL_DEBUG_CALLBACK_USER_PARAM,33349,,,, -?,24,android/opengl/GLES32.GL_DEBUG_GROUP_STACK_DEPTH,33389,,,, -?,24,android/opengl/GLES32.GL_DEBUG_LOGGED_MESSAGES,37189,,,, -?,24,android/opengl/GLES32.GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH,33347,,,, -?,24,android/opengl/GLES32.GL_DEBUG_OUTPUT,37600,,,, -?,24,android/opengl/GLES32.GL_DEBUG_OUTPUT_SYNCHRONOUS,33346,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_HIGH,37190,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_LOW,37192,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_MEDIUM,37191,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_NOTIFICATION,33387,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_API,33350,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_APPLICATION,33354,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_OTHER,33355,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_SHADER_COMPILER,33352,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_THIRD_PARTY,33353,,,, -?,24,android/opengl/GLES32.GL_DEBUG_SOURCE_WINDOW_SYSTEM,33351,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR,33357,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_ERROR,33356,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_MARKER,33384,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_OTHER,33361,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_PERFORMANCE,33360,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_POP_GROUP,33386,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_PORTABILITY,33359,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_PUSH_GROUP,33385,,,, -?,24,android/opengl/GLES32.GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR,33358,,,, -?,24,android/opengl/GLES32.GL_DIFFERENCE,37534,,,, -?,24,android/opengl/GLES32.GL_EXCLUSION,37536,,,, -?,24,android/opengl/GLES32.GL_FIRST_VERTEX_CONVENTION,36429,,,, -?,24,android/opengl/GLES32.GL_FRACTIONAL_EVEN,36476,,,, -?,24,android/opengl/GLES32.GL_FRACTIONAL_ODD,36475,,,, -?,24,android/opengl/GLES32.GL_FRAGMENT_INTERPOLATION_OFFSET_BITS,36445,,,, -?,24,android/opengl/GLES32.GL_FRAMEBUFFER_ATTACHMENT_LAYERED,36263,,,, -?,24,android/opengl/GLES32.GL_FRAMEBUFFER_DEFAULT_LAYERS,37650,,,, -?,24,android/opengl/GLES32.GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS,36264,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_INPUT_TYPE,35095,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_OUTPUT_TYPE,35096,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_SHADER,36313,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_SHADER_BIT,4,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_SHADER_INVOCATIONS,34943,,,, -?,24,android/opengl/GLES32.GL_GEOMETRY_VERTICES_OUT,35094,,,, -?,24,android/opengl/GLES32.GL_GUILTY_CONTEXT_RESET,33363,,,, -?,24,android/opengl/GLES32.GL_HARDLIGHT,37531,,,, -?,24,android/opengl/GLES32.GL_HSL_COLOR,37551,,,, -?,24,android/opengl/GLES32.GL_HSL_HUE,37549,,,, -?,24,android/opengl/GLES32.GL_HSL_LUMINOSITY,37552,,,, -?,24,android/opengl/GLES32.GL_HSL_SATURATION,37550,,,, -?,24,android/opengl/GLES32.GL_IMAGE_BUFFER,36945,,,, -?,24,android/opengl/GLES32.GL_IMAGE_CUBE_MAP_ARRAY,36948,,,, -?,24,android/opengl/GLES32.GL_INNOCENT_CONTEXT_RESET,33364,,,, -?,24,android/opengl/GLES32.GL_INT_IMAGE_BUFFER,36956,,,, -?,24,android/opengl/GLES32.GL_INT_IMAGE_CUBE_MAP_ARRAY,36959,,,, -?,24,android/opengl/GLES32.GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY,37132,,,, -?,24,android/opengl/GLES32.GL_INT_SAMPLER_BUFFER,36304,,,, -?,24,android/opengl/GLES32.GL_INT_SAMPLER_CUBE_MAP_ARRAY,36878,,,, -?,24,android/opengl/GLES32.GL_IS_PER_PATCH,37607,,,, -?,24,android/opengl/GLES32.GL_ISOLINES,36474,,,, -?,24,android/opengl/GLES32.GL_LAST_VERTEX_CONVENTION,36430,,,, -?,24,android/opengl/GLES32.GL_LAYER_PROVOKING_VERTEX,33374,,,, -?,24,android/opengl/GLES32.GL_LIGHTEN,37528,,,, -?,24,android/opengl/GLES32.GL_LINE_STRIP_ADJACENCY,11,,,, -?,24,android/opengl/GLES32.GL_LINES_ADJACENCY,10,,,, -?,24,android/opengl/GLES32.GL_LOSE_CONTEXT_ON_RESET,33362,,,, -?,24,android/opengl/GLES32.GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS,35378,,,, -?,24,android/opengl/GLES32.GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS,36382,,,, -?,24,android/opengl/GLES32.GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS,36383,,,, -?,24,android/opengl/GLES32.GL_MAX_DEBUG_GROUP_STACK_DEPTH,33388,,,, -?,24,android/opengl/GLES32.GL_MAX_DEBUG_LOGGED_MESSAGES,37188,,,, -?,24,android/opengl/GLES32.GL_MAX_DEBUG_MESSAGE_LENGTH,37187,,,, -?,24,android/opengl/GLES32.GL_MAX_FRAGMENT_INTERPOLATION_OFFSET,36444,,,, -?,24,android/opengl/GLES32.GL_MAX_FRAMEBUFFER_LAYERS,37655,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS,37583,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_ATOMIC_COUNTERS,37589,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_IMAGE_UNIFORMS,37069,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_INPUT_COMPONENTS,37155,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_OUTPUT_COMPONENTS,37156,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_OUTPUT_VERTICES,36320,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_SHADER_INVOCATIONS,36442,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS,37079,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS,35881,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS,36321,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_UNIFORM_BLOCKS,35372,,,, -?,24,android/opengl/GLES32.GL_MAX_GEOMETRY_UNIFORM_COMPONENTS,36319,,,, -?,24,android/opengl/GLES32.GL_MAX_LABEL_LENGTH,33512,,,, -?,24,android/opengl/GLES32.GL_MAX_PATCH_VERTICES,36477,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS,37581,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS,37587,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS,37067,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_INPUT_COMPONENTS,34924,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS,36483,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS,37080,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS,36481,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS,36485,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS,36489,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS,36479,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS,37582,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS,37588,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS,37068,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS,34925,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS,36486,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS,37081,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS,36482,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS,36490,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS,36480,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_GEN_LEVEL,36478,,,, -?,24,android/opengl/GLES32.GL_MAX_TESS_PATCH_COMPONENTS,36484,,,, -?,24,android/opengl/GLES32.GL_MAX_TEXTURE_BUFFER_SIZE,35883,,,, -?,24,android/opengl/GLES32.GL_MIN_FRAGMENT_INTERPOLATION_OFFSET,36443,,,, -?,24,android/opengl/GLES32.GL_MIN_SAMPLE_SHADING_VALUE,35895,,,, -?,24,android/opengl/GLES32.GL_MULTIPLY,37524,,,, -?,24,android/opengl/GLES32.GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY,37762,,,, -?,24,android/opengl/GLES32.GL_MULTISAMPLE_LINE_WIDTH_RANGE,37761,,,, -?,24,android/opengl/GLES32.GL_NO_RESET_NOTIFICATION,33377,,,, -?,24,android/opengl/GLES32.GL_OVERLAY,37526,,,, -?,24,android/opengl/GLES32.GL_PATCH_VERTICES,36466,,,, -?,24,android/opengl/GLES32.GL_PATCHES,14,,,, -?,24,android/opengl/GLES32.GL_PRIMITIVE_BOUNDING_BOX,37566,,,, -?,24,android/opengl/GLES32.GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED,33313,,,, -?,24,android/opengl/GLES32.GL_PRIMITIVES_GENERATED,35975,,,, -?,24,android/opengl/GLES32.GL_PROGRAM,33506,,,, -?,24,android/opengl/GLES32.GL_PROGRAM_PIPELINE,33508,,,, -?,24,android/opengl/GLES32.GL_QUADS,7,,,, -?,24,android/opengl/GLES32.GL_QUERY,33507,,,, -?,24,android/opengl/GLES32.GL_REFERENCED_BY_GEOMETRY_SHADER,37641,,,, -?,24,android/opengl/GLES32.GL_REFERENCED_BY_TESS_CONTROL_SHADER,37639,,,, -?,24,android/opengl/GLES32.GL_REFERENCED_BY_TESS_EVALUATION_SHADER,37640,,,, -?,24,android/opengl/GLES32.GL_RESET_NOTIFICATION_STRATEGY,33366,,,, -?,24,android/opengl/GLES32.GL_SAMPLE_SHADING,35894,,,, -?,24,android/opengl/GLES32.GL_SAMPLER,33510,,,, -?,24,android/opengl/GLES32.GL_SAMPLER_2D_MULTISAMPLE_ARRAY,37131,,,, -?,24,android/opengl/GLES32.GL_SAMPLER_BUFFER,36290,,,, -?,24,android/opengl/GLES32.GL_SAMPLER_CUBE_MAP_ARRAY,36876,,,, -?,24,android/opengl/GLES32.GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW,36877,,,, -?,24,android/opengl/GLES32.GL_SCREEN,37525,,,, -?,24,android/opengl/GLES32.GL_SHADER,33505,,,, -?,24,android/opengl/GLES32.GL_SOFTLIGHT,37532,,,, -?,24,android/opengl/GLES32.GL_STACK_OVERFLOW,1283,,,, -?,24,android/opengl/GLES32.GL_STACK_UNDERFLOW,1284,,,, -?,24,android/opengl/GLES32.GL_TESS_CONTROL_OUTPUT_VERTICES,36469,,,, -?,24,android/opengl/GLES32.GL_TESS_CONTROL_SHADER,36488,,,, -?,24,android/opengl/GLES32.GL_TESS_CONTROL_SHADER_BIT,8,,,, -?,24,android/opengl/GLES32.GL_TESS_EVALUATION_SHADER,36487,,,, -?,24,android/opengl/GLES32.GL_TESS_EVALUATION_SHADER_BIT,16,,,, -?,24,android/opengl/GLES32.GL_TESS_GEN_MODE,36470,,,, -?,24,android/opengl/GLES32.GL_TESS_GEN_POINT_MODE,36473,,,, -?,24,android/opengl/GLES32.GL_TESS_GEN_SPACING,36471,,,, -?,24,android/opengl/GLES32.GL_TESS_GEN_VERTEX_ORDER,36472,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_2D_MULTISAMPLE_ARRAY,37122,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY,37125,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BINDING_BUFFER,35884,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BINDING_CUBE_MAP_ARRAY,36874,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BORDER_COLOR,4100,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER,35882,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_BINDING,35882,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_DATA_STORE_BINDING,35885,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_OFFSET,37277,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT,37279,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_SIZE,37278,,,, -?,24,android/opengl/GLES32.GL_TEXTURE_CUBE_MAP_ARRAY,36873,,,, -?,24,android/opengl/GLES32.GL_TRIANGLE_STRIP_ADJACENCY,13,,,, -?,24,android/opengl/GLES32.GL_TRIANGLES_ADJACENCY,12,,,, -?,24,android/opengl/GLES32.GL_UNDEFINED_VERTEX,33376,,,, -?,24,android/opengl/GLES32.GL_UNKNOWN_CONTEXT_RESET,33365,,,, -?,24,android/opengl/GLES32.GL_UNSIGNED_INT_IMAGE_BUFFER,36967,,,, -?,24,android/opengl/GLES32.GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY,36970,,,, -?,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY,37133,,,, -?,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_BUFFER,36312,,,, -?,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY,36879,,,, -?,24,android/opengl/GLES32.GL_VERTEX_ARRAY,32884,,,, +I,0,android/opengl/GLDebugHelper.ERROR_WRONG_THREAD,28672,,,, +I,0,android/opengl/GLES10.GL_ADD,260,,,, +I,0,android/opengl/GLES10.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, +I,0,android/opengl/GLES10.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, +I,0,android/opengl/GLES10.GL_ALPHA,6406,,,, +I,0,android/opengl/GLES10.GL_ALPHA_BITS,3413,,,, +I,0,android/opengl/GLES10.GL_ALPHA_TEST,3008,,,, +I,0,android/opengl/GLES10.GL_ALWAYS,519,,,, +I,0,android/opengl/GLES10.GL_AMBIENT,4608,,,, +I,0,android/opengl/GLES10.GL_AMBIENT_AND_DIFFUSE,5634,,,, +I,0,android/opengl/GLES10.GL_AND,5377,,,, +I,0,android/opengl/GLES10.GL_AND_INVERTED,5380,,,, +I,0,android/opengl/GLES10.GL_AND_REVERSE,5378,,,, +I,0,android/opengl/GLES10.GL_BACK,1029,,,, +I,0,android/opengl/GLES10.GL_BLEND,3042,,,, +I,0,android/opengl/GLES10.GL_BLUE_BITS,3412,,,, +I,0,android/opengl/GLES10.GL_BYTE,5120,,,, +I,0,android/opengl/GLES10.GL_CCW,2305,,,, +I,0,android/opengl/GLES10.GL_CLAMP_TO_EDGE,33071,,,, +I,0,android/opengl/GLES10.GL_CLEAR,5376,,,, +I,0,android/opengl/GLES10.GL_COLOR_ARRAY,32886,,,, +I,0,android/opengl/GLES10.GL_COLOR_BUFFER_BIT,16384,,,, +I,0,android/opengl/GLES10.GL_COLOR_LOGIC_OP,3058,,,, +I,0,android/opengl/GLES10.GL_COLOR_MATERIAL,2903,,,, +I,0,android/opengl/GLES10.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, +I,0,android/opengl/GLES10.GL_CONSTANT_ATTENUATION,4615,,,, +I,0,android/opengl/GLES10.GL_COPY,5379,,,, +I,0,android/opengl/GLES10.GL_COPY_INVERTED,5388,,,, +I,0,android/opengl/GLES10.GL_CULL_FACE,2884,,,, +I,0,android/opengl/GLES10.GL_CW,2304,,,, +I,0,android/opengl/GLES10.GL_DECAL,8449,,,, +I,0,android/opengl/GLES10.GL_DECR,7683,,,, +I,0,android/opengl/GLES10.GL_DEPTH_BITS,3414,,,, +I,0,android/opengl/GLES10.GL_DEPTH_BUFFER_BIT,256,,,, +I,0,android/opengl/GLES10.GL_DEPTH_TEST,2929,,,, +I,0,android/opengl/GLES10.GL_DIFFUSE,4609,,,, +I,0,android/opengl/GLES10.GL_DITHER,3024,,,, +I,0,android/opengl/GLES10.GL_DONT_CARE,4352,,,, +I,0,android/opengl/GLES10.GL_DST_ALPHA,772,,,, +I,0,android/opengl/GLES10.GL_DST_COLOR,774,,,, +I,0,android/opengl/GLES10.GL_EMISSION,5632,,,, +I,0,android/opengl/GLES10.GL_EQUAL,514,,,, +I,0,android/opengl/GLES10.GL_EQUIV,5385,,,, +I,0,android/opengl/GLES10.GL_EXP,2048,,,, +I,0,android/opengl/GLES10.GL_EXP2,2049,,,, +I,0,android/opengl/GLES10.GL_EXTENSIONS,7939,,,, +I,0,android/opengl/GLES10.GL_FALSE,0,,,, +I,0,android/opengl/GLES10.GL_FASTEST,4353,,,, +I,0,android/opengl/GLES10.GL_FIXED,5132,,,, +I,0,android/opengl/GLES10.GL_FLAT,7424,,,, +I,0,android/opengl/GLES10.GL_FLOAT,5126,,,, +I,0,android/opengl/GLES10.GL_FOG,2912,,,, +I,0,android/opengl/GLES10.GL_FOG_COLOR,2918,,,, +I,0,android/opengl/GLES10.GL_FOG_DENSITY,2914,,,, +I,0,android/opengl/GLES10.GL_FOG_END,2916,,,, +I,0,android/opengl/GLES10.GL_FOG_HINT,3156,,,, +I,0,android/opengl/GLES10.GL_FOG_MODE,2917,,,, +I,0,android/opengl/GLES10.GL_FOG_START,2915,,,, +I,0,android/opengl/GLES10.GL_FRONT,1028,,,, +I,0,android/opengl/GLES10.GL_FRONT_AND_BACK,1032,,,, +I,0,android/opengl/GLES10.GL_GEQUAL,518,,,, +I,0,android/opengl/GLES10.GL_GREATER,516,,,, +I,0,android/opengl/GLES10.GL_GREEN_BITS,3411,,,, +I,0,android/opengl/GLES10.GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES,35739,,,, +I,0,android/opengl/GLES10.GL_IMPLEMENTATION_COLOR_READ_TYPE_OES,35738,,,, +I,0,android/opengl/GLES10.GL_INCR,7682,,,, +I,0,android/opengl/GLES10.GL_INVALID_ENUM,1280,,,, +I,0,android/opengl/GLES10.GL_INVALID_OPERATION,1282,,,, +I,0,android/opengl/GLES10.GL_INVALID_VALUE,1281,,,, +I,0,android/opengl/GLES10.GL_INVERT,5386,,,, +I,0,android/opengl/GLES10.GL_KEEP,7680,,,, +I,0,android/opengl/GLES10.GL_LEQUAL,515,,,, +I,0,android/opengl/GLES10.GL_LESS,513,,,, +I,0,android/opengl/GLES10.GL_LIGHT_MODEL_AMBIENT,2899,,,, +I,0,android/opengl/GLES10.GL_LIGHT_MODEL_TWO_SIDE,2898,,,, +I,0,android/opengl/GLES10.GL_LIGHT0,16384,,,, +I,0,android/opengl/GLES10.GL_LIGHT1,16385,,,, +I,0,android/opengl/GLES10.GL_LIGHT2,16386,,,, +I,0,android/opengl/GLES10.GL_LIGHT3,16387,,,, +I,0,android/opengl/GLES10.GL_LIGHT4,16388,,,, +I,0,android/opengl/GLES10.GL_LIGHT5,16389,,,, +I,0,android/opengl/GLES10.GL_LIGHT6,16390,,,, +I,0,android/opengl/GLES10.GL_LIGHT7,16391,,,, +I,0,android/opengl/GLES10.GL_LIGHTING,2896,,,, +I,0,android/opengl/GLES10.GL_LINE_LOOP,2,,,, +I,0,android/opengl/GLES10.GL_LINE_SMOOTH,2848,,,, +I,0,android/opengl/GLES10.GL_LINE_SMOOTH_HINT,3154,,,, +I,0,android/opengl/GLES10.GL_LINE_STRIP,3,,,, +I,0,android/opengl/GLES10.GL_LINEAR,9729,,,, +I,0,android/opengl/GLES10.GL_LINEAR_ATTENUATION,4616,,,, +I,0,android/opengl/GLES10.GL_LINEAR_MIPMAP_LINEAR,9987,,,, +I,0,android/opengl/GLES10.GL_LINEAR_MIPMAP_NEAREST,9985,,,, +I,0,android/opengl/GLES10.GL_LINES,1,,,, +I,0,android/opengl/GLES10.GL_LUMINANCE,6409,,,, +I,0,android/opengl/GLES10.GL_LUMINANCE_ALPHA,6410,,,, +I,0,android/opengl/GLES10.GL_MAX_ELEMENTS_INDICES,33001,,,, +I,0,android/opengl/GLES10.GL_MAX_ELEMENTS_VERTICES,33000,,,, +I,0,android/opengl/GLES10.GL_MAX_LIGHTS,3377,,,, +I,0,android/opengl/GLES10.GL_MAX_MODELVIEW_STACK_DEPTH,3382,,,, +I,0,android/opengl/GLES10.GL_MAX_PROJECTION_STACK_DEPTH,3384,,,, +I,0,android/opengl/GLES10.GL_MAX_TEXTURE_SIZE,3379,,,, +I,0,android/opengl/GLES10.GL_MAX_TEXTURE_STACK_DEPTH,3385,,,, +I,0,android/opengl/GLES10.GL_MAX_TEXTURE_UNITS,34018,,,, +I,0,android/opengl/GLES10.GL_MAX_VIEWPORT_DIMS,3386,,,, +I,0,android/opengl/GLES10.GL_MODELVIEW,5888,,,, +I,0,android/opengl/GLES10.GL_MODULATE,8448,,,, +I,0,android/opengl/GLES10.GL_MULTISAMPLE,32925,,,, +I,0,android/opengl/GLES10.GL_NAND,5390,,,, +I,0,android/opengl/GLES10.GL_NEAREST,9728,,,, +I,0,android/opengl/GLES10.GL_NEAREST_MIPMAP_LINEAR,9986,,,, +I,0,android/opengl/GLES10.GL_NEAREST_MIPMAP_NEAREST,9984,,,, +I,0,android/opengl/GLES10.GL_NEVER,512,,,, +I,0,android/opengl/GLES10.GL_NICEST,4354,,,, +I,0,android/opengl/GLES10.GL_NO_ERROR,0,,,, +I,0,android/opengl/GLES10.GL_NOOP,5381,,,, +I,0,android/opengl/GLES10.GL_NOR,5384,,,, +I,0,android/opengl/GLES10.GL_NORMAL_ARRAY,32885,,,, +I,0,android/opengl/GLES10.GL_NORMALIZE,2977,,,, +I,0,android/opengl/GLES10.GL_NOTEQUAL,517,,,, +I,0,android/opengl/GLES10.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, +I,0,android/opengl/GLES10.GL_ONE,1,,,, +I,0,android/opengl/GLES10.GL_ONE_MINUS_DST_ALPHA,773,,,, +I,0,android/opengl/GLES10.GL_ONE_MINUS_DST_COLOR,775,,,, +I,0,android/opengl/GLES10.GL_ONE_MINUS_SRC_ALPHA,771,,,, +I,0,android/opengl/GLES10.GL_ONE_MINUS_SRC_COLOR,769,,,, +I,0,android/opengl/GLES10.GL_OR,5383,,,, +I,0,android/opengl/GLES10.GL_OR_INVERTED,5389,,,, +I,0,android/opengl/GLES10.GL_OR_REVERSE,5387,,,, +I,0,android/opengl/GLES10.GL_OUT_OF_MEMORY,1285,,,, +I,0,android/opengl/GLES10.GL_PACK_ALIGNMENT,3333,,,, +I,0,android/opengl/GLES10.GL_PALETTE4_R5_G6_B5_OES,35730,,,, +I,0,android/opengl/GLES10.GL_PALETTE4_RGB5_A1_OES,35732,,,, +I,0,android/opengl/GLES10.GL_PALETTE4_RGB8_OES,35728,,,, +I,0,android/opengl/GLES10.GL_PALETTE4_RGBA4_OES,35731,,,, +I,0,android/opengl/GLES10.GL_PALETTE4_RGBA8_OES,35729,,,, +I,0,android/opengl/GLES10.GL_PALETTE8_R5_G6_B5_OES,35735,,,, +I,0,android/opengl/GLES10.GL_PALETTE8_RGB5_A1_OES,35737,,,, +I,0,android/opengl/GLES10.GL_PALETTE8_RGB8_OES,35733,,,, +I,0,android/opengl/GLES10.GL_PALETTE8_RGBA4_OES,35736,,,, +I,0,android/opengl/GLES10.GL_PALETTE8_RGBA8_OES,35734,,,, +I,0,android/opengl/GLES10.GL_PERSPECTIVE_CORRECTION_HINT,3152,,,, +I,0,android/opengl/GLES10.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, +I,0,android/opengl/GLES10.GL_POINT_SIZE,2833,,,, +I,0,android/opengl/GLES10.GL_POINT_SMOOTH,2832,,,, +I,0,android/opengl/GLES10.GL_POINT_SMOOTH_HINT,3153,,,, +I,0,android/opengl/GLES10.GL_POINTS,0,,,, +I,0,android/opengl/GLES10.GL_POLYGON_OFFSET_FILL,32823,,,, +I,0,android/opengl/GLES10.GL_POLYGON_SMOOTH_HINT,3155,,,, +I,0,android/opengl/GLES10.GL_POSITION,4611,,,, +I,0,android/opengl/GLES10.GL_PROJECTION,5889,,,, +I,0,android/opengl/GLES10.GL_QUADRATIC_ATTENUATION,4617,,,, +I,0,android/opengl/GLES10.GL_RED_BITS,3410,,,, +I,0,android/opengl/GLES10.GL_RENDERER,7937,,,, +I,0,android/opengl/GLES10.GL_REPEAT,10497,,,, +I,0,android/opengl/GLES10.GL_REPLACE,7681,,,, +I,0,android/opengl/GLES10.GL_RESCALE_NORMAL,32826,,,, +I,0,android/opengl/GLES10.GL_RGB,6407,,,, +I,0,android/opengl/GLES10.GL_RGBA,6408,,,, +I,0,android/opengl/GLES10.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, +I,0,android/opengl/GLES10.GL_SAMPLE_ALPHA_TO_ONE,32927,,,, +I,0,android/opengl/GLES10.GL_SAMPLE_COVERAGE,32928,,,, +I,0,android/opengl/GLES10.GL_SCISSOR_TEST,3089,,,, +I,0,android/opengl/GLES10.GL_SET,5391,,,, +I,0,android/opengl/GLES10.GL_SHININESS,5633,,,, +I,0,android/opengl/GLES10.GL_SHORT,5122,,,, +I,0,android/opengl/GLES10.GL_SMOOTH,7425,,,, +I,0,android/opengl/GLES10.GL_SMOOTH_LINE_WIDTH_RANGE,2850,,,, +I,0,android/opengl/GLES10.GL_SMOOTH_POINT_SIZE_RANGE,2834,,,, +I,0,android/opengl/GLES10.GL_SPECULAR,4610,,,, +I,0,android/opengl/GLES10.GL_SPOT_CUTOFF,4614,,,, +I,0,android/opengl/GLES10.GL_SPOT_DIRECTION,4612,,,, +I,0,android/opengl/GLES10.GL_SPOT_EXPONENT,4613,,,, +I,0,android/opengl/GLES10.GL_SRC_ALPHA,770,,,, +I,0,android/opengl/GLES10.GL_SRC_ALPHA_SATURATE,776,,,, +I,0,android/opengl/GLES10.GL_SRC_COLOR,768,,,, +I,0,android/opengl/GLES10.GL_STACK_OVERFLOW,1283,,,, +I,0,android/opengl/GLES10.GL_STACK_UNDERFLOW,1284,,,, +I,0,android/opengl/GLES10.GL_STENCIL_BITS,3415,,,, +I,0,android/opengl/GLES10.GL_STENCIL_BUFFER_BIT,1024,,,, +I,0,android/opengl/GLES10.GL_STENCIL_TEST,2960,,,, +I,0,android/opengl/GLES10.GL_SUBPIXEL_BITS,3408,,,, +I,0,android/opengl/GLES10.GL_TEXTURE,5890,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_2D,3553,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_COORD_ARRAY,32888,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_ENV,8960,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_ENV_COLOR,8705,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_ENV_MODE,8704,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_MAG_FILTER,10240,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_MIN_FILTER,10241,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_WRAP_S,10242,,,, +I,0,android/opengl/GLES10.GL_TEXTURE_WRAP_T,10243,,,, +I,0,android/opengl/GLES10.GL_TEXTURE0,33984,,,, +I,0,android/opengl/GLES10.GL_TEXTURE1,33985,,,, +I,0,android/opengl/GLES10.GL_TEXTURE10,33994,,,, +I,0,android/opengl/GLES10.GL_TEXTURE11,33995,,,, +I,0,android/opengl/GLES10.GL_TEXTURE12,33996,,,, +I,0,android/opengl/GLES10.GL_TEXTURE13,33997,,,, +I,0,android/opengl/GLES10.GL_TEXTURE14,33998,,,, +I,0,android/opengl/GLES10.GL_TEXTURE15,33999,,,, +I,0,android/opengl/GLES10.GL_TEXTURE16,34000,,,, +I,0,android/opengl/GLES10.GL_TEXTURE17,34001,,,, +I,0,android/opengl/GLES10.GL_TEXTURE18,34002,,,, +I,0,android/opengl/GLES10.GL_TEXTURE19,34003,,,, +I,0,android/opengl/GLES10.GL_TEXTURE2,33986,,,, +I,0,android/opengl/GLES10.GL_TEXTURE20,34004,,,, +I,0,android/opengl/GLES10.GL_TEXTURE21,34005,,,, +I,0,android/opengl/GLES10.GL_TEXTURE22,34006,,,, +I,0,android/opengl/GLES10.GL_TEXTURE23,34007,,,, +I,0,android/opengl/GLES10.GL_TEXTURE24,34008,,,, +I,0,android/opengl/GLES10.GL_TEXTURE25,34009,,,, +I,0,android/opengl/GLES10.GL_TEXTURE26,34010,,,, +I,0,android/opengl/GLES10.GL_TEXTURE27,34011,,,, +I,0,android/opengl/GLES10.GL_TEXTURE28,34012,,,, +I,0,android/opengl/GLES10.GL_TEXTURE29,34013,,,, +I,0,android/opengl/GLES10.GL_TEXTURE3,33987,,,, +I,0,android/opengl/GLES10.GL_TEXTURE30,34014,,,, +I,0,android/opengl/GLES10.GL_TEXTURE31,34015,,,, +I,0,android/opengl/GLES10.GL_TEXTURE4,33988,,,, +I,0,android/opengl/GLES10.GL_TEXTURE5,33989,,,, +I,0,android/opengl/GLES10.GL_TEXTURE6,33990,,,, +I,0,android/opengl/GLES10.GL_TEXTURE7,33991,,,, +I,0,android/opengl/GLES10.GL_TEXTURE8,33992,,,, +I,0,android/opengl/GLES10.GL_TEXTURE9,33993,,,, +I,0,android/opengl/GLES10.GL_TRIANGLE_FAN,6,,,, +I,0,android/opengl/GLES10.GL_TRIANGLE_STRIP,5,,,, +I,0,android/opengl/GLES10.GL_TRIANGLES,4,,,, +I,0,android/opengl/GLES10.GL_TRUE,1,,,, +I,0,android/opengl/GLES10.GL_UNPACK_ALIGNMENT,3317,,,, +I,0,android/opengl/GLES10.GL_UNSIGNED_BYTE,5121,,,, +I,0,android/opengl/GLES10.GL_UNSIGNED_SHORT,5123,,,, +I,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, +I,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, +I,0,android/opengl/GLES10.GL_UNSIGNED_SHORT_5_6_5,33635,,,, +I,0,android/opengl/GLES10.GL_VENDOR,7936,,,, +I,0,android/opengl/GLES10.GL_VERSION,7938,,,, +I,0,android/opengl/GLES10.GL_VERTEX_ARRAY,32884,,,, +I,0,android/opengl/GLES10.GL_XOR,5382,,,, +I,0,android/opengl/GLES10.GL_ZERO,0,,,, +I,0,android/opengl/GLES11.GL_ACTIVE_TEXTURE,34016,,,, +I,0,android/opengl/GLES11.GL_ADD_SIGNED,34164,,,, +I,0,android/opengl/GLES11.GL_ALPHA_SCALE,3356,,,, +I,0,android/opengl/GLES11.GL_ALPHA_TEST_FUNC,3009,,,, +I,0,android/opengl/GLES11.GL_ALPHA_TEST_REF,3010,,,, +I,0,android/opengl/GLES11.GL_ARRAY_BUFFER,34962,,,, +I,0,android/opengl/GLES11.GL_ARRAY_BUFFER_BINDING,34964,,,, +I,0,android/opengl/GLES11.GL_BLEND_DST,3040,,,, +I,0,android/opengl/GLES11.GL_BLEND_SRC,3041,,,, +I,0,android/opengl/GLES11.GL_BUFFER_ACCESS,35003,,,, +I,0,android/opengl/GLES11.GL_BUFFER_SIZE,34660,,,, +I,0,android/opengl/GLES11.GL_BUFFER_USAGE,34661,,,, +I,0,android/opengl/GLES11.GL_CLIENT_ACTIVE_TEXTURE,34017,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE0,12288,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE1,12289,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE2,12290,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE3,12291,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE4,12292,,,, +I,0,android/opengl/GLES11.GL_CLIP_PLANE5,12293,,,, +I,0,android/opengl/GLES11.GL_COLOR_ARRAY_BUFFER_BINDING,34968,,,, +I,0,android/opengl/GLES11.GL_COLOR_ARRAY_POINTER,32912,,,, +I,0,android/opengl/GLES11.GL_COLOR_ARRAY_SIZE,32897,,,, +I,0,android/opengl/GLES11.GL_COLOR_ARRAY_STRIDE,32899,,,, +I,0,android/opengl/GLES11.GL_COLOR_ARRAY_TYPE,32898,,,, +I,0,android/opengl/GLES11.GL_COLOR_CLEAR_VALUE,3106,,,, +I,0,android/opengl/GLES11.GL_COLOR_WRITEMASK,3107,,,, +I,0,android/opengl/GLES11.GL_COMBINE,34160,,,, +I,0,android/opengl/GLES11.GL_COMBINE_ALPHA,34162,,,, +I,0,android/opengl/GLES11.GL_COMBINE_RGB,34161,,,, +I,0,android/opengl/GLES11.GL_CONSTANT,34166,,,, +I,0,android/opengl/GLES11.GL_COORD_REPLACE_OES,34914,,,, +I,0,android/opengl/GLES11.GL_CULL_FACE_MODE,2885,,,, +I,0,android/opengl/GLES11.GL_CURRENT_COLOR,2816,,,, +I,0,android/opengl/GLES11.GL_CURRENT_NORMAL,2818,,,, +I,0,android/opengl/GLES11.GL_CURRENT_TEXTURE_COORDS,2819,,,, +I,0,android/opengl/GLES11.GL_DEPTH_CLEAR_VALUE,2931,,,, +I,0,android/opengl/GLES11.GL_DEPTH_FUNC,2932,,,, +I,0,android/opengl/GLES11.GL_DEPTH_RANGE,2928,,,, +I,0,android/opengl/GLES11.GL_DEPTH_WRITEMASK,2930,,,, +I,0,android/opengl/GLES11.GL_DOT3_RGB,34478,,,, +I,0,android/opengl/GLES11.GL_DOT3_RGBA,34479,,,, +I,0,android/opengl/GLES11.GL_DYNAMIC_DRAW,35048,,,, +I,0,android/opengl/GLES11.GL_ELEMENT_ARRAY_BUFFER,34963,,,, +I,0,android/opengl/GLES11.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, +I,0,android/opengl/GLES11.GL_FRONT_FACE,2886,,,, +I,0,android/opengl/GLES11.GL_GENERATE_MIPMAP,33169,,,, +I,0,android/opengl/GLES11.GL_GENERATE_MIPMAP_HINT,33170,,,, +I,0,android/opengl/GLES11.GL_INTERPOLATE,34165,,,, +I,0,android/opengl/GLES11.GL_LINE_WIDTH,2849,,,, +I,0,android/opengl/GLES11.GL_LOGIC_OP_MODE,3056,,,, +I,0,android/opengl/GLES11.GL_MATRIX_MODE,2976,,,, +I,0,android/opengl/GLES11.GL_MAX_CLIP_PLANES,3378,,,, +I,0,android/opengl/GLES11.GL_MODELVIEW_MATRIX,2982,,,, +I,0,android/opengl/GLES11.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, +I,0,android/opengl/GLES11.GL_MODELVIEW_STACK_DEPTH,2979,,,, +I,0,android/opengl/GLES11.GL_NORMAL_ARRAY_BUFFER_BINDING,34967,,,, +I,0,android/opengl/GLES11.GL_NORMAL_ARRAY_POINTER,32911,,,, +I,0,android/opengl/GLES11.GL_NORMAL_ARRAY_STRIDE,32895,,,, +I,0,android/opengl/GLES11.GL_NORMAL_ARRAY_TYPE,32894,,,, +I,0,android/opengl/GLES11.GL_OPERAND0_ALPHA,34200,,,, +I,0,android/opengl/GLES11.GL_OPERAND0_RGB,34192,,,, +I,0,android/opengl/GLES11.GL_OPERAND1_ALPHA,34201,,,, +I,0,android/opengl/GLES11.GL_OPERAND1_RGB,34193,,,, +I,0,android/opengl/GLES11.GL_OPERAND2_ALPHA,34202,,,, +I,0,android/opengl/GLES11.GL_OPERAND2_RGB,34194,,,, +I,0,android/opengl/GLES11.GL_POINT_DISTANCE_ATTENUATION,33065,,,, +I,0,android/opengl/GLES11.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE,2833,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES,35743,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_OES,35740,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_POINTER_OES,35212,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_STRIDE_OES,35211,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_ARRAY_TYPE_OES,35210,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_MAX,33063,,,, +I,0,android/opengl/GLES11.GL_POINT_SIZE_MIN,33062,,,, +I,0,android/opengl/GLES11.GL_POINT_SPRITE_OES,34913,,,, +I,0,android/opengl/GLES11.GL_POLYGON_OFFSET_FACTOR,32824,,,, +I,0,android/opengl/GLES11.GL_POLYGON_OFFSET_UNITS,10752,,,, +I,0,android/opengl/GLES11.GL_PREVIOUS,34168,,,, +I,0,android/opengl/GLES11.GL_PRIMARY_COLOR,34167,,,, +I,0,android/opengl/GLES11.GL_PROJECTION_MATRIX,2983,,,, +I,0,android/opengl/GLES11.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, +I,0,android/opengl/GLES11.GL_PROJECTION_STACK_DEPTH,2980,,,, +I,0,android/opengl/GLES11.GL_RGB_SCALE,34163,,,, +I,0,android/opengl/GLES11.GL_SAMPLE_BUFFERS,32936,,,, +I,0,android/opengl/GLES11.GL_SAMPLE_COVERAGE_INVERT,32939,,,, +I,0,android/opengl/GLES11.GL_SAMPLE_COVERAGE_VALUE,32938,,,, +I,0,android/opengl/GLES11.GL_SAMPLES,32937,,,, +I,0,android/opengl/GLES11.GL_SCISSOR_BOX,3088,,,, +I,0,android/opengl/GLES11.GL_SHADE_MODEL,2900,,,, +I,0,android/opengl/GLES11.GL_SRC0_ALPHA,34184,,,, +I,0,android/opengl/GLES11.GL_SRC0_RGB,34176,,,, +I,0,android/opengl/GLES11.GL_SRC1_ALPHA,34185,,,, +I,0,android/opengl/GLES11.GL_SRC1_RGB,34177,,,, +I,0,android/opengl/GLES11.GL_SRC2_ALPHA,34186,,,, +I,0,android/opengl/GLES11.GL_SRC2_RGB,34178,,,, +I,0,android/opengl/GLES11.GL_STATIC_DRAW,35044,,,, +I,0,android/opengl/GLES11.GL_STENCIL_CLEAR_VALUE,2961,,,, +I,0,android/opengl/GLES11.GL_STENCIL_FAIL,2964,,,, +I,0,android/opengl/GLES11.GL_STENCIL_FUNC,2962,,,, +I,0,android/opengl/GLES11.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, +I,0,android/opengl/GLES11.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, +I,0,android/opengl/GLES11.GL_STENCIL_REF,2967,,,, +I,0,android/opengl/GLES11.GL_STENCIL_VALUE_MASK,2963,,,, +I,0,android/opengl/GLES11.GL_STENCIL_WRITEMASK,2968,,,, +I,0,android/opengl/GLES11.GL_SUBTRACT,34023,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_BINDING_2D,32873,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING,34970,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_POINTER,32914,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_SIZE,32904,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_STRIDE,32906,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_COORD_ARRAY_TYPE,32905,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_MATRIX,2984,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, +I,0,android/opengl/GLES11.GL_TEXTURE_STACK_DEPTH,2981,,,, +I,0,android/opengl/GLES11.GL_VERTEX_ARRAY_BUFFER_BINDING,34966,,,, +I,0,android/opengl/GLES11.GL_VERTEX_ARRAY_POINTER,32910,,,, +I,0,android/opengl/GLES11.GL_VERTEX_ARRAY_SIZE,32890,,,, +I,0,android/opengl/GLES11.GL_VERTEX_ARRAY_STRIDE,32892,,,, +I,0,android/opengl/GLES11.GL_VERTEX_ARRAY_TYPE,32891,,,, +I,0,android/opengl/GLES11.GL_VIEWPORT,2978,,,, +I,0,android/opengl/GLES11.GL_WRITE_ONLY,35001,,,, +I,0,android/opengl/GLES11Ext.GL_3DC_X_AMD,34809,,,, +I,0,android/opengl/GLES11Ext.GL_3DC_XY_AMD,34810,,,, +I,0,android/opengl/GLES11Ext.GL_ATC_RGB_AMD,35986,,,, +I,0,android/opengl/GLES11Ext.GL_ATC_RGBA_EXPLICIT_ALPHA_AMD,35987,,,, +I,0,android/opengl/GLES11Ext.GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD,34798,,,, +I,0,android/opengl/GLES11Ext.GL_BGRA,32993,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_DST_ALPHA_OES,32970,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_DST_RGB_OES,32968,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_ALPHA_OES,34877,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_OES,32777,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_EQUATION_RGB_OES,32777,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_SRC_ALPHA_OES,32971,,,, +I,0,android/opengl/GLES11Ext.GL_BLEND_SRC_RGB_OES,32969,,,, +I,0,android/opengl/GLES11Ext.GL_BUFFER_ACCESS_OES,35003,,,, +I,0,android/opengl/GLES11Ext.GL_BUFFER_MAP_POINTER_OES,35005,,,, +I,0,android/opengl/GLES11Ext.GL_BUFFER_MAPPED_OES,35004,,,, +I,0,android/opengl/GLES11Ext.GL_COLOR_ATTACHMENT0_OES,36064,,,, +I,0,android/opengl/GLES11Ext.GL_CURRENT_PALETTE_MATRIX_OES,34883,,,, +I,0,android/opengl/GLES11Ext.GL_DECR_WRAP_OES,34056,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH_ATTACHMENT_OES,36096,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT16_OES,33189,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT24_OES,33190,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH_COMPONENT32_OES,33191,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH_STENCIL_OES,34041,,,, +I,0,android/opengl/GLES11Ext.GL_DEPTH24_STENCIL8_OES,35056,,,, +I,0,android/opengl/GLES11Ext.GL_ETC1_RGB8_OES,36196,,,, +I,0,android/opengl/GLES11Ext.GL_FIXED_OES,5132,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES,36049,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES,36048,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES,36051,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES,36050,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_BINDING_OES,36006,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_COMPLETE_OES,36053,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES,36054,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES,36057,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES,36058,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES,36055,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_OES,36160,,,, +I,0,android/opengl/GLES11Ext.GL_FRAMEBUFFER_UNSUPPORTED_OES,36061,,,, +I,0,android/opengl/GLES11Ext.GL_FUNC_ADD_OES,32774,,,, +I,0,android/opengl/GLES11Ext.GL_FUNC_REVERSE_SUBTRACT_OES,32779,,,, +I,0,android/opengl/GLES11Ext.GL_FUNC_SUBTRACT_OES,32778,,,, +I,0,android/opengl/GLES11Ext.GL_INCR_WRAP_OES,34055,,,, +I,0,android/opengl/GLES11Ext.GL_INVALID_FRAMEBUFFER_OPERATION_OES,1286,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES,35742,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_OES,34884,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_POINTER_OES,34889,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_SIZE_OES,34886,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_STRIDE_OES,34888,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_INDEX_ARRAY_TYPE_OES,34887,,,, +I,0,android/opengl/GLES11Ext.GL_MATRIX_PALETTE_OES,34880,,,, +I,0,android/opengl/GLES11Ext.GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES,34076,,,, +I,0,android/opengl/GLES11Ext.GL_MAX_PALETTE_MATRICES_OES,34882,,,, +I,0,android/opengl/GLES11Ext.GL_MAX_RENDERBUFFER_SIZE_OES,34024,,,, +I,0,android/opengl/GLES11Ext.GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT,34047,,,, +I,0,android/opengl/GLES11Ext.GL_MAX_VERTEX_UNITS_OES,34468,,,, +I,0,android/opengl/GLES11Ext.GL_MIRRORED_REPEAT_OES,33648,,,, +I,0,android/opengl/GLES11Ext.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, +I,0,android/opengl/GLES11Ext.GL_NONE_OES,0,,,, +I,0,android/opengl/GLES11Ext.GL_NORMAL_MAP_OES,34065,,,, +I,0,android/opengl/GLES11Ext.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, +I,0,android/opengl/GLES11Ext.GL_REFLECTION_MAP_OES,34066,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_ALPHA_SIZE_OES,36179,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_BINDING_OES,36007,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_BLUE_SIZE_OES,36178,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_DEPTH_SIZE_OES,36180,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_GREEN_SIZE_OES,36177,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_HEIGHT_OES,36163,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_INTERNAL_FORMAT_OES,36164,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_OES,36161,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_RED_SIZE_OES,36176,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_STENCIL_SIZE_OES,36181,,,, +I,0,android/opengl/GLES11Ext.GL_RENDERBUFFER_WIDTH_OES,36162,,,, +I,15,android/opengl/GLES11Ext.GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES,36200,,,, +I,0,android/opengl/GLES11Ext.GL_RGB5_A1_OES,32855,,,, +I,0,android/opengl/GLES11Ext.GL_RGB565_OES,36194,,,, +I,0,android/opengl/GLES11Ext.GL_RGB8_OES,32849,,,, +I,0,android/opengl/GLES11Ext.GL_RGBA4_OES,32854,,,, +I,0,android/opengl/GLES11Ext.GL_RGBA8_OES,32856,,,, +I,15,android/opengl/GLES11Ext.GL_SAMPLER_EXTERNAL_OES,36198,,,, +I,0,android/opengl/GLES11Ext.GL_STENCIL_ATTACHMENT_OES,36128,,,, +I,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX1_OES,36166,,,, +I,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX4_OES,36167,,,, +I,0,android/opengl/GLES11Ext.GL_STENCIL_INDEX8_OES,36168,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_BINDING_CUBE_MAP_OES,34068,,,, +I,15,android/opengl/GLES11Ext.GL_TEXTURE_BINDING_EXTERNAL_OES,36199,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CROP_RECT_OES,35741,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES,34070,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES,34072,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES,34074,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_OES,34067,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES,34069,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES,34071,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES,34073,,,, +I,15,android/opengl/GLES11Ext.GL_TEXTURE_EXTERNAL_OES,36197,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_GEN_MODE_OES,9472,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_GEN_STR_OES,36192,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, +I,0,android/opengl/GLES11Ext.GL_TEXTURE_MAX_ANISOTROPY_EXT,34046,,,, +I,0,android/opengl/GLES11Ext.GL_UNSIGNED_INT_24_8_OES,34042,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_BUFFER_BINDING_OES,34974,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_OES,34477,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_POINTER_OES,34476,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_SIZE_OES,34475,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_STRIDE_OES,34474,,,, +I,0,android/opengl/GLES11Ext.GL_WEIGHT_ARRAY_TYPE_OES,34473,,,, +I,0,android/opengl/GLES11Ext.GL_WRITE_ONLY_OES,35001,,,, +I,0,android/opengl/GLES20.GL_ACTIVE_ATTRIBUTE_MAX_LENGTH,35722,,,, +I,0,android/opengl/GLES20.GL_ACTIVE_ATTRIBUTES,35721,,,, +I,0,android/opengl/GLES20.GL_ACTIVE_TEXTURE,34016,,,, +I,0,android/opengl/GLES20.GL_ACTIVE_UNIFORM_MAX_LENGTH,35719,,,, +I,0,android/opengl/GLES20.GL_ACTIVE_UNIFORMS,35718,,,, +I,0,android/opengl/GLES20.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, +I,0,android/opengl/GLES20.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, +I,0,android/opengl/GLES20.GL_ALPHA,6406,,,, +I,0,android/opengl/GLES20.GL_ALPHA_BITS,3413,,,, +I,0,android/opengl/GLES20.GL_ALWAYS,519,,,, +I,0,android/opengl/GLES20.GL_ARRAY_BUFFER,34962,,,, +I,0,android/opengl/GLES20.GL_ARRAY_BUFFER_BINDING,34964,,,, +I,0,android/opengl/GLES20.GL_ATTACHED_SHADERS,35717,,,, +I,0,android/opengl/GLES20.GL_BACK,1029,,,, +I,0,android/opengl/GLES20.GL_BLEND,3042,,,, +I,0,android/opengl/GLES20.GL_BLEND_COLOR,32773,,,, +I,0,android/opengl/GLES20.GL_BLEND_DST_ALPHA,32970,,,, +I,0,android/opengl/GLES20.GL_BLEND_DST_RGB,32968,,,, +I,0,android/opengl/GLES20.GL_BLEND_EQUATION,32777,,,, +I,0,android/opengl/GLES20.GL_BLEND_EQUATION_ALPHA,34877,,,, +I,0,android/opengl/GLES20.GL_BLEND_EQUATION_RGB,32777,,,, +I,0,android/opengl/GLES20.GL_BLEND_SRC_ALPHA,32971,,,, +I,0,android/opengl/GLES20.GL_BLEND_SRC_RGB,32969,,,, +I,0,android/opengl/GLES20.GL_BLUE_BITS,3412,,,, +I,0,android/opengl/GLES20.GL_BOOL,35670,,,, +I,0,android/opengl/GLES20.GL_BOOL_VEC2,35671,,,, +I,0,android/opengl/GLES20.GL_BOOL_VEC3,35672,,,, +I,0,android/opengl/GLES20.GL_BOOL_VEC4,35673,,,, +I,0,android/opengl/GLES20.GL_BUFFER_SIZE,34660,,,, +I,0,android/opengl/GLES20.GL_BUFFER_USAGE,34661,,,, +I,0,android/opengl/GLES20.GL_BYTE,5120,,,, +I,0,android/opengl/GLES20.GL_CCW,2305,,,, +I,0,android/opengl/GLES20.GL_CLAMP_TO_EDGE,33071,,,, +I,0,android/opengl/GLES20.GL_COLOR_ATTACHMENT0,36064,,,, +I,0,android/opengl/GLES20.GL_COLOR_BUFFER_BIT,16384,,,, +I,0,android/opengl/GLES20.GL_COLOR_CLEAR_VALUE,3106,,,, +I,0,android/opengl/GLES20.GL_COLOR_WRITEMASK,3107,,,, +I,0,android/opengl/GLES20.GL_COMPILE_STATUS,35713,,,, +I,0,android/opengl/GLES20.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, +I,0,android/opengl/GLES20.GL_CONSTANT_ALPHA,32771,,,, +I,0,android/opengl/GLES20.GL_CONSTANT_COLOR,32769,,,, +I,0,android/opengl/GLES20.GL_CULL_FACE,2884,,,, +I,0,android/opengl/GLES20.GL_CULL_FACE_MODE,2885,,,, +I,0,android/opengl/GLES20.GL_CURRENT_PROGRAM,35725,,,, +I,0,android/opengl/GLES20.GL_CURRENT_VERTEX_ATTRIB,34342,,,, +I,0,android/opengl/GLES20.GL_CW,2304,,,, +I,0,android/opengl/GLES20.GL_DECR,7683,,,, +I,0,android/opengl/GLES20.GL_DECR_WRAP,34056,,,, +I,0,android/opengl/GLES20.GL_DELETE_STATUS,35712,,,, +I,0,android/opengl/GLES20.GL_DEPTH_ATTACHMENT,36096,,,, +I,0,android/opengl/GLES20.GL_DEPTH_BITS,3414,,,, +I,0,android/opengl/GLES20.GL_DEPTH_BUFFER_BIT,256,,,, +I,0,android/opengl/GLES20.GL_DEPTH_CLEAR_VALUE,2931,,,, +I,0,android/opengl/GLES20.GL_DEPTH_COMPONENT,6402,,,, +I,0,android/opengl/GLES20.GL_DEPTH_COMPONENT16,33189,,,, +I,0,android/opengl/GLES20.GL_DEPTH_FUNC,2932,,,, +I,0,android/opengl/GLES20.GL_DEPTH_RANGE,2928,,,, +I,0,android/opengl/GLES20.GL_DEPTH_TEST,2929,,,, +I,0,android/opengl/GLES20.GL_DEPTH_WRITEMASK,2930,,,, +I,0,android/opengl/GLES20.GL_DITHER,3024,,,, +I,0,android/opengl/GLES20.GL_DONT_CARE,4352,,,, +I,0,android/opengl/GLES20.GL_DST_ALPHA,772,,,, +I,0,android/opengl/GLES20.GL_DST_COLOR,774,,,, +I,0,android/opengl/GLES20.GL_DYNAMIC_DRAW,35048,,,, +I,0,android/opengl/GLES20.GL_ELEMENT_ARRAY_BUFFER,34963,,,, +I,0,android/opengl/GLES20.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, +I,0,android/opengl/GLES20.GL_EQUAL,514,,,, +I,0,android/opengl/GLES20.GL_EXTENSIONS,7939,,,, +I,0,android/opengl/GLES20.GL_FALSE,0,,,, +I,0,android/opengl/GLES20.GL_FASTEST,4353,,,, +I,0,android/opengl/GLES20.GL_FIXED,5132,,,, +I,0,android/opengl/GLES20.GL_FLOAT,5126,,,, +I,0,android/opengl/GLES20.GL_FLOAT_MAT2,35674,,,, +I,0,android/opengl/GLES20.GL_FLOAT_MAT3,35675,,,, +I,0,android/opengl/GLES20.GL_FLOAT_MAT4,35676,,,, +I,0,android/opengl/GLES20.GL_FLOAT_VEC2,35664,,,, +I,0,android/opengl/GLES20.GL_FLOAT_VEC3,35665,,,, +I,0,android/opengl/GLES20.GL_FLOAT_VEC4,35666,,,, +I,0,android/opengl/GLES20.GL_FRAGMENT_SHADER,35632,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER,36160,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME,36049,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE,36048,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE,36051,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL,36050,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_BINDING,36006,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_COMPLETE,36053,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT,36054,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS,36057,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT,36055,,,, +I,0,android/opengl/GLES20.GL_FRAMEBUFFER_UNSUPPORTED,36061,,,, +I,0,android/opengl/GLES20.GL_FRONT,1028,,,, +I,0,android/opengl/GLES20.GL_FRONT_AND_BACK,1032,,,, +I,0,android/opengl/GLES20.GL_FRONT_FACE,2886,,,, +I,0,android/opengl/GLES20.GL_FUNC_ADD,32774,,,, +I,0,android/opengl/GLES20.GL_FUNC_REVERSE_SUBTRACT,32779,,,, +I,0,android/opengl/GLES20.GL_FUNC_SUBTRACT,32778,,,, +I,0,android/opengl/GLES20.GL_GENERATE_MIPMAP_HINT,33170,,,, +I,0,android/opengl/GLES20.GL_GEQUAL,518,,,, +I,0,android/opengl/GLES20.GL_GREATER,516,,,, +I,0,android/opengl/GLES20.GL_GREEN_BITS,3411,,,, +I,0,android/opengl/GLES20.GL_HIGH_FLOAT,36338,,,, +I,0,android/opengl/GLES20.GL_HIGH_INT,36341,,,, +I,0,android/opengl/GLES20.GL_IMPLEMENTATION_COLOR_READ_FORMAT,35739,,,, +I,0,android/opengl/GLES20.GL_IMPLEMENTATION_COLOR_READ_TYPE,35738,,,, +I,0,android/opengl/GLES20.GL_INCR,7682,,,, +I,0,android/opengl/GLES20.GL_INCR_WRAP,34055,,,, +I,0,android/opengl/GLES20.GL_INFO_LOG_LENGTH,35716,,,, +I,0,android/opengl/GLES20.GL_INT,5124,,,, +I,0,android/opengl/GLES20.GL_INT_VEC2,35667,,,, +I,0,android/opengl/GLES20.GL_INT_VEC3,35668,,,, +I,0,android/opengl/GLES20.GL_INT_VEC4,35669,,,, +I,0,android/opengl/GLES20.GL_INVALID_ENUM,1280,,,, +I,0,android/opengl/GLES20.GL_INVALID_FRAMEBUFFER_OPERATION,1286,,,, +I,0,android/opengl/GLES20.GL_INVALID_OPERATION,1282,,,, +I,0,android/opengl/GLES20.GL_INVALID_VALUE,1281,,,, +I,0,android/opengl/GLES20.GL_INVERT,5386,,,, +I,0,android/opengl/GLES20.GL_KEEP,7680,,,, +I,0,android/opengl/GLES20.GL_LEQUAL,515,,,, +I,0,android/opengl/GLES20.GL_LESS,513,,,, +I,0,android/opengl/GLES20.GL_LINE_LOOP,2,,,, +I,0,android/opengl/GLES20.GL_LINE_STRIP,3,,,, +I,0,android/opengl/GLES20.GL_LINE_WIDTH,2849,,,, +I,0,android/opengl/GLES20.GL_LINEAR,9729,,,, +I,0,android/opengl/GLES20.GL_LINEAR_MIPMAP_LINEAR,9987,,,, +I,0,android/opengl/GLES20.GL_LINEAR_MIPMAP_NEAREST,9985,,,, +I,0,android/opengl/GLES20.GL_LINES,1,,,, +I,0,android/opengl/GLES20.GL_LINK_STATUS,35714,,,, +I,0,android/opengl/GLES20.GL_LOW_FLOAT,36336,,,, +I,0,android/opengl/GLES20.GL_LOW_INT,36339,,,, +I,0,android/opengl/GLES20.GL_LUMINANCE,6409,,,, +I,0,android/opengl/GLES20.GL_LUMINANCE_ALPHA,6410,,,, +I,0,android/opengl/GLES20.GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS,35661,,,, +I,0,android/opengl/GLES20.GL_MAX_CUBE_MAP_TEXTURE_SIZE,34076,,,, +I,0,android/opengl/GLES20.GL_MAX_FRAGMENT_UNIFORM_VECTORS,36349,,,, +I,0,android/opengl/GLES20.GL_MAX_RENDERBUFFER_SIZE,34024,,,, +I,0,android/opengl/GLES20.GL_MAX_TEXTURE_IMAGE_UNITS,34930,,,, +I,0,android/opengl/GLES20.GL_MAX_TEXTURE_SIZE,3379,,,, +I,0,android/opengl/GLES20.GL_MAX_VARYING_VECTORS,36348,,,, +I,0,android/opengl/GLES20.GL_MAX_VERTEX_ATTRIBS,34921,,,, +I,0,android/opengl/GLES20.GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS,35660,,,, +I,0,android/opengl/GLES20.GL_MAX_VERTEX_UNIFORM_VECTORS,36347,,,, +I,0,android/opengl/GLES20.GL_MAX_VIEWPORT_DIMS,3386,,,, +I,0,android/opengl/GLES20.GL_MEDIUM_FLOAT,36337,,,, +I,0,android/opengl/GLES20.GL_MEDIUM_INT,36340,,,, +I,0,android/opengl/GLES20.GL_MIRRORED_REPEAT,33648,,,, +I,0,android/opengl/GLES20.GL_NEAREST,9728,,,, +I,0,android/opengl/GLES20.GL_NEAREST_MIPMAP_LINEAR,9986,,,, +I,0,android/opengl/GLES20.GL_NEAREST_MIPMAP_NEAREST,9984,,,, +I,0,android/opengl/GLES20.GL_NEVER,512,,,, +I,0,android/opengl/GLES20.GL_NICEST,4354,,,, +I,0,android/opengl/GLES20.GL_NO_ERROR,0,,,, +I,0,android/opengl/GLES20.GL_NONE,0,,,, +I,0,android/opengl/GLES20.GL_NOTEQUAL,517,,,, +I,0,android/opengl/GLES20.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, +I,0,android/opengl/GLES20.GL_NUM_SHADER_BINARY_FORMATS,36345,,,, +I,0,android/opengl/GLES20.GL_ONE,1,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_CONSTANT_ALPHA,32772,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_CONSTANT_COLOR,32770,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_DST_ALPHA,773,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_DST_COLOR,775,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_SRC_ALPHA,771,,,, +I,0,android/opengl/GLES20.GL_ONE_MINUS_SRC_COLOR,769,,,, +I,0,android/opengl/GLES20.GL_OUT_OF_MEMORY,1285,,,, +I,0,android/opengl/GLES20.GL_PACK_ALIGNMENT,3333,,,, +I,0,android/opengl/GLES20.GL_POINTS,0,,,, +I,0,android/opengl/GLES20.GL_POLYGON_OFFSET_FACTOR,32824,,,, +I,0,android/opengl/GLES20.GL_POLYGON_OFFSET_FILL,32823,,,, +I,0,android/opengl/GLES20.GL_POLYGON_OFFSET_UNITS,10752,,,, +I,0,android/opengl/GLES20.GL_RED_BITS,3410,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER,36161,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_ALPHA_SIZE,36179,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_BINDING,36007,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_BLUE_SIZE,36178,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_DEPTH_SIZE,36180,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_GREEN_SIZE,36177,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_HEIGHT,36163,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_INTERNAL_FORMAT,36164,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_RED_SIZE,36176,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_STENCIL_SIZE,36181,,,, +I,0,android/opengl/GLES20.GL_RENDERBUFFER_WIDTH,36162,,,, +I,0,android/opengl/GLES20.GL_RENDERER,7937,,,, +I,0,android/opengl/GLES20.GL_REPEAT,10497,,,, +I,0,android/opengl/GLES20.GL_REPLACE,7681,,,, +I,0,android/opengl/GLES20.GL_RGB,6407,,,, +I,0,android/opengl/GLES20.GL_RGB5_A1,32855,,,, +I,0,android/opengl/GLES20.GL_RGB565,36194,,,, +I,0,android/opengl/GLES20.GL_RGBA,6408,,,, +I,0,android/opengl/GLES20.GL_RGBA4,32854,,,, +I,0,android/opengl/GLES20.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, +I,0,android/opengl/GLES20.GL_SAMPLE_BUFFERS,32936,,,, +I,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE,32928,,,, +I,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE_INVERT,32939,,,, +I,0,android/opengl/GLES20.GL_SAMPLE_COVERAGE_VALUE,32938,,,, +I,0,android/opengl/GLES20.GL_SAMPLER_2D,35678,,,, +I,0,android/opengl/GLES20.GL_SAMPLER_CUBE,35680,,,, +I,0,android/opengl/GLES20.GL_SAMPLES,32937,,,, +I,0,android/opengl/GLES20.GL_SCISSOR_BOX,3088,,,, +I,0,android/opengl/GLES20.GL_SCISSOR_TEST,3089,,,, +I,0,android/opengl/GLES20.GL_SHADER_BINARY_FORMATS,36344,,,, +I,0,android/opengl/GLES20.GL_SHADER_COMPILER,36346,,,, +I,0,android/opengl/GLES20.GL_SHADER_SOURCE_LENGTH,35720,,,, +I,0,android/opengl/GLES20.GL_SHADER_TYPE,35663,,,, +I,0,android/opengl/GLES20.GL_SHADING_LANGUAGE_VERSION,35724,,,, +I,0,android/opengl/GLES20.GL_SHORT,5122,,,, +I,0,android/opengl/GLES20.GL_SRC_ALPHA,770,,,, +I,0,android/opengl/GLES20.GL_SRC_ALPHA_SATURATE,776,,,, +I,0,android/opengl/GLES20.GL_SRC_COLOR,768,,,, +I,0,android/opengl/GLES20.GL_STATIC_DRAW,35044,,,, +I,0,android/opengl/GLES20.GL_STENCIL_ATTACHMENT,36128,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_FAIL,34817,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_FUNC,34816,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_PASS_DEPTH_FAIL,34818,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_PASS_DEPTH_PASS,34819,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_REF,36003,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_VALUE_MASK,36004,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BACK_WRITEMASK,36005,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BITS,3415,,,, +I,0,android/opengl/GLES20.GL_STENCIL_BUFFER_BIT,1024,,,, +I,0,android/opengl/GLES20.GL_STENCIL_CLEAR_VALUE,2961,,,, +I,0,android/opengl/GLES20.GL_STENCIL_FAIL,2964,,,, +I,0,android/opengl/GLES20.GL_STENCIL_FUNC,2962,,,, +I,0,android/opengl/GLES20.GL_STENCIL_INDEX,6401,,,, +I,0,android/opengl/GLES20.GL_STENCIL_INDEX8,36168,,,, +I,0,android/opengl/GLES20.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, +I,0,android/opengl/GLES20.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, +I,0,android/opengl/GLES20.GL_STENCIL_REF,2967,,,, +I,0,android/opengl/GLES20.GL_STENCIL_TEST,2960,,,, +I,0,android/opengl/GLES20.GL_STENCIL_VALUE_MASK,2963,,,, +I,0,android/opengl/GLES20.GL_STENCIL_WRITEMASK,2968,,,, +I,0,android/opengl/GLES20.GL_STREAM_DRAW,35040,,,, +I,0,android/opengl/GLES20.GL_SUBPIXEL_BITS,3408,,,, +I,0,android/opengl/GLES20.GL_TEXTURE,5890,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_2D,3553,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_BINDING_2D,32873,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_BINDING_CUBE_MAP,34068,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP,34067,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,34070,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,34072,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,34074,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_X,34069,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,34071,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_CUBE_MAP_POSITIVE_Z,34073,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_MAG_FILTER,10240,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_MIN_FILTER,10241,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_WRAP_S,10242,,,, +I,0,android/opengl/GLES20.GL_TEXTURE_WRAP_T,10243,,,, +I,0,android/opengl/GLES20.GL_TEXTURE0,33984,,,, +I,0,android/opengl/GLES20.GL_TEXTURE1,33985,,,, +I,0,android/opengl/GLES20.GL_TEXTURE10,33994,,,, +I,0,android/opengl/GLES20.GL_TEXTURE11,33995,,,, +I,0,android/opengl/GLES20.GL_TEXTURE12,33996,,,, +I,0,android/opengl/GLES20.GL_TEXTURE13,33997,,,, +I,0,android/opengl/GLES20.GL_TEXTURE14,33998,,,, +I,0,android/opengl/GLES20.GL_TEXTURE15,33999,,,, +I,0,android/opengl/GLES20.GL_TEXTURE16,34000,,,, +I,0,android/opengl/GLES20.GL_TEXTURE17,34001,,,, +I,0,android/opengl/GLES20.GL_TEXTURE18,34002,,,, +I,0,android/opengl/GLES20.GL_TEXTURE19,34003,,,, +I,0,android/opengl/GLES20.GL_TEXTURE2,33986,,,, +I,0,android/opengl/GLES20.GL_TEXTURE20,34004,,,, +I,0,android/opengl/GLES20.GL_TEXTURE21,34005,,,, +I,0,android/opengl/GLES20.GL_TEXTURE22,34006,,,, +I,0,android/opengl/GLES20.GL_TEXTURE23,34007,,,, +I,0,android/opengl/GLES20.GL_TEXTURE24,34008,,,, +I,0,android/opengl/GLES20.GL_TEXTURE25,34009,,,, +I,0,android/opengl/GLES20.GL_TEXTURE26,34010,,,, +I,0,android/opengl/GLES20.GL_TEXTURE27,34011,,,, +I,0,android/opengl/GLES20.GL_TEXTURE28,34012,,,, +I,0,android/opengl/GLES20.GL_TEXTURE29,34013,,,, +I,0,android/opengl/GLES20.GL_TEXTURE3,33987,,,, +I,0,android/opengl/GLES20.GL_TEXTURE30,34014,,,, +I,0,android/opengl/GLES20.GL_TEXTURE31,34015,,,, +I,0,android/opengl/GLES20.GL_TEXTURE4,33988,,,, +I,0,android/opengl/GLES20.GL_TEXTURE5,33989,,,, +I,0,android/opengl/GLES20.GL_TEXTURE6,33990,,,, +I,0,android/opengl/GLES20.GL_TEXTURE7,33991,,,, +I,0,android/opengl/GLES20.GL_TEXTURE8,33992,,,, +I,0,android/opengl/GLES20.GL_TEXTURE9,33993,,,, +I,0,android/opengl/GLES20.GL_TRIANGLE_FAN,6,,,, +I,0,android/opengl/GLES20.GL_TRIANGLE_STRIP,5,,,, +I,0,android/opengl/GLES20.GL_TRIANGLES,4,,,, +I,0,android/opengl/GLES20.GL_TRUE,1,,,, +I,0,android/opengl/GLES20.GL_UNPACK_ALIGNMENT,3317,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_BYTE,5121,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_INT,5125,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_SHORT,5123,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, +I,0,android/opengl/GLES20.GL_UNSIGNED_SHORT_5_6_5,33635,,,, +I,0,android/opengl/GLES20.GL_VALIDATE_STATUS,35715,,,, +I,0,android/opengl/GLES20.GL_VENDOR,7936,,,, +I,0,android/opengl/GLES20.GL_VERSION,7938,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING,34975,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_ENABLED,34338,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_NORMALIZED,34922,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_POINTER,34373,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_SIZE,34339,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_STRIDE,34340,,,, +I,0,android/opengl/GLES20.GL_VERTEX_ATTRIB_ARRAY_TYPE,34341,,,, +I,0,android/opengl/GLES20.GL_VERTEX_SHADER,35633,,,, +I,0,android/opengl/GLES20.GL_VIEWPORT,2978,,,, +I,0,android/opengl/GLES20.GL_ZERO,0,,,, +I,18,android/opengl/GLES30.GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH,35381,,,, +I,18,android/opengl/GLES30.GL_ACTIVE_UNIFORM_BLOCKS,35382,,,, +I,18,android/opengl/GLES30.GL_ALREADY_SIGNALED,37146,,,, +I,18,android/opengl/GLES30.GL_ANY_SAMPLES_PASSED,35887,,,, +I,18,android/opengl/GLES30.GL_ANY_SAMPLES_PASSED_CONSERVATIVE,36202,,,, +I,18,android/opengl/GLES30.GL_BLUE,6405,,,, +I,18,android/opengl/GLES30.GL_BUFFER_ACCESS_FLAGS,37151,,,, +I,18,android/opengl/GLES30.GL_BUFFER_MAP_LENGTH,37152,,,, +I,18,android/opengl/GLES30.GL_BUFFER_MAP_OFFSET,37153,,,, +I,18,android/opengl/GLES30.GL_BUFFER_MAP_POINTER,35005,,,, +I,18,android/opengl/GLES30.GL_BUFFER_MAPPED,35004,,,, +I,18,android/opengl/GLES30.GL_COLOR,6144,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT1,36065,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT10,36074,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT11,36075,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT12,36076,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT13,36077,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT14,36078,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT15,36079,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT2,36066,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT3,36067,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT4,36068,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT5,36069,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT6,36070,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT7,36071,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT8,36072,,,, +I,18,android/opengl/GLES30.GL_COLOR_ATTACHMENT9,36073,,,, +I,18,android/opengl/GLES30.GL_COMPARE_REF_TO_TEXTURE,34894,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_R11_EAC,37488,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_RG11_EAC,37490,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_RGB8_ETC2,37492,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2,37494,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_RGBA8_ETC2_EAC,37496,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_SIGNED_R11_EAC,37489,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_SIGNED_RG11_EAC,37491,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC,37497,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_ETC2,37493,,,, +I,18,android/opengl/GLES30.GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2,37495,,,, +I,18,android/opengl/GLES30.GL_CONDITION_SATISFIED,37148,,,, +I,18,android/opengl/GLES30.GL_COPY_READ_BUFFER,36662,,,, +I,18,android/opengl/GLES30.GL_COPY_READ_BUFFER_BINDING,36662,,,, +I,18,android/opengl/GLES30.GL_COPY_WRITE_BUFFER,36663,,,, +I,18,android/opengl/GLES30.GL_COPY_WRITE_BUFFER_BINDING,36663,,,, +I,18,android/opengl/GLES30.GL_CURRENT_QUERY,34917,,,, +I,18,android/opengl/GLES30.GL_DEPTH,6145,,,, +I,18,android/opengl/GLES30.GL_DEPTH_COMPONENT24,33190,,,, +I,18,android/opengl/GLES30.GL_DEPTH_COMPONENT32F,36012,,,, +I,18,android/opengl/GLES30.GL_DEPTH_STENCIL,34041,,,, +I,18,android/opengl/GLES30.GL_DEPTH_STENCIL_ATTACHMENT,33306,,,, +I,18,android/opengl/GLES30.GL_DEPTH24_STENCIL8,35056,,,, +I,18,android/opengl/GLES30.GL_DEPTH32F_STENCIL8,36013,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER0,34853,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER1,34854,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER10,34863,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER11,34864,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER12,34865,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER13,34866,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER14,34867,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER15,34868,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER2,34855,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER3,34856,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER4,34857,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER5,34858,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER6,34859,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER7,34860,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER8,34861,,,, +I,18,android/opengl/GLES30.GL_DRAW_BUFFER9,34862,,,, +I,18,android/opengl/GLES30.GL_DRAW_FRAMEBUFFER,36009,,,, +I,18,android/opengl/GLES30.GL_DRAW_FRAMEBUFFER_BINDING,36006,,,, +I,18,android/opengl/GLES30.GL_DYNAMIC_COPY,35050,,,, +I,18,android/opengl/GLES30.GL_DYNAMIC_READ,35049,,,, +I,18,android/opengl/GLES30.GL_FLOAT_32_UNSIGNED_INT_24_8_REV,36269,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT2x3,35685,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT2x4,35686,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT3x2,35687,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT3x4,35688,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT4x2,35689,,,, +I,18,android/opengl/GLES30.GL_FLOAT_MAT4x3,35690,,,, +I,18,android/opengl/GLES30.GL_FRAGMENT_SHADER_DERIVATIVE_HINT,35723,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE,33301,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE,33300,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING,33296,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE,33297,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE,33302,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE,33299,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE,33298,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE,33303,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER,36052,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_DEFAULT,33304,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE,36182,,,, +I,18,android/opengl/GLES30.GL_FRAMEBUFFER_UNDEFINED,33305,,,, +I,18,android/opengl/GLES30.GL_GREEN,6404,,,, +I,18,android/opengl/GLES30.GL_HALF_FLOAT,5131,,,, +I,18,android/opengl/GLES30.GL_INT_2_10_10_10_REV,36255,,,, +I,18,android/opengl/GLES30.GL_INT_SAMPLER_2D,36298,,,, +I,18,android/opengl/GLES30.GL_INT_SAMPLER_2D_ARRAY,36303,,,, +I,18,android/opengl/GLES30.GL_INT_SAMPLER_3D,36299,,,, +I,18,android/opengl/GLES30.GL_INT_SAMPLER_CUBE,36300,,,, +I,18,android/opengl/GLES30.GL_INTERLEAVED_ATTRIBS,35980,,,, +I,18,android/opengl/GLES30.GL_INVALID_INDEX,-1,,,, +I,18,android/opengl/GLES30.GL_MAJOR_VERSION,33307,,,, +I,18,android/opengl/GLES30.GL_MAP_FLUSH_EXPLICIT_BIT,16,,,, +I,18,android/opengl/GLES30.GL_MAP_INVALIDATE_BUFFER_BIT,8,,,, +I,18,android/opengl/GLES30.GL_MAP_INVALIDATE_RANGE_BIT,4,,,, +I,18,android/opengl/GLES30.GL_MAP_READ_BIT,1,,,, +I,18,android/opengl/GLES30.GL_MAP_UNSYNCHRONIZED_BIT,32,,,, +I,18,android/opengl/GLES30.GL_MAP_WRITE_BIT,2,,,, +I,18,android/opengl/GLES30.GL_MAX,32776,,,, +I,18,android/opengl/GLES30.GL_MAX_3D_TEXTURE_SIZE,32883,,,, +I,18,android/opengl/GLES30.GL_MAX_ARRAY_TEXTURE_LAYERS,35071,,,, +I,18,android/opengl/GLES30.GL_MAX_COLOR_ATTACHMENTS,36063,,,, +I,18,android/opengl/GLES30.GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS,35379,,,, +I,18,android/opengl/GLES30.GL_MAX_COMBINED_UNIFORM_BLOCKS,35374,,,, +I,18,android/opengl/GLES30.GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS,35377,,,, +I,18,android/opengl/GLES30.GL_MAX_DRAW_BUFFERS,34852,,,, +I,18,android/opengl/GLES30.GL_MAX_ELEMENT_INDEX,36203,,,, +I,18,android/opengl/GLES30.GL_MAX_ELEMENTS_INDICES,33001,,,, +I,18,android/opengl/GLES30.GL_MAX_ELEMENTS_VERTICES,33000,,,, +I,18,android/opengl/GLES30.GL_MAX_FRAGMENT_INPUT_COMPONENTS,37157,,,, +I,18,android/opengl/GLES30.GL_MAX_FRAGMENT_UNIFORM_BLOCKS,35373,,,, +I,18,android/opengl/GLES30.GL_MAX_FRAGMENT_UNIFORM_COMPONENTS,35657,,,, +I,18,android/opengl/GLES30.GL_MAX_PROGRAM_TEXEL_OFFSET,35077,,,, +I,18,android/opengl/GLES30.GL_MAX_SAMPLES,36183,,,, +I,18,android/opengl/GLES30.GL_MAX_SERVER_WAIT_TIMEOUT,37137,,,, +I,18,android/opengl/GLES30.GL_MAX_TEXTURE_LOD_BIAS,34045,,,, +I,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS,35978,,,, +I,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS,35979,,,, +I,18,android/opengl/GLES30.GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS,35968,,,, +I,18,android/opengl/GLES30.GL_MAX_UNIFORM_BLOCK_SIZE,35376,,,, +I,18,android/opengl/GLES30.GL_MAX_UNIFORM_BUFFER_BINDINGS,35375,,,, +I,18,android/opengl/GLES30.GL_MAX_VARYING_COMPONENTS,35659,,,, +I,18,android/opengl/GLES30.GL_MAX_VERTEX_OUTPUT_COMPONENTS,37154,,,, +I,18,android/opengl/GLES30.GL_MAX_VERTEX_UNIFORM_BLOCKS,35371,,,, +I,18,android/opengl/GLES30.GL_MAX_VERTEX_UNIFORM_COMPONENTS,35658,,,, +I,18,android/opengl/GLES30.GL_MIN,32775,,,, +I,18,android/opengl/GLES30.GL_MIN_PROGRAM_TEXEL_OFFSET,35076,,,, +I,18,android/opengl/GLES30.GL_MINOR_VERSION,33308,,,, +I,18,android/opengl/GLES30.GL_NUM_EXTENSIONS,33309,,,, +I,18,android/opengl/GLES30.GL_NUM_PROGRAM_BINARY_FORMATS,34814,,,, +I,18,android/opengl/GLES30.GL_NUM_SAMPLE_COUNTS,37760,,,, +I,18,android/opengl/GLES30.GL_OBJECT_TYPE,37138,,,, +I,18,android/opengl/GLES30.GL_PACK_ROW_LENGTH,3330,,,, +I,18,android/opengl/GLES30.GL_PACK_SKIP_PIXELS,3332,,,, +I,18,android/opengl/GLES30.GL_PACK_SKIP_ROWS,3331,,,, +I,18,android/opengl/GLES30.GL_PIXEL_PACK_BUFFER,35051,,,, +I,18,android/opengl/GLES30.GL_PIXEL_PACK_BUFFER_BINDING,35053,,,, +I,18,android/opengl/GLES30.GL_PIXEL_UNPACK_BUFFER,35052,,,, +I,18,android/opengl/GLES30.GL_PIXEL_UNPACK_BUFFER_BINDING,35055,,,, +I,18,android/opengl/GLES30.GL_PRIMITIVE_RESTART_FIXED_INDEX,36201,,,, +I,18,android/opengl/GLES30.GL_PROGRAM_BINARY_FORMATS,34815,,,, +I,18,android/opengl/GLES30.GL_PROGRAM_BINARY_LENGTH,34625,,,, +I,18,android/opengl/GLES30.GL_PROGRAM_BINARY_RETRIEVABLE_HINT,33367,,,, +I,18,android/opengl/GLES30.GL_QUERY_RESULT,34918,,,, +I,18,android/opengl/GLES30.GL_QUERY_RESULT_AVAILABLE,34919,,,, +I,18,android/opengl/GLES30.GL_R11F_G11F_B10F,35898,,,, +I,18,android/opengl/GLES30.GL_R16F,33325,,,, +I,18,android/opengl/GLES30.GL_R16I,33331,,,, +I,18,android/opengl/GLES30.GL_R16UI,33332,,,, +I,18,android/opengl/GLES30.GL_R32F,33326,,,, +I,18,android/opengl/GLES30.GL_R32I,33333,,,, +I,18,android/opengl/GLES30.GL_R32UI,33334,,,, +I,18,android/opengl/GLES30.GL_R8,33321,,,, +I,18,android/opengl/GLES30.GL_R8_SNORM,36756,,,, +I,18,android/opengl/GLES30.GL_R8I,33329,,,, +I,18,android/opengl/GLES30.GL_R8UI,33330,,,, +I,18,android/opengl/GLES30.GL_RASTERIZER_DISCARD,35977,,,, +I,18,android/opengl/GLES30.GL_READ_BUFFER,3074,,,, +I,18,android/opengl/GLES30.GL_READ_FRAMEBUFFER,36008,,,, +I,18,android/opengl/GLES30.GL_READ_FRAMEBUFFER_BINDING,36010,,,, +I,18,android/opengl/GLES30.GL_RED,6403,,,, +I,18,android/opengl/GLES30.GL_RED_INTEGER,36244,,,, +I,18,android/opengl/GLES30.GL_RENDERBUFFER_SAMPLES,36011,,,, +I,18,android/opengl/GLES30.GL_RG,33319,,,, +I,18,android/opengl/GLES30.GL_RG_INTEGER,33320,,,, +I,18,android/opengl/GLES30.GL_RG16F,33327,,,, +I,18,android/opengl/GLES30.GL_RG16I,33337,,,, +I,18,android/opengl/GLES30.GL_RG16UI,33338,,,, +I,18,android/opengl/GLES30.GL_RG32F,33328,,,, +I,18,android/opengl/GLES30.GL_RG32I,33339,,,, +I,18,android/opengl/GLES30.GL_RG32UI,33340,,,, +I,18,android/opengl/GLES30.GL_RG8,33323,,,, +I,18,android/opengl/GLES30.GL_RG8_SNORM,36757,,,, +I,18,android/opengl/GLES30.GL_RG8I,33335,,,, +I,18,android/opengl/GLES30.GL_RG8UI,33336,,,, +I,18,android/opengl/GLES30.GL_RGB_INTEGER,36248,,,, +I,18,android/opengl/GLES30.GL_RGB10_A2,32857,,,, +I,18,android/opengl/GLES30.GL_RGB10_A2UI,36975,,,, +I,18,android/opengl/GLES30.GL_RGB16F,34843,,,, +I,18,android/opengl/GLES30.GL_RGB16I,36233,,,, +I,18,android/opengl/GLES30.GL_RGB16UI,36215,,,, +I,18,android/opengl/GLES30.GL_RGB32F,34837,,,, +I,18,android/opengl/GLES30.GL_RGB32I,36227,,,, +I,18,android/opengl/GLES30.GL_RGB32UI,36209,,,, +I,18,android/opengl/GLES30.GL_RGB8,32849,,,, +I,18,android/opengl/GLES30.GL_RGB8_SNORM,36758,,,, +I,18,android/opengl/GLES30.GL_RGB8I,36239,,,, +I,18,android/opengl/GLES30.GL_RGB8UI,36221,,,, +I,18,android/opengl/GLES30.GL_RGB9_E5,35901,,,, +I,18,android/opengl/GLES30.GL_RGBA_INTEGER,36249,,,, +I,18,android/opengl/GLES30.GL_RGBA16F,34842,,,, +I,18,android/opengl/GLES30.GL_RGBA16I,36232,,,, +I,18,android/opengl/GLES30.GL_RGBA16UI,36214,,,, +I,18,android/opengl/GLES30.GL_RGBA32F,34836,,,, +I,18,android/opengl/GLES30.GL_RGBA32I,36226,,,, +I,18,android/opengl/GLES30.GL_RGBA32UI,36208,,,, +I,18,android/opengl/GLES30.GL_RGBA8,32856,,,, +I,18,android/opengl/GLES30.GL_RGBA8_SNORM,36759,,,, +I,18,android/opengl/GLES30.GL_RGBA8I,36238,,,, +I,18,android/opengl/GLES30.GL_RGBA8UI,36220,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_2D_ARRAY,36289,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_2D_ARRAY_SHADOW,36292,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_2D_SHADOW,35682,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_3D,35679,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_BINDING,35097,,,, +I,18,android/opengl/GLES30.GL_SAMPLER_CUBE_SHADOW,36293,,,, +I,18,android/opengl/GLES30.GL_SEPARATE_ATTRIBS,35981,,,, +I,18,android/opengl/GLES30.GL_SIGNALED,37145,,,, +I,18,android/opengl/GLES30.GL_SIGNED_NORMALIZED,36764,,,, +I,18,android/opengl/GLES30.GL_SRGB,35904,,,, +I,18,android/opengl/GLES30.GL_SRGB8,35905,,,, +I,18,android/opengl/GLES30.GL_SRGB8_ALPHA8,35907,,,, +I,18,android/opengl/GLES30.GL_STATIC_COPY,35046,,,, +I,18,android/opengl/GLES30.GL_STATIC_READ,35045,,,, +I,18,android/opengl/GLES30.GL_STENCIL,6146,,,, +I,18,android/opengl/GLES30.GL_STREAM_COPY,35042,,,, +I,18,android/opengl/GLES30.GL_STREAM_READ,35041,,,, +I,18,android/opengl/GLES30.GL_SYNC_CONDITION,37139,,,, +I,18,android/opengl/GLES30.GL_SYNC_FENCE,37142,,,, +I,18,android/opengl/GLES30.GL_SYNC_FLAGS,37141,,,, +I,18,android/opengl/GLES30.GL_SYNC_FLUSH_COMMANDS_BIT,1,,,, +I,18,android/opengl/GLES30.GL_SYNC_GPU_COMMANDS_COMPLETE,37143,,,, +I,18,android/opengl/GLES30.GL_SYNC_STATUS,37140,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_2D_ARRAY,35866,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_3D,32879,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_BASE_LEVEL,33084,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_BINDING_2D_ARRAY,35869,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_BINDING_3D,32874,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_COMPARE_FUNC,34893,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_COMPARE_MODE,34892,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_IMMUTABLE_FORMAT,37167,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_IMMUTABLE_LEVELS,33503,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_MAX_LEVEL,33085,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_MAX_LOD,33083,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_MIN_LOD,33082,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_A,36421,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_B,36420,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_G,36419,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_SWIZZLE_R,36418,,,, +I,18,android/opengl/GLES30.GL_TEXTURE_WRAP_R,32882,,,, +I,18,android/opengl/GLES30.GL_TIMEOUT_EXPIRED,37147,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK,36386,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_ACTIVE,36388,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BINDING,36389,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER,35982,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_BINDING,35983,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_MODE,35967,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_SIZE,35973,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_BUFFER_START,35972,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_PAUSED,36387,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN,35976,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH,35958,,,, +I,18,android/opengl/GLES30.GL_TRANSFORM_FEEDBACK_VARYINGS,35971,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_ARRAY_STRIDE,35388,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES,35395,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS,35394,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_BINDING,35391,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_DATA_SIZE,35392,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_INDEX,35386,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_NAME_LENGTH,35393,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER,35398,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER,35396,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BUFFER,35345,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_BINDING,35368,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT,35380,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_SIZE,35370,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_BUFFER_START,35369,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_IS_ROW_MAJOR,35390,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_MATRIX_STRIDE,35389,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_NAME_LENGTH,35385,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_OFFSET,35387,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_SIZE,35384,,,, +I,18,android/opengl/GLES30.GL_UNIFORM_TYPE,35383,,,, +I,18,android/opengl/GLES30.GL_UNPACK_IMAGE_HEIGHT,32878,,,, +I,18,android/opengl/GLES30.GL_UNPACK_ROW_LENGTH,3314,,,, +I,18,android/opengl/GLES30.GL_UNPACK_SKIP_IMAGES,32877,,,, +I,18,android/opengl/GLES30.GL_UNPACK_SKIP_PIXELS,3316,,,, +I,18,android/opengl/GLES30.GL_UNPACK_SKIP_ROWS,3315,,,, +I,18,android/opengl/GLES30.GL_UNSIGNALED,37144,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_10F_11F_11F_REV,35899,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_2_10_10_10_REV,33640,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_24_8,34042,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_5_9_9_9_REV,35902,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_2D,36306,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_2D_ARRAY,36311,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_3D,36307,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_SAMPLER_CUBE,36308,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC2,36294,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC3,36295,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_INT_VEC4,36296,,,, +I,18,android/opengl/GLES30.GL_UNSIGNED_NORMALIZED,35863,,,, +I,18,android/opengl/GLES30.GL_VERTEX_ARRAY_BINDING,34229,,,, +I,18,android/opengl/GLES30.GL_VERTEX_ATTRIB_ARRAY_DIVISOR,35070,,,, +I,18,android/opengl/GLES30.GL_VERTEX_ATTRIB_ARRAY_INTEGER,35069,,,, +I,18,android/opengl/GLES30.GL_WAIT_FAILED,37149,,,, +I,21,android/opengl/GLES31.GL_ACTIVE_ATOMIC_COUNTER_BUFFERS,37593,,,, +I,21,android/opengl/GLES31.GL_ACTIVE_PROGRAM,33369,,,, +I,21,android/opengl/GLES31.GL_ACTIVE_RESOURCES,37621,,,, +I,21,android/opengl/GLES31.GL_ACTIVE_VARIABLES,37637,,,, +I,24,android/opengl/GLES31.GL_ALL_BARRIER_BITS,-1,,,, +I,21,android/opengl/GLES31.GL_ALL_SHADER_BITS,-1,,,, +I,21,android/opengl/GLES31.GL_ARRAY_SIZE,37627,,,, +I,21,android/opengl/GLES31.GL_ARRAY_STRIDE,37630,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BARRIER_BIT,4096,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER,37568,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_BINDING,37569,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_INDEX,37633,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_SIZE,37571,,,, +I,21,android/opengl/GLES31.GL_ATOMIC_COUNTER_BUFFER_START,37570,,,, +I,21,android/opengl/GLES31.GL_BLOCK_INDEX,37629,,,, +I,21,android/opengl/GLES31.GL_BUFFER_BINDING,37634,,,, +I,21,android/opengl/GLES31.GL_BUFFER_DATA_SIZE,37635,,,, +I,21,android/opengl/GLES31.GL_BUFFER_UPDATE_BARRIER_BIT,512,,,, +I,21,android/opengl/GLES31.GL_BUFFER_VARIABLE,37605,,,, +I,21,android/opengl/GLES31.GL_COMMAND_BARRIER_BIT,64,,,, +I,21,android/opengl/GLES31.GL_COMPUTE_SHADER,37305,,,, +I,21,android/opengl/GLES31.GL_COMPUTE_SHADER_BIT,32,,,, +I,21,android/opengl/GLES31.GL_COMPUTE_WORK_GROUP_SIZE,33383,,,, +I,21,android/opengl/GLES31.GL_DEPTH_STENCIL_TEXTURE_MODE,37098,,,, +I,21,android/opengl/GLES31.GL_DISPATCH_INDIRECT_BUFFER,37102,,,, +I,21,android/opengl/GLES31.GL_DISPATCH_INDIRECT_BUFFER_BINDING,37103,,,, +I,21,android/opengl/GLES31.GL_DRAW_INDIRECT_BUFFER,36671,,,, +I,21,android/opengl/GLES31.GL_DRAW_INDIRECT_BUFFER_BINDING,36675,,,, +I,24,android/opengl/GLES31.GL_ELEMENT_ARRAY_BARRIER_BIT,2,,,, +I,21,android/opengl/GLES31.GL_FRAGMENT_SHADER_BIT,2,,,, +I,21,android/opengl/GLES31.GL_FRAMEBUFFER_BARRIER_BIT,1024,,,, +I,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS,37652,,,, +I,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_HEIGHT,37649,,,, +I,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_SAMPLES,37651,,,, +I,21,android/opengl/GLES31.GL_FRAMEBUFFER_DEFAULT_WIDTH,37648,,,, +I,21,android/opengl/GLES31.GL_IMAGE_2D,36941,,,, +I,21,android/opengl/GLES31.GL_IMAGE_2D_ARRAY,36947,,,, +I,21,android/opengl/GLES31.GL_IMAGE_3D,36942,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_ACCESS,36670,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_FORMAT,36974,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_LAYER,36669,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_LAYERED,36668,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_LEVEL,36667,,,, +I,21,android/opengl/GLES31.GL_IMAGE_BINDING_NAME,36666,,,, +I,21,android/opengl/GLES31.GL_IMAGE_CUBE,36944,,,, +I,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS,37065,,,, +I,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE,37064,,,, +I,21,android/opengl/GLES31.GL_IMAGE_FORMAT_COMPATIBILITY_TYPE,37063,,,, +I,21,android/opengl/GLES31.GL_INT_IMAGE_2D,36952,,,, +I,21,android/opengl/GLES31.GL_INT_IMAGE_2D_ARRAY,36958,,,, +I,21,android/opengl/GLES31.GL_INT_IMAGE_3D,36953,,,, +I,21,android/opengl/GLES31.GL_INT_IMAGE_CUBE,36955,,,, +I,21,android/opengl/GLES31.GL_INT_SAMPLER_2D_MULTISAMPLE,37129,,,, +I,21,android/opengl/GLES31.GL_IS_ROW_MAJOR,37632,,,, +I,21,android/opengl/GLES31.GL_LOCATION,37646,,,, +I,21,android/opengl/GLES31.GL_MATRIX_STRIDE,37631,,,, +I,21,android/opengl/GLES31.GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS,37596,,,, +I,21,android/opengl/GLES31.GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE,37592,,,, +I,21,android/opengl/GLES31.GL_MAX_COLOR_TEXTURE_SAMPLES,37134,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS,37585,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_ATOMIC_COUNTERS,37591,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS,33382,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_IMAGE_UNIFORMS,37071,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES,36665,,,, +I,21,android/opengl/GLES31.GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS,37084,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS,33380,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_ATOMIC_COUNTERS,33381,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_IMAGE_UNIFORMS,37309,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS,37083,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_SHARED_MEMORY_SIZE,33378,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS,37308,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_UNIFORM_BLOCKS,37307,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_UNIFORM_COMPONENTS,33379,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_COUNT,37310,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS,37099,,,, +I,21,android/opengl/GLES31.GL_MAX_COMPUTE_WORK_GROUP_SIZE,37311,,,, +I,21,android/opengl/GLES31.GL_MAX_DEPTH_TEXTURE_SAMPLES,37135,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS,37584,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAGMENT_ATOMIC_COUNTERS,37590,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAGMENT_IMAGE_UNIFORMS,37070,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS,37082,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_HEIGHT,37654,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_SAMPLES,37656,,,, +I,21,android/opengl/GLES31.GL_MAX_FRAMEBUFFER_WIDTH,37653,,,, +I,21,android/opengl/GLES31.GL_MAX_IMAGE_UNITS,36664,,,, +I,21,android/opengl/GLES31.GL_MAX_INTEGER_SAMPLES,37136,,,, +I,21,android/opengl/GLES31.GL_MAX_NAME_LENGTH,37622,,,, +I,21,android/opengl/GLES31.GL_MAX_NUM_ACTIVE_VARIABLES,37623,,,, +I,21,android/opengl/GLES31.GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET,36447,,,, +I,21,android/opengl/GLES31.GL_MAX_SAMPLE_MASK_WORDS,36441,,,, +I,21,android/opengl/GLES31.GL_MAX_SHADER_STORAGE_BLOCK_SIZE,37086,,,, +I,21,android/opengl/GLES31.GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS,37085,,,, +I,21,android/opengl/GLES31.GL_MAX_UNIFORM_LOCATIONS,33390,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS,37580,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_ATOMIC_COUNTERS,37586,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_BINDINGS,33498,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET,33497,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_ATTRIB_STRIDE,33509,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_IMAGE_UNIFORMS,37066,,,, +I,21,android/opengl/GLES31.GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS,37078,,,, +I,21,android/opengl/GLES31.GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET,36446,,,, +I,21,android/opengl/GLES31.GL_NAME_LENGTH,37625,,,, +I,21,android/opengl/GLES31.GL_NUM_ACTIVE_VARIABLES,37636,,,, +I,21,android/opengl/GLES31.GL_OFFSET,37628,,,, +I,21,android/opengl/GLES31.GL_PIXEL_BUFFER_BARRIER_BIT,128,,,, +I,21,android/opengl/GLES31.GL_PROGRAM_INPUT,37603,,,, +I,21,android/opengl/GLES31.GL_PROGRAM_OUTPUT,37604,,,, +I,21,android/opengl/GLES31.GL_PROGRAM_PIPELINE_BINDING,33370,,,, +I,21,android/opengl/GLES31.GL_PROGRAM_SEPARABLE,33368,,,, +I,21,android/opengl/GLES31.GL_READ_ONLY,35000,,,, +I,21,android/opengl/GLES31.GL_READ_WRITE,35002,,,, +I,21,android/opengl/GLES31.GL_REFERENCED_BY_COMPUTE_SHADER,37643,,,, +I,21,android/opengl/GLES31.GL_REFERENCED_BY_FRAGMENT_SHADER,37642,,,, +I,21,android/opengl/GLES31.GL_REFERENCED_BY_VERTEX_SHADER,37638,,,, +I,21,android/opengl/GLES31.GL_SAMPLE_MASK,36433,,,, +I,21,android/opengl/GLES31.GL_SAMPLE_MASK_VALUE,36434,,,, +I,21,android/opengl/GLES31.GL_SAMPLE_POSITION,36432,,,, +I,21,android/opengl/GLES31.GL_SAMPLER_2D_MULTISAMPLE,37128,,,, +I,24,android/opengl/GLES31.GL_SHADER_IMAGE_ACCESS_BARRIER_BIT,32,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BARRIER_BIT,8192,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BLOCK,37606,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER,37074,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_BINDING,37075,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT,37087,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_SIZE,37077,,,, +I,21,android/opengl/GLES31.GL_SHADER_STORAGE_BUFFER_START,37076,,,, +I,21,android/opengl/GLES31.GL_STENCIL_INDEX,6401,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_2D_MULTISAMPLE,37120,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_ALPHA_SIZE,32863,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_ALPHA_TYPE,35859,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_BINDING_2D_MULTISAMPLE,37124,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_BLUE_SIZE,32862,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_BLUE_TYPE,35858,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_COMPRESSED,34465,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_DEPTH,32881,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_DEPTH_SIZE,34890,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_DEPTH_TYPE,35862,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_FETCH_BARRIER_BIT,8,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_FIXED_SAMPLE_LOCATIONS,37127,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_GREEN_SIZE,32861,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_GREEN_TYPE,35857,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_HEIGHT,4097,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_INTERNAL_FORMAT,4099,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_RED_SIZE,32860,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_RED_TYPE,35856,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_SAMPLES,37126,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_SHARED_SIZE,35903,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_STENCIL_SIZE,35057,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_UPDATE_BARRIER_BIT,256,,,, +I,21,android/opengl/GLES31.GL_TEXTURE_WIDTH,4096,,,, +I,21,android/opengl/GLES31.GL_TOP_LEVEL_ARRAY_SIZE,37644,,,, +I,21,android/opengl/GLES31.GL_TOP_LEVEL_ARRAY_STRIDE,37645,,,, +I,21,android/opengl/GLES31.GL_TRANSFORM_FEEDBACK_BARRIER_BIT,2048,,,, +I,21,android/opengl/GLES31.GL_TRANSFORM_FEEDBACK_VARYING,37620,,,, +I,21,android/opengl/GLES31.GL_TYPE,37626,,,, +I,21,android/opengl/GLES31.GL_UNIFORM,37601,,,, +I,21,android/opengl/GLES31.GL_UNIFORM_BARRIER_BIT,4,,,, +I,21,android/opengl/GLES31.GL_UNIFORM_BLOCK,37602,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_ATOMIC_COUNTER,37595,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_2D,36963,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_2D_ARRAY,36969,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_3D,36964,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_IMAGE_CUBE,36966,,,, +I,21,android/opengl/GLES31.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE,37130,,,, +I,24,android/opengl/GLES31.GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT,1,,,, +I,21,android/opengl/GLES31.GL_VERTEX_ATTRIB_BINDING,33492,,,, +I,21,android/opengl/GLES31.GL_VERTEX_ATTRIB_RELATIVE_OFFSET,33493,,,, +I,21,android/opengl/GLES31.GL_VERTEX_BINDING_BUFFER,36687,,,, +I,21,android/opengl/GLES31.GL_VERTEX_BINDING_DIVISOR,33494,,,, +I,21,android/opengl/GLES31.GL_VERTEX_BINDING_OFFSET,33495,,,, +I,21,android/opengl/GLES31.GL_VERTEX_BINDING_STRIDE,33496,,,, +I,21,android/opengl/GLES31.GL_VERTEX_SHADER_BIT,1,,,, +I,21,android/opengl/GLES31.GL_WRITE_ONLY,35001,,,, +I,21,android/opengl/GLES31Ext.GL_BLEND_ADVANCED_COHERENT_KHR,37509,,,, +I,21,android/opengl/GLES31Ext.GL_BUFFER_KHR,33504,,,, +I,21,android/opengl/GLES31Ext.GL_CLAMP_TO_BORDER_EXT,33069,,,, +I,21,android/opengl/GLES31Ext.GL_COLORBURN_KHR,37530,,,, +I,21,android/opengl/GLES31Ext.GL_COLORDODGE_KHR,37529,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x10_KHR,37819,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x5_KHR,37816,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x6_KHR,37817,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_10x8_KHR,37818,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_12x10_KHR,37820,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_12x12_KHR,37821,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_4x4_KHR,37808,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_5x4_KHR,37809,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_5x5_KHR,37810,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_6x5_KHR,37811,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_6x6_KHR,37812,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x5_KHR,37813,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x6_KHR,37814,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_RGBA_ASTC_8x8_KHR,37815,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR,37851,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR,37848,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR,37849,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR,37850,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR,37852,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR,37853,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR,37840,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR,37841,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR,37842,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR,37843,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR,37844,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR,37845,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR,37846,,,, +I,21,android/opengl/GLES31Ext.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR,37847,,,, +I,21,android/opengl/GLES31Ext.GL_CONTEXT_FLAG_DEBUG_BIT_KHR,2,,,, +I,21,android/opengl/GLES31Ext.GL_DARKEN_KHR,37527,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_CALLBACK_FUNCTION_KHR,33348,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_CALLBACK_USER_PARAM_KHR,33349,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_GROUP_STACK_DEPTH_KHR,33389,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_LOGGED_MESSAGES_KHR,37189,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR,33347,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_OUTPUT_KHR,37600,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR,33346,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_HIGH_KHR,37190,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_LOW_KHR,37192,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_MEDIUM_KHR,37191,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SEVERITY_NOTIFICATION_KHR,33387,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_API_KHR,33350,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_APPLICATION_KHR,33354,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_OTHER_KHR,33355,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_SHADER_COMPILER_KHR,33352,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_THIRD_PARTY_KHR,33353,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR,33351,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR,33357,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_ERROR_KHR,33356,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_MARKER_KHR,33384,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_OTHER_KHR,33361,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PERFORMANCE_KHR,33360,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_POP_GROUP_KHR,33386,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PORTABILITY_KHR,33359,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_PUSH_GROUP_KHR,33385,,,, +I,21,android/opengl/GLES31Ext.GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR,33358,,,, +I,21,android/opengl/GLES31Ext.GL_DECODE_EXT,35401,,,, +I,21,android/opengl/GLES31Ext.GL_DIFFERENCE_KHR,37534,,,, +I,21,android/opengl/GLES31Ext.GL_EXCLUSION_KHR,37536,,,, +I,21,android/opengl/GLES31Ext.GL_FIRST_VERTEX_CONVENTION_EXT,36429,,,, +I,21,android/opengl/GLES31Ext.GL_FRACTIONAL_EVEN_EXT,36476,,,, +I,21,android/opengl/GLES31Ext.GL_FRACTIONAL_ODD_EXT,36475,,,, +I,21,android/opengl/GLES31Ext.GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES,36445,,,, +I,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT,36263,,,, +I,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT,37650,,,, +I,21,android/opengl/GLES31Ext.GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT,36264,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_INPUT_TYPE_EXT,35095,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT,35096,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_LINKED_VERTICES_OUT_EXT,35094,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_BIT_EXT,4,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_EXT,36313,,,, +I,21,android/opengl/GLES31Ext.GL_GEOMETRY_SHADER_INVOCATIONS_EXT,34943,,,, +I,21,android/opengl/GLES31Ext.GL_HARDLIGHT_KHR,37531,,,, +I,21,android/opengl/GLES31Ext.GL_HSL_COLOR_KHR,37551,,,, +I,21,android/opengl/GLES31Ext.GL_HSL_HUE_KHR,37549,,,, +I,21,android/opengl/GLES31Ext.GL_HSL_LUMINOSITY_KHR,37552,,,, +I,21,android/opengl/GLES31Ext.GL_HSL_SATURATION_KHR,37550,,,, +I,21,android/opengl/GLES31Ext.GL_IMAGE_BUFFER_EXT,36945,,,, +I,21,android/opengl/GLES31Ext.GL_IMAGE_CUBE_MAP_ARRAY_EXT,36948,,,, +I,21,android/opengl/GLES31Ext.GL_INT_IMAGE_BUFFER_EXT,36956,,,, +I,21,android/opengl/GLES31Ext.GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT,36959,,,, +I,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37132,,,, +I,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_BUFFER_EXT,36304,,,, +I,21,android/opengl/GLES31Ext.GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT,36878,,,, +I,21,android/opengl/GLES31Ext.GL_IS_PER_PATCH_EXT,37607,,,, +I,21,android/opengl/GLES31Ext.GL_ISOLINES_EXT,36474,,,, +I,21,android/opengl/GLES31Ext.GL_LAST_VERTEX_CONVENTION_EXT,36430,,,, +I,21,android/opengl/GLES31Ext.GL_LAYER_PROVOKING_VERTEX_EXT,33374,,,, +I,21,android/opengl/GLES31Ext.GL_LIGHTEN_KHR,37528,,,, +I,21,android/opengl/GLES31Ext.GL_LINE_STRIP_ADJACENCY_EXT,11,,,, +I,21,android/opengl/GLES31Ext.GL_LINES_ADJACENCY_EXT,10,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT,35378,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT,36382,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT,36383,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR,33388,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_LOGGED_MESSAGES_KHR,37188,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_DEBUG_MESSAGE_LENGTH_KHR,37187,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES,36444,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_FRAMEBUFFER_LAYERS_EXT,37655,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT,37583,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT,37589,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT,37069,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT,37155,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT,37156,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT,36320,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT,36442,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT,37079,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT,35881,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT,36321,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT,35372,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT,36319,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_LABEL_LENGTH_KHR,33512,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_PATCH_VERTICES_EXT,36477,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT,37581,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT,37587,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT,37067,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT,34924,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT,36483,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT,37080,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT,36481,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT,36485,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT,36489,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT,36479,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT,37582,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT,37588,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT,37068,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT,34925,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT,36486,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT,37081,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT,36482,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT,36490,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT,36480,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_GEN_LEVEL_EXT,36478,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TESS_PATCH_COMPONENTS_EXT,36484,,,, +I,21,android/opengl/GLES31Ext.GL_MAX_TEXTURE_BUFFER_SIZE_EXT,35883,,,, +I,21,android/opengl/GLES31Ext.GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES,36443,,,, +I,21,android/opengl/GLES31Ext.GL_MIN_SAMPLE_SHADING_VALUE_OES,35895,,,, +I,21,android/opengl/GLES31Ext.GL_MULTIPLY_KHR,37524,,,, +I,21,android/opengl/GLES31Ext.GL_OVERLAY_KHR,37526,,,, +I,21,android/opengl/GLES31Ext.GL_PATCH_VERTICES_EXT,36466,,,, +I,21,android/opengl/GLES31Ext.GL_PATCHES_EXT,14,,,, +I,21,android/opengl/GLES31Ext.GL_PRIMITIVE_BOUNDING_BOX_EXT,37566,,,, +I,21,android/opengl/GLES31Ext.GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED,33313,,,, +I,21,android/opengl/GLES31Ext.GL_PRIMITIVES_GENERATED_EXT,35975,,,, +I,21,android/opengl/GLES31Ext.GL_PROGRAM_KHR,33506,,,, +I,21,android/opengl/GLES31Ext.GL_QUADS_EXT,7,,,, +I,21,android/opengl/GLES31Ext.GL_QUERY_KHR,33507,,,, +I,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_GEOMETRY_SHADER_EXT,37641,,,, +I,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT,37639,,,, +I,21,android/opengl/GLES31Ext.GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT,37640,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLE_SHADING_OES,35894,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37131,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLER_BUFFER_EXT,36290,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLER_CUBE_MAP_ARRAY_EXT,36876,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT,36877,,,, +I,21,android/opengl/GLES31Ext.GL_SAMPLER_KHR,33510,,,, +I,21,android/opengl/GLES31Ext.GL_SCREEN_KHR,37525,,,, +I,21,android/opengl/GLES31Ext.GL_SHADER_KHR,33505,,,, +I,21,android/opengl/GLES31Ext.GL_SKIP_DECODE_EXT,35402,,,, +I,21,android/opengl/GLES31Ext.GL_SOFTLIGHT_KHR,37532,,,, +I,21,android/opengl/GLES31Ext.GL_STACK_OVERFLOW_KHR,1283,,,, +I,21,android/opengl/GLES31Ext.GL_STACK_UNDERFLOW_KHR,1284,,,, +I,21,android/opengl/GLES31Ext.GL_STENCIL_INDEX_OES,6401,,,, +I,21,android/opengl/GLES31Ext.GL_STENCIL_INDEX8_OES,36168,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_OUTPUT_VERTICES_EXT,36469,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_SHADER_BIT_EXT,8,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_CONTROL_SHADER_EXT,36488,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_EVALUATION_SHADER_BIT_EXT,16,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_EVALUATION_SHADER_EXT,36487,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_GEN_MODE_EXT,36470,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_GEN_POINT_MODE_EXT,36473,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_GEN_SPACING_EXT,36471,,,, +I,21,android/opengl/GLES31Ext.GL_TESS_GEN_VERTEX_ORDER_EXT,36472,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES,37122,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES,37125,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_BUFFER_EXT,35884,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT,36874,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BORDER_COLOR_EXT,4100,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_BINDING_EXT,35882,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT,35885,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_EXT,35882,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT,37279,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_OFFSET_EXT,37277,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_BUFFER_SIZE_EXT,37278,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_CUBE_MAP_ARRAY_EXT,36873,,,, +I,21,android/opengl/GLES31Ext.GL_TEXTURE_SRGB_DECODE_EXT,35400,,,, +I,21,android/opengl/GLES31Ext.GL_TRIANGLE_STRIP_ADJACENCY_EXT,13,,,, +I,21,android/opengl/GLES31Ext.GL_TRIANGLES_ADJACENCY_EXT,12,,,, +I,21,android/opengl/GLES31Ext.GL_UNDEFINED_VERTEX_EXT,33376,,,, +I,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_IMAGE_BUFFER_EXT,36967,,,, +I,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT,36970,,,, +I,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES,37133,,,, +I,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT,36312,,,, +I,21,android/opengl/GLES31Ext.GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT,36879,,,, +I,21,android/opengl/GLES31Ext.GL_VERTEX_ARRAY_KHR,32884,,,, +I,24,android/opengl/GLES32.GL_BUFFER,33504,,,, +I,24,android/opengl/GLES32.GL_CLAMP_TO_BORDER,33069,,,, +I,24,android/opengl/GLES32.GL_COLORBURN,37530,,,, +I,24,android/opengl/GLES32.GL_COLORDODGE,37529,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x10,37819,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x5,37816,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x6,37817,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_10x8,37818,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_12x10,37820,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_12x12,37821,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_4x4,37808,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_5x4,37809,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_5x5,37810,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_6x5,37811,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_6x6,37812,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x5,37813,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x6,37814,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_RGBA_ASTC_8x8,37815,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10,37851,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5,37848,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6,37849,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8,37850,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10,37852,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12,37853,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4,37840,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4,37841,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5,37842,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5,37843,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6,37844,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5,37845,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6,37846,,,, +I,24,android/opengl/GLES32.GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8,37847,,,, +I,24,android/opengl/GLES32.GL_CONTEXT_FLAG_DEBUG_BIT,2,,,, +I,24,android/opengl/GLES32.GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT,4,,,, +I,24,android/opengl/GLES32.GL_CONTEXT_FLAGS,33310,,,, +I,24,android/opengl/GLES32.GL_CONTEXT_LOST,1287,,,, +I,24,android/opengl/GLES32.GL_DARKEN,37527,,,, +I,24,android/opengl/GLES32.GL_DEBUG_CALLBACK_FUNCTION,33348,,,, +I,24,android/opengl/GLES32.GL_DEBUG_CALLBACK_USER_PARAM,33349,,,, +I,24,android/opengl/GLES32.GL_DEBUG_GROUP_STACK_DEPTH,33389,,,, +I,24,android/opengl/GLES32.GL_DEBUG_LOGGED_MESSAGES,37189,,,, +I,24,android/opengl/GLES32.GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH,33347,,,, +I,24,android/opengl/GLES32.GL_DEBUG_OUTPUT,37600,,,, +I,24,android/opengl/GLES32.GL_DEBUG_OUTPUT_SYNCHRONOUS,33346,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_HIGH,37190,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_LOW,37192,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_MEDIUM,37191,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SEVERITY_NOTIFICATION,33387,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_API,33350,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_APPLICATION,33354,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_OTHER,33355,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_SHADER_COMPILER,33352,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_THIRD_PARTY,33353,,,, +I,24,android/opengl/GLES32.GL_DEBUG_SOURCE_WINDOW_SYSTEM,33351,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR,33357,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_ERROR,33356,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_MARKER,33384,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_OTHER,33361,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_PERFORMANCE,33360,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_POP_GROUP,33386,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_PORTABILITY,33359,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_PUSH_GROUP,33385,,,, +I,24,android/opengl/GLES32.GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR,33358,,,, +I,24,android/opengl/GLES32.GL_DIFFERENCE,37534,,,, +I,24,android/opengl/GLES32.GL_EXCLUSION,37536,,,, +I,24,android/opengl/GLES32.GL_FIRST_VERTEX_CONVENTION,36429,,,, +I,24,android/opengl/GLES32.GL_FRACTIONAL_EVEN,36476,,,, +I,24,android/opengl/GLES32.GL_FRACTIONAL_ODD,36475,,,, +I,24,android/opengl/GLES32.GL_FRAGMENT_INTERPOLATION_OFFSET_BITS,36445,,,, +I,24,android/opengl/GLES32.GL_FRAMEBUFFER_ATTACHMENT_LAYERED,36263,,,, +I,24,android/opengl/GLES32.GL_FRAMEBUFFER_DEFAULT_LAYERS,37650,,,, +I,24,android/opengl/GLES32.GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS,36264,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_INPUT_TYPE,35095,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_OUTPUT_TYPE,35096,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_SHADER,36313,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_SHADER_BIT,4,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_SHADER_INVOCATIONS,34943,,,, +I,24,android/opengl/GLES32.GL_GEOMETRY_VERTICES_OUT,35094,,,, +I,24,android/opengl/GLES32.GL_GUILTY_CONTEXT_RESET,33363,,,, +I,24,android/opengl/GLES32.GL_HARDLIGHT,37531,,,, +I,24,android/opengl/GLES32.GL_HSL_COLOR,37551,,,, +I,24,android/opengl/GLES32.GL_HSL_HUE,37549,,,, +I,24,android/opengl/GLES32.GL_HSL_LUMINOSITY,37552,,,, +I,24,android/opengl/GLES32.GL_HSL_SATURATION,37550,,,, +I,24,android/opengl/GLES32.GL_IMAGE_BUFFER,36945,,,, +I,24,android/opengl/GLES32.GL_IMAGE_CUBE_MAP_ARRAY,36948,,,, +I,24,android/opengl/GLES32.GL_INNOCENT_CONTEXT_RESET,33364,,,, +I,24,android/opengl/GLES32.GL_INT_IMAGE_BUFFER,36956,,,, +I,24,android/opengl/GLES32.GL_INT_IMAGE_CUBE_MAP_ARRAY,36959,,,, +I,24,android/opengl/GLES32.GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY,37132,,,, +I,24,android/opengl/GLES32.GL_INT_SAMPLER_BUFFER,36304,,,, +I,24,android/opengl/GLES32.GL_INT_SAMPLER_CUBE_MAP_ARRAY,36878,,,, +I,24,android/opengl/GLES32.GL_IS_PER_PATCH,37607,,,, +I,24,android/opengl/GLES32.GL_ISOLINES,36474,,,, +I,24,android/opengl/GLES32.GL_LAST_VERTEX_CONVENTION,36430,,,, +I,24,android/opengl/GLES32.GL_LAYER_PROVOKING_VERTEX,33374,,,, +I,24,android/opengl/GLES32.GL_LIGHTEN,37528,,,, +I,24,android/opengl/GLES32.GL_LINE_STRIP_ADJACENCY,11,,,, +I,24,android/opengl/GLES32.GL_LINES_ADJACENCY,10,,,, +I,24,android/opengl/GLES32.GL_LOSE_CONTEXT_ON_RESET,33362,,,, +I,24,android/opengl/GLES32.GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS,35378,,,, +I,24,android/opengl/GLES32.GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS,36382,,,, +I,24,android/opengl/GLES32.GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS,36383,,,, +I,24,android/opengl/GLES32.GL_MAX_DEBUG_GROUP_STACK_DEPTH,33388,,,, +I,24,android/opengl/GLES32.GL_MAX_DEBUG_LOGGED_MESSAGES,37188,,,, +I,24,android/opengl/GLES32.GL_MAX_DEBUG_MESSAGE_LENGTH,37187,,,, +I,24,android/opengl/GLES32.GL_MAX_FRAGMENT_INTERPOLATION_OFFSET,36444,,,, +I,24,android/opengl/GLES32.GL_MAX_FRAMEBUFFER_LAYERS,37655,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS,37583,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_ATOMIC_COUNTERS,37589,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_IMAGE_UNIFORMS,37069,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_INPUT_COMPONENTS,37155,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_OUTPUT_COMPONENTS,37156,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_OUTPUT_VERTICES,36320,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_SHADER_INVOCATIONS,36442,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS,37079,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS,35881,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS,36321,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_UNIFORM_BLOCKS,35372,,,, +I,24,android/opengl/GLES32.GL_MAX_GEOMETRY_UNIFORM_COMPONENTS,36319,,,, +I,24,android/opengl/GLES32.GL_MAX_LABEL_LENGTH,33512,,,, +I,24,android/opengl/GLES32.GL_MAX_PATCH_VERTICES,36477,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS,37581,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS,37587,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS,37067,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_INPUT_COMPONENTS,34924,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS,36483,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS,37080,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS,36481,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS,36485,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS,36489,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS,36479,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS,37582,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS,37588,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS,37068,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS,34925,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS,36486,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS,37081,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS,36482,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS,36490,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS,36480,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_GEN_LEVEL,36478,,,, +I,24,android/opengl/GLES32.GL_MAX_TESS_PATCH_COMPONENTS,36484,,,, +I,24,android/opengl/GLES32.GL_MAX_TEXTURE_BUFFER_SIZE,35883,,,, +I,24,android/opengl/GLES32.GL_MIN_FRAGMENT_INTERPOLATION_OFFSET,36443,,,, +I,24,android/opengl/GLES32.GL_MIN_SAMPLE_SHADING_VALUE,35895,,,, +I,24,android/opengl/GLES32.GL_MULTIPLY,37524,,,, +I,24,android/opengl/GLES32.GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY,37762,,,, +I,24,android/opengl/GLES32.GL_MULTISAMPLE_LINE_WIDTH_RANGE,37761,,,, +I,24,android/opengl/GLES32.GL_NO_RESET_NOTIFICATION,33377,,,, +I,24,android/opengl/GLES32.GL_OVERLAY,37526,,,, +I,24,android/opengl/GLES32.GL_PATCH_VERTICES,36466,,,, +I,24,android/opengl/GLES32.GL_PATCHES,14,,,, +I,24,android/opengl/GLES32.GL_PRIMITIVE_BOUNDING_BOX,37566,,,, +I,24,android/opengl/GLES32.GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED,33313,,,, +I,24,android/opengl/GLES32.GL_PRIMITIVES_GENERATED,35975,,,, +I,24,android/opengl/GLES32.GL_PROGRAM,33506,,,, +I,24,android/opengl/GLES32.GL_PROGRAM_PIPELINE,33508,,,, +I,24,android/opengl/GLES32.GL_QUADS,7,,,, +I,24,android/opengl/GLES32.GL_QUERY,33507,,,, +I,24,android/opengl/GLES32.GL_REFERENCED_BY_GEOMETRY_SHADER,37641,,,, +I,24,android/opengl/GLES32.GL_REFERENCED_BY_TESS_CONTROL_SHADER,37639,,,, +I,24,android/opengl/GLES32.GL_REFERENCED_BY_TESS_EVALUATION_SHADER,37640,,,, +I,24,android/opengl/GLES32.GL_RESET_NOTIFICATION_STRATEGY,33366,,,, +I,24,android/opengl/GLES32.GL_SAMPLE_SHADING,35894,,,, +I,24,android/opengl/GLES32.GL_SAMPLER,33510,,,, +I,24,android/opengl/GLES32.GL_SAMPLER_2D_MULTISAMPLE_ARRAY,37131,,,, +I,24,android/opengl/GLES32.GL_SAMPLER_BUFFER,36290,,,, +I,24,android/opengl/GLES32.GL_SAMPLER_CUBE_MAP_ARRAY,36876,,,, +I,24,android/opengl/GLES32.GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW,36877,,,, +I,24,android/opengl/GLES32.GL_SCREEN,37525,,,, +I,24,android/opengl/GLES32.GL_SHADER,33505,,,, +I,24,android/opengl/GLES32.GL_SOFTLIGHT,37532,,,, +I,24,android/opengl/GLES32.GL_STACK_OVERFLOW,1283,,,, +I,24,android/opengl/GLES32.GL_STACK_UNDERFLOW,1284,,,, +I,24,android/opengl/GLES32.GL_TESS_CONTROL_OUTPUT_VERTICES,36469,,,, +I,24,android/opengl/GLES32.GL_TESS_CONTROL_SHADER,36488,,,, +I,24,android/opengl/GLES32.GL_TESS_CONTROL_SHADER_BIT,8,,,, +I,24,android/opengl/GLES32.GL_TESS_EVALUATION_SHADER,36487,,,, +I,24,android/opengl/GLES32.GL_TESS_EVALUATION_SHADER_BIT,16,,,, +I,24,android/opengl/GLES32.GL_TESS_GEN_MODE,36470,,,, +I,24,android/opengl/GLES32.GL_TESS_GEN_POINT_MODE,36473,,,, +I,24,android/opengl/GLES32.GL_TESS_GEN_SPACING,36471,,,, +I,24,android/opengl/GLES32.GL_TESS_GEN_VERTEX_ORDER,36472,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_2D_MULTISAMPLE_ARRAY,37122,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY,37125,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BINDING_BUFFER,35884,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BINDING_CUBE_MAP_ARRAY,36874,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BORDER_COLOR,4100,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER,35882,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_BINDING,35882,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_DATA_STORE_BINDING,35885,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_OFFSET,37277,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT,37279,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_BUFFER_SIZE,37278,,,, +I,24,android/opengl/GLES32.GL_TEXTURE_CUBE_MAP_ARRAY,36873,,,, +I,24,android/opengl/GLES32.GL_TRIANGLE_STRIP_ADJACENCY,13,,,, +I,24,android/opengl/GLES32.GL_TRIANGLES_ADJACENCY,12,,,, +I,24,android/opengl/GLES32.GL_UNDEFINED_VERTEX,33376,,,, +I,24,android/opengl/GLES32.GL_UNKNOWN_CONTEXT_RESET,33365,,,, +I,24,android/opengl/GLES32.GL_UNSIGNED_INT_IMAGE_BUFFER,36967,,,, +I,24,android/opengl/GLES32.GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY,36970,,,, +I,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY,37133,,,, +I,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_BUFFER,36312,,,, +I,24,android/opengl/GLES32.GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY,36879,,,, +I,24,android/opengl/GLES32.GL_VERTEX_ARRAY,32884,,,, E,10,android/opengl/GLSurfaceView.DEBUG_CHECK_GL_ERROR,1,Android.Opengl.DebugFlags,CheckGlError,remove,flags E,10,android/opengl/GLSurfaceView.DEBUG_LOG_GL_CALLS,2,Android.Opengl.DebugFlags,LogGlCalls,remove,flags E,10,android/opengl/GLSurfaceView.RENDERMODE_CONTINUOUSLY,1,Android.Opengl.Rendermode,Continuously,remove, @@ -6786,6 +7273,11 @@ E,10,android/os/BatteryManager.BATTERY_STATUS_DISCHARGING,3,Android.OS.BatterySt E,10,android/os/BatteryManager.BATTERY_STATUS_FULL,5,Android.OS.BatteryStatus,Full,remove, E,10,android/os/BatteryManager.BATTERY_STATUS_NOT_CHARGING,4,Android.OS.BatteryStatus,NotCharging,remove, E,10,android/os/BatteryManager.BATTERY_STATUS_UNKNOWN,1,Android.OS.BatteryStatus,Unknown,remove, +E,31,android/os/BugreportManager$BugreportCallback.BUGREPORT_ERROR_ANOTHER_REPORT_IN_PROGRESS,5,Android.Os.BugreportErrorCode,AnotherReportInProgress,remove, +E,31,android/os/BugreportManager$BugreportCallback.BUGREPORT_ERROR_INVALID_INPUT,1,Android.Os.BugreportErrorCode,InvalidInput,remove, +E,31,android/os/BugreportManager$BugreportCallback.BUGREPORT_ERROR_RUNTIME,2,Android.Os.BugreportErrorCode,Runtime,remove, +E,31,android/os/BugreportManager$BugreportCallback.BUGREPORT_ERROR_USER_CONSENT_TIMED_OUT,4,Android.Os.BugreportErrorCode,UserConsentTimedOut,remove, +E,31,android/os/BugreportManager$BugreportCallback.BUGREPORT_ERROR_USER_DENIED_CONSENT,3,Android.Os.BugreportErrorCode,UserDeniedConsent,remove, E,10,android/os/Build$VERSION_CODES.BASE,1,Android.OS.BuildVersionCodes,Base,remove, E,10,android/os/Build$VERSION_CODES.BASE_1_1,2,Android.OS.BuildVersionCodes,Base11,remove, E,10,android/os/Build$VERSION_CODES.CUPCAKE,3,Android.OS.BuildVersionCodes,Cupcake,remove, @@ -6817,6 +7309,7 @@ E,27,android/os/Build$VERSION_CODES.O_MR1,27,Android.OS.BuildVersionCodes,OMr1,r E,28,android/os/Build$VERSION_CODES.P,28,Android.OS.BuildVersionCodes,P,remove, E,29,android/os/Build$VERSION_CODES.Q,29,Android.OS.BuildVersionCodes,Q,remove, E,30,android/os/Build$VERSION_CODES.R,30,Android.OS.BuildVersionCodes,R,remove, +E,31,android/os/Build$VERSION_CODES.S,31,Android.OS.BuildVersionCodes,S,remove, A,0,,0,Android.OS.DebugShow,Default,remove, E,10,android/os/Debug.SHOW_CLASSLOADER,2,Android.OS.DebugShow,Classloader,remove, E,10,android/os/Debug.SHOW_FULL_DETAIL,1,Android.OS.DebugShow,FullDetail,remove, @@ -6848,82 +7341,82 @@ E,24,android/os/HardwarePropertiesManager.TEMPERATURE_CURRENT,0,Android.OS.Tempe E,24,android/os/HardwarePropertiesManager.TEMPERATURE_SHUTDOWN,2,Android.OS.TemperatureSource,Shutdown,remove, E,24,android/os/HardwarePropertiesManager.TEMPERATURE_THROTTLING,1,Android.OS.TemperatureSource,Throttling,remove, E,24,android/os/HardwarePropertiesManager.TEMPERATURE_THROTTLING_BELOW_VR_MIN,3,Android.OS.TemperatureSource,ThrottlingBelowVrMin,remove, -?,24,android/os/health/PackageHealthStats.MEASUREMENTS_WAKEUP_ALARMS_COUNT,40002,,,, -?,24,android/os/health/PackageHealthStats.STATS_SERVICES,40001,,,, -?,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_NESTING_COUNT,20001,,,, -?,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_START_MS,20003,,,, -?,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_SUM_MS,20002,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_ANR_COUNT,30005,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_CRASHES_COUNT,30004,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_FOREGROUND_MS,30006,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_STARTS_COUNT,30003,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_SYSTEM_TIME_MS,30002,,,, -?,24,android/os/health/ProcessHealthStats.MEASUREMENT_USER_TIME_MS,30001,,,, -?,24,android/os/health/ServiceHealthStats.MEASUREMENT_LAUNCH_COUNT,50002,,,, -?,24,android/os/health/ServiceHealthStats.MEASUREMENT_START_SERVICE_COUNT,50001,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_IDLE_MS,10020,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_POWER_MAMS,10023,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_BYTES,10052,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_MS,10021,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_PACKETS,10058,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_BYTES,10053,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_MS,10022,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_PACKETS,10059,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_BUTTON_USER_ACTIVITY_COUNT,10046,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_CPU_POWER_MAMS,10064,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_IDLE_MS,10024,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_POWER_MAMS,10027,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_BYTES,10048,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_MS,10025,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_PACKETS,10054,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_BYTES,10049,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_MS,10026,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_PACKETS,10055,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_OTHER_USER_ACTIVITY_COUNT,10045,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_REALTIME_BATTERY_MS,10001,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_REALTIME_SCREEN_OFF_BATTERY_MS,10003,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_SYSTEM_CPU_TIME_MS,10063,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_TOUCH_USER_ACTIVITY_COUNT,10047,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_UPTIME_BATTERY_MS,10002,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_UPTIME_SCREEN_OFF_BATTERY_MS,10004,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_USER_CPU_TIME_MS,10062,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_FULL_LOCK_MS,10029,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_IDLE_MS,10016,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_MULTICAST_MS,10031,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_POWER_MAMS,10019,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RUNNING_MS,10028,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_BYTES,10050,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_MS,10017,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_PACKETS,10056,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_BYTES,10051,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_MS,10018,,,, -?,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_PACKETS,10057,,,, -?,24,android/os/health/UidHealthStats.STATS_PACKAGES,10015,,,, -?,24,android/os/health/UidHealthStats.STATS_PIDS,10013,,,, -?,24,android/os/health/UidHealthStats.STATS_PROCESSES,10014,,,, -?,24,android/os/health/UidHealthStats.TIMER_AUDIO,10032,,,, -?,24,android/os/health/UidHealthStats.TIMER_BLUETOOTH_SCAN,10037,,,, -?,24,android/os/health/UidHealthStats.TIMER_CAMERA,10035,,,, -?,24,android/os/health/UidHealthStats.TIMER_FLASHLIGHT,10034,,,, -?,24,android/os/health/UidHealthStats.TIMER_FOREGROUND_ACTIVITY,10036,,,, -?,24,android/os/health/UidHealthStats.TIMER_GPS_SENSOR,10011,,,, -?,24,android/os/health/UidHealthStats.TIMER_MOBILE_RADIO_ACTIVE,10061,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_BACKGROUND_MS,10042,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_CACHED_MS,10043,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_FOREGROUND_MS,10041,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_FOREGROUND_SERVICE_MS,10039,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_TOP_MS,10038,,,, -?,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_TOP_SLEEPING_MS,10040,,,, -?,24,android/os/health/UidHealthStats.TIMER_VIBRATOR,10044,,,, -?,24,android/os/health/UidHealthStats.TIMER_VIDEO,10033,,,, -?,24,android/os/health/UidHealthStats.TIMER_WIFI_SCAN,10030,,,, -?,24,android/os/health/UidHealthStats.TIMERS_JOBS,10010,,,, -?,24,android/os/health/UidHealthStats.TIMERS_SENSORS,10012,,,, -?,24,android/os/health/UidHealthStats.TIMERS_SYNCS,10009,,,, -?,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_DRAW,10008,,,, -?,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_FULL,10005,,,, -?,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_PARTIAL,10006,,,, -?,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_WINDOW,10007,,,, +I,24,android/os/health/PackageHealthStats.MEASUREMENTS_WAKEUP_ALARMS_COUNT,40002,,,, +I,24,android/os/health/PackageHealthStats.STATS_SERVICES,40001,,,, +I,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_NESTING_COUNT,20001,,,, +I,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_START_MS,20003,,,, +I,24,android/os/health/PidHealthStats.MEASUREMENT_WAKE_SUM_MS,20002,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_ANR_COUNT,30005,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_CRASHES_COUNT,30004,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_FOREGROUND_MS,30006,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_STARTS_COUNT,30003,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_SYSTEM_TIME_MS,30002,,,, +I,24,android/os/health/ProcessHealthStats.MEASUREMENT_USER_TIME_MS,30001,,,, +I,24,android/os/health/ServiceHealthStats.MEASUREMENT_LAUNCH_COUNT,50002,,,, +I,24,android/os/health/ServiceHealthStats.MEASUREMENT_START_SERVICE_COUNT,50001,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_IDLE_MS,10020,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_POWER_MAMS,10023,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_BYTES,10052,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_MS,10021,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_RX_PACKETS,10058,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_BYTES,10053,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_MS,10022,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BLUETOOTH_TX_PACKETS,10059,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_BUTTON_USER_ACTIVITY_COUNT,10046,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_CPU_POWER_MAMS,10064,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_IDLE_MS,10024,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_POWER_MAMS,10027,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_BYTES,10048,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_MS,10025,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_RX_PACKETS,10054,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_BYTES,10049,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_MS,10026,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_MOBILE_TX_PACKETS,10055,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_OTHER_USER_ACTIVITY_COUNT,10045,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_REALTIME_BATTERY_MS,10001,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_REALTIME_SCREEN_OFF_BATTERY_MS,10003,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_SYSTEM_CPU_TIME_MS,10063,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_TOUCH_USER_ACTIVITY_COUNT,10047,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_UPTIME_BATTERY_MS,10002,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_UPTIME_SCREEN_OFF_BATTERY_MS,10004,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_USER_CPU_TIME_MS,10062,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_FULL_LOCK_MS,10029,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_IDLE_MS,10016,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_MULTICAST_MS,10031,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_POWER_MAMS,10019,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RUNNING_MS,10028,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_BYTES,10050,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_MS,10017,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_RX_PACKETS,10056,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_BYTES,10051,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_MS,10018,,,, +I,24,android/os/health/UidHealthStats.MEASUREMENT_WIFI_TX_PACKETS,10057,,,, +I,24,android/os/health/UidHealthStats.STATS_PACKAGES,10015,,,, +I,24,android/os/health/UidHealthStats.STATS_PIDS,10013,,,, +I,24,android/os/health/UidHealthStats.STATS_PROCESSES,10014,,,, +I,24,android/os/health/UidHealthStats.TIMER_AUDIO,10032,,,, +I,24,android/os/health/UidHealthStats.TIMER_BLUETOOTH_SCAN,10037,,,, +I,24,android/os/health/UidHealthStats.TIMER_CAMERA,10035,,,, +I,24,android/os/health/UidHealthStats.TIMER_FLASHLIGHT,10034,,,, +I,24,android/os/health/UidHealthStats.TIMER_FOREGROUND_ACTIVITY,10036,,,, +I,24,android/os/health/UidHealthStats.TIMER_GPS_SENSOR,10011,,,, +I,24,android/os/health/UidHealthStats.TIMER_MOBILE_RADIO_ACTIVE,10061,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_BACKGROUND_MS,10042,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_CACHED_MS,10043,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_FOREGROUND_MS,10041,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_FOREGROUND_SERVICE_MS,10039,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_TOP_MS,10038,,,, +I,24,android/os/health/UidHealthStats.TIMER_PROCESS_STATE_TOP_SLEEPING_MS,10040,,,, +I,24,android/os/health/UidHealthStats.TIMER_VIBRATOR,10044,,,, +I,24,android/os/health/UidHealthStats.TIMER_VIDEO,10033,,,, +I,24,android/os/health/UidHealthStats.TIMER_WIFI_SCAN,10030,,,, +I,24,android/os/health/UidHealthStats.TIMERS_JOBS,10010,,,, +I,24,android/os/health/UidHealthStats.TIMERS_SENSORS,10012,,,, +I,24,android/os/health/UidHealthStats.TIMERS_SYNCS,10009,,,, +I,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_DRAW,10008,,,, +I,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_FULL,10005,,,, +I,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_PARTIAL,10006,,,, +I,24,android/os/health/UidHealthStats.TIMERS_WAKELOCKS_WINDOW,10007,,,, E,10,android/os/ParcelFileDescriptor.MODE_APPEND,33554432,Android.OS.ParcelFileMode,Append,keep, E,10,android/os/ParcelFileDescriptor.MODE_CREATE,134217728,Android.OS.ParcelFileMode,Create,keep, E,10,android/os/ParcelFileDescriptor.MODE_READ_ONLY,268435456,Android.OS.ParcelFileMode,ReadOnly,keep, @@ -6936,6 +7429,7 @@ E,26,android/os/PatternMatcher.PATTERN_ADVANCED_GLOB,3,Android.OS.Pattern,Advanc E,10,android/os/PatternMatcher.PATTERN_LITERAL,0,Android.OS.Pattern,Literal,keep, E,10,android/os/PatternMatcher.PATTERN_PREFIX,1,Android.OS.Pattern,Prefix,keep, E,10,android/os/PatternMatcher.PATTERN_SIMPLE_GLOB,2,Android.OS.Pattern,SimpleGlob,keep, +E,31,android/os/PatternMatcher.PATTERN_SUFFIX,4,Android.OS.Pattern,Suffix,remove, E,10,android/os/PowerManager.ACQUIRE_CAUSES_WAKEUP,268435456,Android.OS.WakeLockFlags,AcquireCausesWakeup,keep,flags E,10,android/os/PowerManager.FULL_WAKE_LOCK,26,Android.OS.WakeLockFlags,Full,keep,flags E,28,android/os/PowerManager.LOCATION_MODE_ALL_DISABLED_WHEN_SCREEN_OFF,2,Android.OS.WakeLockFlags,LocationModeAllDisabledWhenScreenOff,keep,flags @@ -6968,18 +7462,18 @@ E,29,android/os/PowerManager.THERMAL_STATUS_SEVERE,3,Android.OS.WakeLockFlags,Th E,29,android/os/PowerManager.THERMAL_STATUS_SEVERE,3,Android.OS.ThermalStatus,Severe,remove, E,29,android/os/PowerManager.THERMAL_STATUS_SHUTDOWN,6,Android.OS.WakeLockFlags,ThermalStatusShutdown,keep,flags E,29,android/os/PowerManager.THERMAL_STATUS_SHUTDOWN,6,Android.OS.ThermalStatus,Shutdown,remove, -?,0,android/os/Process.BLUETOOTH_GID,2000,,,, -?,29,android/os/Process.BLUETOOTH_UID,1002,,,, -?,0,android/os/Process.FIRST_APPLICATION_UID,10000,,,, -?,29,android/os/Process.INVALID_UID,-1,,,, -?,0,android/os/Process.LAST_APPLICATION_UID,99999,,,, -?,0,android/os/Process.PHONE_UID,1001,,,, -?,29,android/os/Process.ROOT_UID,0,,,, -?,29,android/os/Process.SHELL_UID,2000,,,, +I,0,android/os/Process.BLUETOOTH_GID,2000,,,, +I,29,android/os/Process.BLUETOOTH_UID,1002,,,, +I,0,android/os/Process.FIRST_APPLICATION_UID,10000,,,, +I,29,android/os/Process.INVALID_UID,-1,,,, +I,0,android/os/Process.LAST_APPLICATION_UID,99999,,,, +I,0,android/os/Process.PHONE_UID,1001,,,, +I,29,android/os/Process.ROOT_UID,0,,,, +I,29,android/os/Process.SHELL_UID,2000,,,, E,10,android/os/Process.SIGNAL_KILL,9,Android.OS.Signal,Kill,keep, E,10,android/os/Process.SIGNAL_QUIT,3,Android.OS.Signal,Quit,keep, E,10,android/os/Process.SIGNAL_USR1,10,Android.OS.Signal,Usr1,keep, -?,0,android/os/Process.SYSTEM_UID,1000,,,, +I,0,android/os/Process.SYSTEM_UID,1000,,,, E,10,android/os/Process.THREAD_PRIORITY_AUDIO,-16,Android.OS.ThreadPriority,Audio,keep, E,10,android/os/Process.THREAD_PRIORITY_BACKGROUND,10,Android.OS.ThreadPriority,Background,keep, E,10,android/os/Process.THREAD_PRIORITY_DEFAULT,0,Android.OS.ThreadPriority,Default,keep, @@ -7025,20 +7519,23 @@ E,30,android/os/VibrationAttributes.USAGE_PHYSICAL_EMULATION,34,Android.OS.Vibra E,30,android/os/VibrationAttributes.USAGE_RINGTONE,33,Android.OS.VibrationAttributesUsageType,Ringtone,remove, E,30,android/os/VibrationAttributes.USAGE_TOUCH,18,Android.OS.VibrationAttributesUsageType,Touch,remove, E,30,android/os/VibrationAttributes.USAGE_UNKNOWN,0,Android.OS.VibrationAttributesUsageType,Unknown,remove, +I,26,android/os/VibrationEffect.DEFAULT_AMPLITUDE,-1,,,, +I,29,android/os/VibrationEffect.EFFECT_CLICK,0,,,, +I,29,android/os/VibrationEffect.EFFECT_DOUBLE_CLICK,1,,,, +I,29,android/os/VibrationEffect.EFFECT_HEAVY_CLICK,5,,,, +I,29,android/os/VibrationEffect.EFFECT_TICK,2,,,, E,30,android/os/VibrationEffect$Composition.PRIMITIVE_CLICK,1,Android.OS.VibrationEffectCompositionPrimitive,Click,remove, +E,31,android/os/VibrationEffect$Composition.PRIMITIVE_LOW_TICK,8,Android.OS.VibrationEffectCompositionPrimitive,LowTick,remove, E,30,android/os/VibrationEffect$Composition.PRIMITIVE_QUICK_FALL,6,Android.OS.VibrationEffectCompositionPrimitive,QuickFall,remove, E,30,android/os/VibrationEffect$Composition.PRIMITIVE_QUICK_RISE,4,Android.OS.VibrationEffectCompositionPrimitive,QuickRise,remove, E,30,android/os/VibrationEffect$Composition.PRIMITIVE_SLOW_RISE,5,Android.OS.VibrationEffectCompositionPrimitive,SlowRise,remove, +E,31,android/os/VibrationEffect$Composition.PRIMITIVE_SPIN,3,Android.OS.VibrationEffectCompositionPrimitive,Spin,remove, +E,31,android/os/VibrationEffect$Composition.PRIMITIVE_THUD,2,Android.OS.VibrationEffectCompositionPrimitive,Thud,remove, E,30,android/os/VibrationEffect$Composition.PRIMITIVE_TICK,7,Android.OS.VibrationEffectCompositionPrimitive,Tick,remove, -?,26,android/os/VibrationEffect.DEFAULT_AMPLITUDE,-1,,,, -?,29,android/os/VibrationEffect.EFFECT_CLICK,0,,,, -?,29,android/os/VibrationEffect.EFFECT_DOUBLE_CLICK,1,,,, -?,29,android/os/VibrationEffect.EFFECT_HEAVY_CLICK,5,,,, -?,29,android/os/VibrationEffect.EFFECT_TICK,2,,,, E,30,android/os/Vibrator.VIBRATION_EFFECT_SUPPORT_NO,2,Android.OS.VibrationEffectSupport,No,remove, E,30,android/os/Vibrator.VIBRATION_EFFECT_SUPPORT_UNKNOWN,0,Android.OS.VibrationEffectSupport,Unknown,remove, E,30,android/os/Vibrator.VIBRATION_EFFECT_SUPPORT_YES,1,Android.OS.VibrationEffectSupport,Yes,remove, -?,0,android/preference/Preference.DEFAULT_ORDER,2147483647,,,, +I,0,android/preference/Preference.DEFAULT_ORDER,2147483647,,,, E,19,android/print/PrintAttributes.COLOR_MODE_COLOR,2,Android.Print.PrintColorMode,Color,remove, E,19,android/print/PrintAttributes.COLOR_MODE_MONOCHROME,1,Android.Print.PrintColorMode,Monochrome,remove, E,23,android/print/PrintAttributes.DUPLEX_MODE_LONG_EDGE,2,Android.Print.DuplexMode,LongEdge,keep, @@ -7047,7 +7544,7 @@ E,23,android/print/PrintAttributes.DUPLEX_MODE_SHORT_EDGE,4,Android.Print.Duplex E,19,android/print/PrintDocumentInfo.CONTENT_TYPE_DOCUMENT,0,Android.Print.PrintContentType,Document,remove, E,19,android/print/PrintDocumentInfo.CONTENT_TYPE_PHOTO,1,Android.Print.PrintContentType,Photo,remove, E,19,android/print/PrintDocumentInfo.CONTENT_TYPE_UNKNOWN,-1,Android.Print.PrintContentType,Unknown,remove, -?,19,android/print/PrintDocumentInfo.PAGE_COUNT_UNKNOWN,-1,,,, +I,19,android/print/PrintDocumentInfo.PAGE_COUNT_UNKNOWN,-1,,,, E,19,android/print/PrinterInfo.STATUS_BUSY,2,Android.Print.PrinterStatus,Busy,remove, E,19,android/print/PrinterInfo.STATUS_IDLE,1,Android.Print.PrinterStatus,Idle,remove, E,19,android/print/PrinterInfo.STATUS_UNAVAILABLE,3,Android.Print.PrinterStatus,Unavailable,remove, @@ -7067,25 +7564,25 @@ E,10,android/provider/Browser.HISTORY_PROJECTION_URL_INDEX,1,Android.Provider.Hi E,10,android/provider/Browser.HISTORY_PROJECTION_VISITS_INDEX,2,Android.Provider.HistoryProjection,VisitsIndex,keep, E,10,android/provider/Browser.SEARCHES_PROJECTION_DATE_INDEX,2,Android.Provider.SearchesProjection,DateIndex,keep, E,10,android/provider/Browser.SEARCHES_PROJECTION_SEARCH_INDEX,1,Android.Provider.SearchesProjection,SearchIndex,keep, -?,0,android/provider/Browser.TRUNCATE_HISTORY_PROJECTION_ID_INDEX,0,,,, -?,0,android/provider/Browser.TRUNCATE_N_OLDEST,5,,,, +I,0,android/provider/Browser.TRUNCATE_HISTORY_PROJECTION_ID_INDEX,0,,,, +I,0,android/provider/Browser.TRUNCATE_N_OLDEST,5,,,, E,25,android/provider/CallLog$Calls.ANSWERED_EXTERNALLY_TYPE,7,Android.Provider.CallType,AnsweredExternally,keep, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_BLOCKED_NUMBER,3,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_CALL_SCREENING_SERVICE,1,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_DIRECT_TO_VOICEMAIL,2,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_NOT_BLOCKED,0,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_NOT_IN_CONTACTS,7,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_PAY_PHONE,6,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_RESTRICTED_NUMBER,5,,,, -?,29,android/provider/CallLog$Calls.BLOCK_REASON_UNKNOWN_NUMBER,4,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_BLOCKED_NUMBER,3,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_CALL_SCREENING_SERVICE,1,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_DIRECT_TO_VOICEMAIL,2,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_NOT_BLOCKED,0,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_NOT_IN_CONTACTS,7,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_PAY_PHONE,6,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_RESTRICTED_NUMBER,5,,,, +I,29,android/provider/CallLog$Calls.BLOCK_REASON_UNKNOWN_NUMBER,4,,,, E,24,android/provider/CallLog$Calls.BLOCKED_TYPE,6,Android.Provider.CallType,Blocked,keep, I,30,android/provider/CallLog$Calls.FEATURES_ASSISTED_DIALING_USED,16,,,, -?,26,android/provider/CallLog$Calls.FEATURES_HD_CALL,4,,,, -?,25,android/provider/CallLog$Calls.FEATURES_PULLED_EXTERNALLY,2,,,, -?,28,android/provider/CallLog$Calls.FEATURES_RTT,32,,,, -?,21,android/provider/CallLog$Calls.FEATURES_VIDEO,1,,,, +I,26,android/provider/CallLog$Calls.FEATURES_HD_CALL,4,,,, +I,25,android/provider/CallLog$Calls.FEATURES_PULLED_EXTERNALLY,2,,,, +I,28,android/provider/CallLog$Calls.FEATURES_RTT,32,,,, +I,21,android/provider/CallLog$Calls.FEATURES_VIDEO,1,,,, I,30,android/provider/CallLog$Calls.FEATURES_VOLTE,64,,,, -?,26,android/provider/CallLog$Calls.FEATURES_WIFI,8,,,, +I,26,android/provider/CallLog$Calls.FEATURES_WIFI,8,,,, E,10,android/provider/CallLog$Calls.INCOMING_TYPE,1,Android.Provider.CallType,Incoming,keep, E,10,android/provider/CallLog$Calls.MISSED_TYPE,3,Android.Provider.CallType,Missed,keep, E,10,android/provider/CallLog$Calls.OUTGOING_TYPE,2,Android.Provider.CallType,Outgoing,keep, @@ -7093,8 +7590,15 @@ E,19,android/provider/CallLog$Calls.PRESENTATION_ALLOWED,1,Android.Provider.Call E,19,android/provider/CallLog$Calls.PRESENTATION_PAYPHONE,4,Android.Provider.CallerPresentation,Payphone,remove, E,19,android/provider/CallLog$Calls.PRESENTATION_RESTRICTED,2,Android.Provider.CallerPresentation,Restricted,remove, E,19,android/provider/CallLog$Calls.PRESENTATION_UNKNOWN,3,Android.Provider.CallerPresentation,Unknown,remove, +E,31,android/provider/CallLog$Calls.PRIORITY_NORMAL,0,Android.Provider.CallPriority,Normal,remove, +E,31,android/provider/CallLog$Calls.PRIORITY_URGENT,1,Android.Provider.CallPriority,Urgent,remove, E,24,android/provider/CallLog$Calls.REJECTED_TYPE,5,Android.Provider.CallType,Rejected,keep, E,21,android/provider/CallLog$Calls.VOICEMAIL_TYPE,4,Android.Provider.CallType,Voicemail,keep, +E,10,android/provider/Contacts.KIND_EMAIL,1,Android.Provider.ContactKind,Email,keep, +E,10,android/provider/Contacts.KIND_IM,3,Android.Provider.ContactKind,Im,keep, +E,10,android/provider/Contacts.KIND_ORGANIZATION,4,Android.Provider.ContactKind,Organization,keep, +E,10,android/provider/Contacts.KIND_PHONE,5,Android.Provider.ContactKind,Phone,keep, +E,10,android/provider/Contacts.KIND_POSTAL,2,Android.Provider.ContactKind,Postal,keep, E,10,android/provider/Contacts$ContactMethods.PROTOCOL_AIM,0,Android.Provider.ContactProtocol,Aim,keep, E,10,android/provider/Contacts$ContactMethods.PROTOCOL_GOOGLE_TALK,5,Android.Provider.ContactProtocol,GoogleTalk,keep, E,10,android/provider/Contacts$ContactMethods.PROTOCOL_ICQ,6,Android.Provider.ContactProtocol,Icq,keep, @@ -7103,11 +7607,6 @@ E,10,android/provider/Contacts$ContactMethods.PROTOCOL_MSN,1,Android.Provider.Co E,10,android/provider/Contacts$ContactMethods.PROTOCOL_QQ,4,Android.Provider.ContactProtocol,Qq,keep, E,10,android/provider/Contacts$ContactMethods.PROTOCOL_SKYPE,3,Android.Provider.ContactProtocol,Skype,keep, E,10,android/provider/Contacts$ContactMethods.PROTOCOL_YAHOO,2,Android.Provider.ContactProtocol,Yahoo,keep, -E,10,android/provider/Contacts.KIND_EMAIL,1,Android.Provider.ContactKind,Email,keep, -E,10,android/provider/Contacts.KIND_IM,3,Android.Provider.ContactKind,Im,keep, -E,10,android/provider/Contacts.KIND_ORGANIZATION,4,Android.Provider.ContactKind,Organization,keep, -E,10,android/provider/Contacts.KIND_PHONE,5,Android.Provider.ContactKind,Phone,keep, -E,10,android/provider/Contacts.KIND_POSTAL,2,Android.Provider.ContactKind,Postal,keep, E,10,android/provider/ContactsContract$AggregationExceptions.TYPE_AUTOMATIC,0,Android.Provider.AggregateException,Automatic,keep, E,10,android/provider/ContactsContract$AggregationExceptions.TYPE_KEEP_SEPARATE,2,Android.Provider.AggregateException,KeepSeparate,keep, E,10,android/provider/ContactsContract$AggregationExceptions.TYPE_KEEP_TOGETHER,1,Android.Provider.AggregateException,KeepTogether,keep, @@ -7205,8 +7704,8 @@ E,15,android/provider/ContactsContract$Directory.PHOTO_SUPPORT_THUMBNAIL_ONLY,1, E,15,android/provider/ContactsContract$Directory.SHORTCUT_SUPPORT_DATA_ITEMS_ONLY,1,Android.Provider.ShortcutSupport,DataItemsOnly,remove, E,15,android/provider/ContactsContract$Directory.SHORTCUT_SUPPORT_FULL,2,Android.Provider.ShortcutSupport,Full,remove, E,15,android/provider/ContactsContract$Directory.SHORTCUT_SUPPORT_NONE,0,Android.Provider.ShortcutSupport,None,remove, -?,21,android/provider/ContactsContract$PinnedPositions.DEMOTED,-1,,,, -?,21,android/provider/ContactsContract$PinnedPositions.UNPINNED,0,,,, +I,21,android/provider/ContactsContract$PinnedPositions.DEMOTED,-1,,,, +I,21,android/provider/ContactsContract$PinnedPositions.UNPINNED,0,,,, E,23,android/provider/ContactsContract$ProviderStatus.STATUS_BUSY,1,Android.Provider.ContactsProviderStatus,Busy,keep, E,23,android/provider/ContactsContract$ProviderStatus.STATUS_EMPTY,2,Android.Provider.ContactsProviderStatus,Empty,keep, E,23,android/provider/ContactsContract$ProviderStatus.STATUS_NORMAL,0,Android.Provider.ContactsProviderStatus,Normal,keep, @@ -7217,6 +7716,10 @@ E,10,android/provider/ContactsContract$RawContacts.AGGREGATION_MODE_DEFAULT,0,An E,10,android/provider/ContactsContract$RawContacts.AGGREGATION_MODE_DISABLED,3,Android.Provider.AggregationMode,Disabled,keep, E,10,android/provider/ContactsContract$RawContacts.AGGREGATION_MODE_IMMEDIATE,1,Android.Provider.AggregationMode,Immediate,keep, E,10,android/provider/ContactsContract$RawContacts.AGGREGATION_MODE_SUSPENDED,2,Android.Provider.AggregationMode,Suspended,keep, +E,31,android/provider/ContactsContract$SimAccount.ADN_EF_TYPE,1,Android.Provider.SimAccountType,AdnEfType,remove, +E,31,android/provider/ContactsContract$SimAccount.FDN_EF_TYPE,2,Android.Provider.SimAccountType,FdnEfType,remove, +E,31,android/provider/ContactsContract$SimAccount.SDN_EF_TYPE,3,Android.Provider.SimAccountType,SdnEfType,remove, +E,31,android/provider/ContactsContract$SimAccount.UNKNOWN_EF_TYPE,0,Android.Provider.SimAccountType,UnknownEfType,remove, E,30,android/provider/DocumentsContract$Document.FLAG_DIR_BLOCKS_OPEN_DOCUMENT_TREE,32768,Android.Provider.DocumentContractFlags,DirBlocksOpenDocumentTree,remove, E,19,android/provider/DocumentsContract$Document.FLAG_DIR_PREFERS_GRID,16,Android.Provider.DocumentContractFlags,DirPrefersGrid,remove, E,19,android/provider/DocumentsContract$Document.FLAG_DIR_PREFERS_LAST_MODIFIED,32,Android.Provider.DocumentContractFlags,DirPrefersLastModified,remove, @@ -7256,20 +7759,23 @@ E,26,android/provider/FontsContract$FontRequestCallback.FAIL_REASON_PROVIDER_NOT E,26,android/provider/FontsContract$FontRequestCallback.FAIL_REASON_WRONG_CERTIFICATES,-2,Android.Provider.FontRequestFailureReason,WrongCertificates,keep, E,10,android/provider/LiveFolders.DISPLAY_MODE_GRID,1,Android.Provider.DisplayMode,Grid,keep, E,10,android/provider/LiveFolders.DISPLAY_MODE_LIST,2,Android.Provider.DisplayMode,List,keep, +E,30,android/provider/MediaStore.MATCH_DEFAULT,0,Android.Provider.MediaStoreMatchBehavior,Default,remove, +E,30,android/provider/MediaStore.MATCH_EXCLUDE,2,Android.Provider.MediaStoreMatchBehavior,Exclude,remove, +E,30,android/provider/MediaStore.MATCH_INCLUDE,1,Android.Provider.MediaStoreMatchBehavior,Include,remove, +E,30,android/provider/MediaStore.MATCH_ONLY,3,Android.Provider.MediaStoreMatchBehavior,Only,remove, E,10,android/provider/MediaStore$Images$Thumbnails.FULL_SCREEN_KIND,2,Android.Provider.ThumbnailKind,FullScreenKind,keep, E,10,android/provider/MediaStore$Images$Thumbnails.MICRO_KIND,3,Android.Provider.ThumbnailKind,MicroKind,keep, E,10,android/provider/MediaStore$Images$Thumbnails.MINI_KIND,1,Android.Provider.ThumbnailKind,MiniKind,keep, E,10,android/provider/MediaStore$Video$Thumbnails.FULL_SCREEN_KIND,2,Android.Provider.VideoThumbnailKind,FullScreenKind,remove, E,10,android/provider/MediaStore$Video$Thumbnails.MICRO_KIND,3,Android.Provider.VideoThumbnailKind,MicroKind,remove, E,10,android/provider/MediaStore$Video$Thumbnails.MINI_KIND,1,Android.Provider.VideoThumbnailKind,MiniKind,remove, -E,30,android/provider/MediaStore.MATCH_DEFAULT,0,Android.Provider.MediaStoreMatchBehavior,Default,remove, -E,30,android/provider/MediaStore.MATCH_EXCLUDE,2,Android.Provider.MediaStoreMatchBehavior,Exclude,remove, -E,30,android/provider/MediaStore.MATCH_INCLUDE,1,Android.Provider.MediaStoreMatchBehavior,Include,remove, -E,30,android/provider/MediaStore.MATCH_ONLY,3,Android.Provider.MediaStoreMatchBehavior,Only,remove, E,10,android/provider/SearchRecentSuggestions.QUERIES_PROJECTION_DATE_INDEX,1,Android.Provider.QueriesProjection,DateIndex,keep, E,10,android/provider/SearchRecentSuggestions.QUERIES_PROJECTION_DISPLAY1_INDEX,3,Android.Provider.QueriesProjection,Display1Index,keep, E,10,android/provider/SearchRecentSuggestions.QUERIES_PROJECTION_DISPLAY2_INDEX,4,Android.Provider.QueriesProjection,Display2Index,keep, E,10,android/provider/SearchRecentSuggestions.QUERIES_PROJECTION_QUERY_INDEX,2,Android.Provider.QueriesProjection,QueryIndex,keep, +E,30,android/provider/Settings.ADD_WIFI_RESULT_ADD_OR_UPDATE_FAILED,1,Android.Provider.AddWifiResult,AddOrUpdateFailed,remove, +E,30,android/provider/Settings.ADD_WIFI_RESULT_ALREADY_EXISTS,2,Android.Provider.AddWifiResult,AlreadyExists,remove, +E,30,android/provider/Settings.ADD_WIFI_RESULT_SUCCESS,0,Android.Provider.AddWifiResult,Success,remove, E,17,android/provider/Settings$Global.WIFI_SLEEP_POLICY_DEFAULT,0,Android.Provider.GlobalWifiSleepPolicy,Default,remove, E,17,android/provider/Settings$Global.WIFI_SLEEP_POLICY_NEVER,2,Android.Provider.GlobalWifiSleepPolicy,Never,remove, E,17,android/provider/Settings$Global.WIFI_SLEEP_POLICY_NEVER_WHILE_PLUGGED,1,Android.Provider.GlobalWifiSleepPolicy,NeverWhilePlugged,remove, @@ -7282,9 +7788,11 @@ E,10,android/provider/Settings$System.SCREEN_BRIGHTNESS_MODE_MANUAL,0,Android.Pr E,10,android/provider/Settings$System.WIFI_SLEEP_POLICY_DEFAULT,0,Android.Provider.WifiSleepPolicy,Default,remove, E,10,android/provider/Settings$System.WIFI_SLEEP_POLICY_NEVER,2,Android.Provider.WifiSleepPolicy,Never,remove, E,10,android/provider/Settings$System.WIFI_SLEEP_POLICY_NEVER_WHILE_PLUGGED,1,Android.Provider.WifiSleepPolicy,NeverWhilePlugged,remove, -E,30,android/provider/Settings.ADD_WIFI_RESULT_ADD_OR_UPDATE_FAILED,1,Android.Provider.AddWifiResult,AddOrUpdateFailed,remove, -E,30,android/provider/Settings.ADD_WIFI_RESULT_ALREADY_EXISTS,2,Android.Provider.AddWifiResult,AlreadyExists,remove, -E,30,android/provider/Settings.ADD_WIFI_RESULT_SUCCESS,0,Android.Provider.AddWifiResult,Success,remove, +E,31,android/provider/SimPhonebookContract$ElementaryFiles.EF_ADN,1,Android.Provider.SimElementaryFileType,Adn,remove, +E,31,android/provider/SimPhonebookContract$ElementaryFiles.EF_FDN,2,Android.Provider.SimElementaryFileType,Fdn,remove, +E,31,android/provider/SimPhonebookContract$ElementaryFiles.EF_SDN,3,Android.Provider.SimElementaryFileType,Sdn,remove, +E,31,android/provider/SimPhonebookContract$ElementaryFiles.EF_UNKNOWN,0,Android.Provider.SimElementaryFileType,Unknown,remove, +I,31,android/provider/SimPhonebookContract$SimRecords.ERROR_NAME_UNSUPPORTED,-1,,,, E,19,android/provider/Telephony$MmsSms.ERR_TYPE_GENERIC,1,Android.Provider.MmsSmsErrorType,Generic,remove, E,19,android/provider/Telephony$MmsSms.ERR_TYPE_GENERIC_PERMANENT,10,Android.Provider.MmsSmsErrorType,GenericPermanent,remove, E,19,android/provider/Telephony$MmsSms.ERR_TYPE_MMS_PROTO_PERMANENT,12,Android.Provider.MmsSmsErrorType,MmsProtoPermanent,remove, @@ -7326,2554 +7834,2671 @@ E,24,android/provider/VoicemailContract$Status.DATA_CHANNEL_STATE_SERVER_ERROR,5 E,15,android/provider/VoicemailContract$Status.NOTIFICATION_CHANNEL_STATE_MESSAGE_WAITING,2,Android.Provider.VoicemailNotificationChannelState,MessageWaiting,remove, E,15,android/provider/VoicemailContract$Status.NOTIFICATION_CHANNEL_STATE_NO_CONNECTION,1,Android.Provider.VoicemailNotificationChannelState,NoConnection,remove, E,15,android/provider/VoicemailContract$Status.NOTIFICATION_CHANNEL_STATE_OK,0,Android.Provider.VoicemailNotificationChannelState,Ok,remove, -?,24,android/provider/VoicemailContract$Status.QUOTA_UNAVAILABLE,-1,,,, -?,28,android/provider/VoicemailContract$Voicemails.DIRTY_RETAIN,-1,,,, -?,0,android/R$anim.accelerate_decelerate_interpolator,17432580,,,, -?,0,android/R$anim.accelerate_interpolator,17432581,,,, -?,0,android/R$anim.anticipate_interpolator,17432583,,,, -?,0,android/R$anim.anticipate_overshoot_interpolator,17432585,,,, -?,0,android/R$anim.bounce_interpolator,17432586,,,, -?,0,android/R$anim.cycle_interpolator,17432588,,,, -?,0,android/R$anim.decelerate_interpolator,17432582,,,, -?,0,android/R$anim.fade_in,17432576,,,, -?,0,android/R$anim.fade_out,17432577,,,, -?,0,android/R$anim.linear_interpolator,17432587,,,, -?,0,android/R$anim.overshoot_interpolator,17432584,,,, -?,0,android/R$anim.slide_in_left,17432578,,,, -?,0,android/R$anim.slide_out_right,17432579,,,, -?,15,android/R$animator.fade_in,17498112,,,, -?,15,android/R$animator.fade_out,17498113,,,, -?,0,android/R$array.emailAddressTypes,17235968,,,, -?,0,android/R$array.imProtocols,17235969,,,, -?,0,android/R$array.organizationTypes,17235970,,,, -?,0,android/R$array.phoneTypes,17235971,,,, -?,0,android/R$array.postalAddressTypes,17235972,,,, -?,0,android/R$attr.absListViewStyle,16842858,,,, -?,15,android/R$attr.accessibilityEventTypes,16843648,,,, -?,15,android/R$attr.accessibilityFeedbackType,16843650,,,, -?,15,android/R$attr.accessibilityFlags,16843652,,,, -?,28,android/R$attr.accessibilityHeading,16844160,,,, -?,19,android/R$attr.accessibilityLiveRegion,16843758,,,, -?,28,android/R$attr.accessibilityPaneTitle,16844156,,,, -?,22,android/R$attr.accessibilityTraversalAfter,16843986,,,, -?,22,android/R$attr.accessibilityTraversalBefore,16843985,,,, -?,0,android/R$attr.accountPreferences,16843423,,,, -?,0,android/R$attr.accountType,16843407,,,, -?,0,android/R$attr.action,16842797,,,, -?,15,android/R$attr.actionBarDivider,16843675,,,, -?,15,android/R$attr.actionBarItemBackground,16843676,,,, -?,21,android/R$attr.actionBarPopupTheme,16843917,,,, -?,15,android/R$attr.actionBarSize,16843499,,,, -?,15,android/R$attr.actionBarSplitStyle,16843656,,,, -?,15,android/R$attr.actionBarStyle,16843470,,,, -?,15,android/R$attr.actionBarTabBarStyle,16843508,,,, -?,15,android/R$attr.actionBarTabStyle,16843507,,,, -?,15,android/R$attr.actionBarTabTextStyle,16843509,,,, -?,21,android/R$attr.actionBarTheme,16843825,,,, -?,15,android/R$attr.actionBarWidgetTheme,16843671,,,, -?,15,android/R$attr.actionButtonStyle,16843480,,,, -?,15,android/R$attr.actionDropDownStyle,16843479,,,, -?,15,android/R$attr.actionLayout,16843515,,,, -?,15,android/R$attr.actionMenuTextAppearance,16843616,,,, -?,15,android/R$attr.actionMenuTextColor,16843617,,,, -?,15,android/R$attr.actionModeBackground,16843483,,,, -?,15,android/R$attr.actionModeCloseButtonStyle,16843511,,,, -?,15,android/R$attr.actionModeCloseDrawable,16843484,,,, -?,15,android/R$attr.actionModeCopyDrawable,16843538,,,, -?,15,android/R$attr.actionModeCutDrawable,16843537,,,, -?,21,android/R$attr.actionModeFindDrawable,16843898,,,, -?,15,android/R$attr.actionModePasteDrawable,16843539,,,, -?,15,android/R$attr.actionModeSelectAllDrawable,16843646,,,, -?,21,android/R$attr.actionModeShareDrawable,16843897,,,, -?,15,android/R$attr.actionModeSplitBackground,16843677,,,, -?,15,android/R$attr.actionModeStyle,16843668,,,, -?,21,android/R$attr.actionModeWebSearchDrawable,16843899,,,, -?,15,android/R$attr.actionOverflowButtonStyle,16843510,,,, -?,21,android/R$attr.actionOverflowMenuStyle,16843844,,,, -?,15,android/R$attr.actionProviderClass,16843657,,,, -?,15,android/R$attr.actionViewClass,16843516,,,, -?,15,android/R$attr.activatedBackgroundIndicator,16843517,,,, -?,0,android/R$attr.activityCloseEnterAnimation,16842938,,,, -?,0,android/R$attr.activityCloseExitAnimation,16842939,,,, -?,0,android/R$attr.activityOpenEnterAnimation,16842936,,,, -?,0,android/R$attr.activityOpenExitAnimation,16842937,,,, -?,19,android/R$attr.addPrintersActivity,16843750,,,, -?,0,android/R$attr.addStatesFromChildren,16842992,,,, -?,0,android/R$attr.adjustViewBounds,16843038,,,, -?,19,android/R$attr.advancedPrintOptionsActivity,16843761,,,, -?,15,android/R$attr.alertDialogIcon,16843605,,,, -?,0,android/R$attr.alertDialogStyle,16842845,,,, -?,15,android/R$attr.alertDialogTheme,16843529,,,, -?,15,android/R$attr.alignmentMode,16843642,,,, -?,15,android/R$attr.allContactsName,16843468,,,, -?,29,android/R$attr.allowAudioPlaybackCapture,16844289,,,, -?,0,android/R$attr.allowBackup,16843392,,,, -?,0,android/R$attr.allowClearUserData,16842757,,,, -?,20,android/R$attr.allowEmbedded,16843765,,,, -?,30,android/R$attr.allowNativeHeapPointerTagging,16844307,,,, -?,15,android/R$attr.allowParallelSyncs,16843570,,,, -?,0,android/R$attr.allowSingleTap,16843353,,,, -?,0,android/R$attr.allowTaskReparenting,16843268,,,, -?,23,android/R$attr.allowUndo,16843999,,,, -?,15,android/R$attr.alpha,16843551,,,, -?,26,android/R$attr.alphabeticModifiers,16844110,,,, -?,0,android/R$attr.alphabeticShortcut,16843235,,,, -?,0,android/R$attr.alwaysDrawnWithCache,16842991,,,, -?,0,android/R$attr.alwaysRetainTaskState,16843267,,,, -?,21,android/R$attr.ambientShadowAlpha,16843966,,,, -?,21,android/R$attr.amPmBackgroundColor,16843941,,,, -?,21,android/R$attr.amPmTextColor,16843940,,,, -?,0,android/R$attr.angle,16843168,,,, -?,30,android/R$attr.animatedImageDrawable,16844298,,,, -?,15,android/R$attr.animateFirstView,16843477,,,, -?,15,android/R$attr.animateLayoutChanges,16843506,,,, -?,0,android/R$attr.animateOnClick,16843356,,,, -?,0,android/R$attr.animation,16843213,,,, -?,0,android/R$attr.animationCache,16842989,,,, -?,0,android/R$attr.animationDuration,16843026,,,, -?,0,android/R$attr.animationOrder,16843214,,,, -?,15,android/R$attr.animationResolution,16843546,,,, -?,0,android/R$attr.antialias,16843034,,,, -?,0,android/R$attr.anyDensity,16843372,,,, -?,19,android/R$attr.apduServiceBanner,16843757,,,, -?,0,android/R$attr.apiKey,16843281,,,, -?,26,android/R$attr.appCategory,16844101,,,, -?,28,android/R$attr.appComponentFactory,16844154,,,, -?,0,android/R$attr.author,16843444,,,, -?,0,android/R$attr.authorities,16842776,,,, -?,15,android/R$attr.autoAdvanceViewId,16843535,,,, -?,0,android/R$attr.autoCompleteTextViewStyle,16842859,,,, -?,26,android/R$attr.autofilledHighlight,16844136,,,, -?,26,android/R$attr.autofillHints,16844118,,,, -?,0,android/R$attr.autoLink,16842928,,,, -?,19,android/R$attr.autoMirrored,16843754,,,, -?,21,android/R$attr.autoRemoveFromRecents,16843847,,,, -?,26,android/R$attr.autoSizeMaxTextSize,16844102,,,, -?,26,android/R$attr.autoSizeMinTextSize,16844088,,,, -?,26,android/R$attr.autoSizePresetSizes,16844087,,,, -?,26,android/R$attr.autoSizeStepGranularity,16844086,,,, -?,26,android/R$attr.autoSizeTextType,16844085,,,, -?,0,android/R$attr.autoStart,16843445,,,, -?,0,android/R$attr.autoText,16843114,,,, -?,0,android/R$attr.autoUrlDetect,16843404,,,, -?,23,android/R$attr.autoVerify,16844014,,,, -?,0,android/R$attr.background,16842964,,,, -?,0,android/R$attr.backgroundDimAmount,16842802,,,, -?,0,android/R$attr.backgroundDimEnabled,16843295,,,, -?,15,android/R$attr.backgroundSplit,16843659,,,, -?,15,android/R$attr.backgroundStacked,16843658,,,, -?,21,android/R$attr.backgroundTint,16843883,,,, -?,21,android/R$attr.backgroundTintMode,16843884,,,, -?,0,android/R$attr.backupAgent,16843391,,,, -?,24,android/R$attr.backupInForeground,16844058,,,, -?,21,android/R$attr.banner,16843762,,,, -?,15,android/R$attr.baseline,16843548,,,, -?,0,android/R$attr.baselineAlignBottom,16843042,,,, -?,0,android/R$attr.baselineAligned,16843046,,,, -?,0,android/R$attr.baselineAlignedChildIndex,16843047,,,, -?,24,android/R$attr.bitmap,16844054,,,, -?,15,android/R$attr.borderlessButtonStyle,16843563,,,, -?,0,android/R$attr.bottom,16843184,,,, -?,0,android/R$attr.bottomBright,16842957,,,, -?,0,android/R$attr.bottomDark,16842953,,,, -?,0,android/R$attr.bottomLeftRadius,16843179,,,, -?,0,android/R$attr.bottomMedium,16842958,,,, -?,0,android/R$attr.bottomOffset,16843351,,,, -?,0,android/R$attr.bottomRightRadius,16843180,,,, -?,15,android/R$attr.breadCrumbShortTitle,16843524,,,, -?,15,android/R$attr.breadCrumbTitle,16843523,,,, -?,23,android/R$attr.breakStrategy,16843997,,,, -?,0,android/R$attr.bufferType,16843086,,,, -?,0,android/R$attr.button,16843015,,,, -?,15,android/R$attr.buttonBarButtonStyle,16843567,,,, -?,21,android/R$attr.buttonBarNegativeButtonStyle,16843915,,,, -?,21,android/R$attr.buttonBarNeutralButtonStyle,16843914,,,, -?,21,android/R$attr.buttonBarPositiveButtonStyle,16843913,,,, -?,15,android/R$attr.buttonBarStyle,16843566,,,, -?,28,android/R$attr.buttonCornerRadius,16844149,,,, -?,24,android/R$attr.buttonGravity,16844030,,,, -?,0,android/R$attr.buttonStyle,16842824,,,, -?,0,android/R$attr.buttonStyleInset,16842826,,,, -?,0,android/R$attr.buttonStyleSmall,16842825,,,, -?,0,android/R$attr.buttonStyleToggle,16842827,,,, -?,21,android/R$attr.buttonTint,16843887,,,, -?,21,android/R$attr.buttonTintMode,16843888,,,, -?,0,android/R$attr.cacheColorHint,16843009,,,, -?,21,android/R$attr.calendarTextColor,16843931,,,, -?,15,android/R$attr.calendarViewShown,16843596,,,, -?,15,android/R$attr.calendarViewStyle,16843613,,,, -?,24,android/R$attr.canControlMagnification,16844039,,,, -?,0,android/R$attr.candidatesTextStyleSpans,16843312,,,, -?,24,android/R$attr.canPerformGestures,16844045,,,, -?,24,android/R$attr.canRecord,16844060,,,, -?,18,android/R$attr.canRequestEnhancedWebAccessibility,16843736,,,, -?,18,android/R$attr.canRequestFilterKeyEvents,16843737,,,, -?,26,android/R$attr.canRequestFingerprintGestures,16844109,,,, -?,18,android/R$attr.canRequestTouchExplorationMode,16843735,,,, -?,15,android/R$attr.canRetrieveWindowContent,16843653,,,, -?,30,android/R$attr.canTakeScreenshot,16844304,,,, -?,28,android/R$attr.cantSaveState,16844142,,,, -?,0,android/R$attr.capitalize,16843113,,,, -?,19,android/R$attr.category,16843752,,,, -?,0,android/R$attr.centerBright,16842956,,,, -?,0,android/R$attr.centerColor,16843275,,,, -?,0,android/R$attr.centerDark,16842952,,,, -?,0,android/R$attr.centerMedium,16842959,,,, -?,0,android/R$attr.centerX,16843170,,,, -?,0,android/R$attr.centerY,16843171,,,, -?,26,android/R$attr.certDigest,16844104,,,, -?,0,android/R$attr.checkable,16843237,,,, -?,0,android/R$attr.checkableBehavior,16843232,,,, -?,0,android/R$attr.checkBoxPreferenceStyle,16842895,,,, -?,0,android/R$attr.checkboxStyle,16842860,,,, -?,0,android/R$attr.checked,16843014,,,, -?,0,android/R$attr.checkedButton,16843080,,,, -?,17,android/R$attr.checkedTextViewStyle,16843720,,,, -?,0,android/R$attr.checkMark,16843016,,,, -?,21,android/R$attr.checkMarkTint,16843943,,,, -?,21,android/R$attr.checkMarkTintMode,16843944,,,, -?,0,android/R$attr.childDivider,16843025,,,, -?,0,android/R$attr.childIndicator,16843020,,,, -?,18,android/R$attr.childIndicatorEnd,16843732,,,, -?,0,android/R$attr.childIndicatorLeft,16843023,,,, -?,0,android/R$attr.childIndicatorRight,16843024,,,, -?,18,android/R$attr.childIndicatorStart,16843731,,,, -?,0,android/R$attr.choiceMode,16843051,,,, -?,27,android/R$attr.classLoader,16844139,,,, -?,0,android/R$attr.clearTaskOnLaunch,16842773,,,, -?,0,android/R$attr.clickable,16842981,,,, -?,0,android/R$attr.clipChildren,16842986,,,, -?,0,android/R$attr.clipOrientation,16843274,,,, -?,0,android/R$attr.clipToPadding,16842987,,,, -?,21,android/R$attr.closeIcon,16843905,,,, -?,0,android/R$attr.codes,16843330,,,, -?,0,android/R$attr.collapseColumns,16843083,,,, -?,22,android/R$attr.collapseContentDescription,16843984,,,, -?,24,android/R$attr.collapseIcon,16844031,,,, -?,0,android/R$attr.color,16843173,,,, -?,21,android/R$attr.colorAccent,16843829,,,, -?,15,android/R$attr.colorActivatedHighlight,16843664,,,, -?,0,android/R$attr.colorBackground,16842801,,,, -?,0,android/R$attr.colorBackgroundCacheHint,16843435,,,, -?,23,android/R$attr.colorBackgroundFloating,16844002,,,, -?,21,android/R$attr.colorButtonNormal,16843819,,,, -?,21,android/R$attr.colorControlActivated,16843818,,,, -?,21,android/R$attr.colorControlHighlight,16843820,,,, -?,21,android/R$attr.colorControlNormal,16843817,,,, -?,21,android/R$attr.colorEdgeEffect,16843982,,,, -?,26,android/R$attr.colorError,16844099,,,, -?,15,android/R$attr.colorFocusedHighlight,16843663,,,, -?,0,android/R$attr.colorForeground,16842800,,,, -?,0,android/R$attr.colorForegroundInverse,16843270,,,, -?,15,android/R$attr.colorLongPressedHighlight,16843662,,,, -?,26,android/R$attr.colorMode,16844106,,,, -?,15,android/R$attr.colorMultiSelectHighlight,16843665,,,, -?,15,android/R$attr.colorPressedHighlight,16843661,,,, -?,21,android/R$attr.colorPrimary,16843827,,,, -?,21,android/R$attr.colorPrimaryDark,16843828,,,, -?,25,android/R$attr.colorSecondary,16844080,,,, -?,15,android/R$attr.columnCount,16843639,,,, -?,0,android/R$attr.columnDelay,16843215,,,, -?,15,android/R$attr.columnOrderPreserved,16843640,,,, -?,0,android/R$attr.columnWidth,16843031,,,, -?,21,android/R$attr.commitIcon,16843909,,,, -?,15,android/R$attr.compatibleWidthLimitDp,16843621,,,, -?,0,android/R$attr.completionHint,16843122,,,, -?,0,android/R$attr.completionHintView,16843123,,,, -?,0,android/R$attr.completionThreshold,16843124,,,, -?,0,android/R$attr.configChanges,16842783,,,, -?,0,android/R$attr.configure,16843357,,,, -?,0,android/R$attr.constantSize,16843158,,,, -?,0,android/R$attr.content,16843355,,,, -?,21,android/R$attr.contentAgeHint,16843961,,,, -?,0,android/R$attr.contentAuthority,16843408,,,, -?,0,android/R$attr.contentDescription,16843379,,,, -?,21,android/R$attr.contentInsetEnd,16843860,,,, -?,24,android/R$attr.contentInsetEndWithActions,16844067,,,, -?,21,android/R$attr.contentInsetLeft,16843861,,,, -?,21,android/R$attr.contentInsetRight,16843862,,,, -?,21,android/R$attr.contentInsetStart,16843859,,,, -?,24,android/R$attr.contentInsetStartWithNavigation,16844066,,,, -?,23,android/R$attr.contextClickable,16844007,,,, -?,25,android/R$attr.contextDescription,16844078,,,, -?,24,android/R$attr.contextPopupMenuStyle,16844033,,,, -?,25,android/R$attr.contextUri,16844077,,,, -?,21,android/R$attr.controlX1,16843772,,,, -?,21,android/R$attr.controlX2,16843774,,,, -?,21,android/R$attr.controlY1,16843773,,,, -?,21,android/R$attr.controlY2,16843775,,,, -?,24,android/R$attr.countDown,16844059,,,, -?,21,android/R$attr.country,16843962,,,, -?,0,android/R$attr.cropToPadding,16843043,,,, -?,30,android/R$attr.crossProfile,16844303,,,, -?,0,android/R$attr.cursorVisible,16843090,,,, -?,15,android/R$attr.customNavigationLayout,16843474,,,, -?,15,android/R$attr.customTokens,16843579,,,, -?,0,android/R$attr.cycles,16843220,,,, -?,0,android/R$attr.dashGap,16843175,,,, -?,0,android/R$attr.dashWidth,16843174,,,, -?,0,android/R$attr.data,16842798,,,, -?,21,android/R$attr.datePickerDialogTheme,16843948,,,, -?,21,android/R$attr.datePickerMode,16843955,,,, -?,15,android/R$attr.datePickerStyle,16843612,,,, -?,15,android/R$attr.dateTextAppearance,16843593,,,, -?,21,android/R$attr.dayOfWeekBackground,16843924,,,, -?,21,android/R$attr.dayOfWeekTextAppearance,16843925,,,, -?,0,android/R$attr.debuggable,16842767,,,, -?,26,android/R$attr.defaultFocusHighlightEnabled,16844130,,,, -?,24,android/R$attr.defaultHeight,16844021,,,, -?,24,android/R$attr.defaultToDeviceProtectedStorage,16844036,,,, -?,0,android/R$attr.defaultValue,16843245,,,, -?,24,android/R$attr.defaultWidth,16844020,,,, -?,0,android/R$attr.delay,16843212,,,, -?,0,android/R$attr.dependency,16843244,,,, -?,0,android/R$attr.descendantFocusability,16842993,,,, -?,0,android/R$attr.description,16842784,,,, -?,0,android/R$attr.detachWallpaper,16843430,,,, -?,0,android/R$attr.detailColumn,16843427,,,, -?,15,android/R$attr.detailsElementBackground,16843598,,,, -?,0,android/R$attr.detailSocialSummary,16843428,,,, -?,0,android/R$attr.dial,16843010,,,, -?,28,android/R$attr.dialogCornerRadius,16844145,,,, -?,0,android/R$attr.dialogIcon,16843252,,,, -?,0,android/R$attr.dialogLayout,16843255,,,, -?,0,android/R$attr.dialogMessage,16843251,,,, -?,0,android/R$attr.dialogPreferenceStyle,16842897,,,, -?,22,android/R$attr.dialogPreferredPadding,16843987,,,, -?,15,android/R$attr.dialogTheme,16843528,,,, -?,0,android/R$attr.dialogTitle,16843250,,,, -?,0,android/R$attr.digits,16843110,,,, -?,24,android/R$attr.directBootAware,16844037,,,, -?,0,android/R$attr.direction,16843217,,,, -?,15,android/R$attr.directionDescriptions,16843681,,,, -?,0,android/R$attr.directionPriority,16843218,,,, -?,0,android/R$attr.disabledAlpha,16842803,,,, -?,0,android/R$attr.disableDependentsState,16843249,,,, -?,15,android/R$attr.displayOptions,16843472,,,, -?,0,android/R$attr.dither,16843036,,,, -?,0,android/R$attr.divider,16843049,,,, -?,0,android/R$attr.dividerHeight,16843050,,,, -?,15,android/R$attr.dividerHorizontal,16843564,,,, -?,15,android/R$attr.dividerPadding,16843562,,,, -?,15,android/R$attr.dividerVertical,16843530,,,, -?,21,android/R$attr.documentLaunchMode,16843845,,,, -?,0,android/R$attr.drawable,16843161,,,, -?,0,android/R$attr.drawableBottom,16843118,,,, -?,15,android/R$attr.drawableEnd,16843667,,,, -?,0,android/R$attr.drawableLeft,16843119,,,, -?,0,android/R$attr.drawablePadding,16843121,,,, -?,0,android/R$attr.drawableRight,16843120,,,, -?,15,android/R$attr.drawableStart,16843666,,,, -?,23,android/R$attr.drawableTint,16843990,,,, -?,23,android/R$attr.drawableTintMode,16843991,,,, -?,0,android/R$attr.drawableTop,16843117,,,, -?,0,android/R$attr.drawingCacheQuality,16842984,,,, -?,0,android/R$attr.drawSelectorOnTop,16843004,,,, -?,0,android/R$attr.dropDownAnchor,16843363,,,, -?,0,android/R$attr.dropDownHeight,16843395,,,, -?,0,android/R$attr.dropDownHintAppearance,16842888,,,, -?,0,android/R$attr.dropDownHorizontalOffset,16843436,,,, -?,0,android/R$attr.dropDownItemStyle,16842886,,,, -?,0,android/R$attr.dropDownListViewStyle,16842861,,,, -?,0,android/R$attr.dropDownSelector,16843125,,,, -?,15,android/R$attr.dropDownSpinnerStyle,16843478,,,, -?,0,android/R$attr.dropDownVerticalOffset,16843437,,,, -?,0,android/R$attr.dropDownWidth,16843362,,,, -?,0,android/R$attr.duplicateParentState,16842985,,,, -?,0,android/R$attr.duration,16843160,,,, -?,0,android/R$attr.editable,16843115,,,, -?,0,android/R$attr.editorExtras,16843300,,,, -?,15,android/R$attr.editTextBackground,16843602,,,, -?,15,android/R$attr.editTextColor,16843601,,,, -?,0,android/R$attr.editTextPreferenceStyle,16842898,,,, -?,0,android/R$attr.editTextStyle,16842862,,,, -?,21,android/R$attr.elegantTextHeight,16843869,,,, -?,21,android/R$attr.elevation,16843840,,,, -?,0,android/R$attr.ellipsize,16842923,,,, -?,0,android/R$attr.ems,16843096,,,, -?,0,android/R$attr.enabled,16842766,,,, -?,24,android/R$attr.enableVrMode,16844069,,,, -?,23,android/R$attr.end,16843996,,,, -?,0,android/R$attr.endColor,16843166,,,, -?,24,android/R$attr.endX,16844050,,,, -?,24,android/R$attr.endY,16844051,,,, -?,0,android/R$attr.endYear,16843133,,,, -?,29,android/R$attr.enforceNavigationBarContrast,16844293,,,, -?,29,android/R$attr.enforceStatusBarContrast,16844292,,,, -?,15,android/R$attr.enterFadeDuration,16843532,,,, -?,0,android/R$attr.entries,16842930,,,, -?,0,android/R$attr.entryValues,16843256,,,, -?,0,android/R$attr.eventsInterceptionEnabled,16843389,,,, -?,21,android/R$attr.excludeClass,16843842,,,, -?,0,android/R$attr.excludeFromRecents,16842775,,,, -?,21,android/R$attr.excludeId,16843841,,,, -?,21,android/R$attr.excludeName,16843854,,,, -?,15,android/R$attr.exitFadeDuration,16843533,,,, -?,0,android/R$attr.expandableListPreferredChildIndicatorLeft,16842834,,,, -?,0,android/R$attr.expandableListPreferredChildIndicatorRight,16842835,,,, -?,0,android/R$attr.expandableListPreferredChildPaddingLeft,16842831,,,, -?,0,android/R$attr.expandableListPreferredItemIndicatorLeft,16842832,,,, -?,0,android/R$attr.expandableListPreferredItemIndicatorRight,16842833,,,, -?,0,android/R$attr.expandableListPreferredItemPaddingLeft,16842830,,,, -?,0,android/R$attr.expandableListViewStyle,16842863,,,, -?,0,android/R$attr.expandableListViewWhiteStyle,16843446,,,, -?,0,android/R$attr.exported,16842768,,,, -?,24,android/R$attr.externalService,16844046,,,, -?,23,android/R$attr.extractNativeLibs,16844010,,,, -?,0,android/R$attr.extraTension,16843371,,,, -?,0,android/R$attr.factor,16843219,,,, -?,0,android/R$attr.fadeDuration,16843384,,,, -?,0,android/R$attr.fadeEnabled,16843390,,,, -?,0,android/R$attr.fadeOffset,16843383,,,, -?,0,android/R$attr.fadeScrollbars,16843434,,,, -?,0,android/R$attr.fadingEdge,16842975,,,, -?,0,android/R$attr.fadingEdgeLength,16842976,,,, -?,19,android/R$attr.fadingMode,16843745,,,, -?,28,android/R$attr.fallbackLineSpacing,16844155,,,, -?,15,android/R$attr.fastScrollAlwaysVisible,16843573,,,, -?,0,android/R$attr.fastScrollEnabled,16843302,,,, -?,15,android/R$attr.fastScrollOverlayPosition,16843578,,,, -?,15,android/R$attr.fastScrollPreviewBackgroundLeft,16843575,,,, -?,15,android/R$attr.fastScrollPreviewBackgroundRight,16843576,,,, -?,21,android/R$attr.fastScrollStyle,16843767,,,, -?,15,android/R$attr.fastScrollTextColor,16843609,,,, -?,15,android/R$attr.fastScrollThumbDrawable,16843574,,,, -?,15,android/R$attr.fastScrollTrackDrawable,16843577,,,, -?,0,android/R$attr.fillAfter,16843197,,,, -?,21,android/R$attr.fillAlpha,16843980,,,, -?,0,android/R$attr.fillBefore,16843196,,,, -?,21,android/R$attr.fillColor,16843780,,,, -?,0,android/R$attr.fillEnabled,16843343,,,, -?,24,android/R$attr.fillType,16844062,,,, -?,0,android/R$attr.fillViewport,16843130,,,, -?,0,android/R$attr.filter,16843035,,,, -?,0,android/R$attr.filterTouchesWhenObscured,16843460,,,, -?,23,android/R$attr.fingerprintAuthDrawable,16844008,,,, -?,0,android/R$attr.finishOnCloseSystemDialogs,16843431,,,, -?,0,android/R$attr.finishOnTaskLaunch,16842772,,,, -?,28,android/R$attr.firstBaselineToTopHeight,16844157,,,, -?,15,android/R$attr.firstDayOfWeek,16843581,,,, -?,0,android/R$attr.fitsSystemWindows,16842973,,,, -?,0,android/R$attr.flipInterval,16843129,,,, -?,0,android/R$attr.focusable,16842970,,,, -?,0,android/R$attr.focusableInTouchMode,16842971,,,, -?,26,android/R$attr.focusedByDefault,16844100,,,, -?,15,android/R$attr.focusedMonthDateColor,16843587,,,, -?,26,android/R$attr.font,16844082,,,, -?,16,android/R$attr.fontFamily,16843692,,,, -?,21,android/R$attr.fontFeatureSettings,16843959,,,, -?,26,android/R$attr.fontProviderAuthority,16844112,,,, -?,26,android/R$attr.fontProviderCerts,16844125,,,, -?,26,android/R$attr.fontProviderPackage,16844119,,,, -?,26,android/R$attr.fontProviderQuery,16844113,,,, -?,26,android/R$attr.fontStyle,16844095,,,, -?,28,android/R$attr.fontVariationSettings,16844144,,,, -?,26,android/R$attr.fontWeight,16844083,,,, -?,0,android/R$attr.footerDividersEnabled,16843311,,,, -?,29,android/R$attr.forceDarkAllowed,16844172,,,, -?,24,android/R$attr.forceHasOverlappingRendering,16844065,,,, -?,30,android/R$attr.forceQueryable,16844296,,,, -?,29,android/R$attr.forceUriPermissions,16844191,,,, -?,0,android/R$attr.foreground,16843017,,,, -?,0,android/R$attr.foregroundGravity,16843264,,,, -?,29,android/R$attr.foregroundServiceType,16844185,,,, -?,21,android/R$attr.foregroundTint,16843885,,,, -?,21,android/R$attr.foregroundTintMode,16843886,,,, -?,0,android/R$attr.format,16843013,,,, -?,17,android/R$attr.format12Hour,16843722,,,, -?,17,android/R$attr.format24Hour,16843723,,,, -?,23,android/R$attr.fraction,16843992,,,, -?,15,android/R$attr.fragment,16843491,,,, -?,21,android/R$attr.fragmentAllowEnterTransitionOverlap,16843976,,,, -?,21,android/R$attr.fragmentAllowReturnTransitionOverlap,16843977,,,, -?,15,android/R$attr.fragmentCloseEnterAnimation,16843495,,,, -?,15,android/R$attr.fragmentCloseExitAnimation,16843496,,,, -?,21,android/R$attr.fragmentEnterTransition,16843971,,,, -?,21,android/R$attr.fragmentExitTransition,16843970,,,, -?,15,android/R$attr.fragmentFadeEnterAnimation,16843497,,,, -?,15,android/R$attr.fragmentFadeExitAnimation,16843498,,,, -?,15,android/R$attr.fragmentOpenEnterAnimation,16843493,,,, -?,15,android/R$attr.fragmentOpenExitAnimation,16843494,,,, -?,21,android/R$attr.fragmentReenterTransition,16843975,,,, -?,21,android/R$attr.fragmentReturnTransition,16843973,,,, -?,21,android/R$attr.fragmentSharedElementEnterTransition,16843972,,,, -?,21,android/R$attr.fragmentSharedElementReturnTransition,16843974,,,, -?,0,android/R$attr.freezesText,16843116,,,, -?,0,android/R$attr.fromAlpha,16843210,,,, -?,0,android/R$attr.fromDegrees,16843187,,,, -?,21,android/R$attr.fromId,16843850,,,, -?,19,android/R$attr.fromScene,16843741,,,, -?,0,android/R$attr.fromXDelta,16843206,,,, -?,0,android/R$attr.fromXScale,16843202,,,, -?,0,android/R$attr.fromYDelta,16843208,,,, -?,0,android/R$attr.fromYScale,16843204,,,, -?,23,android/R$attr.fullBackupContent,16844011,,,, -?,21,android/R$attr.fullBackupOnly,16843891,,,, -?,0,android/R$attr.fullBright,16842954,,,, -?,0,android/R$attr.fullDark,16842950,,,, -?,0,android/R$attr.functionalTest,16842787,,,, -?,0,android/R$attr.galleryItemBackground,16842828,,,, -?,0,android/R$attr.galleryStyle,16842864,,,, -?,0,android/R$attr.gestureColor,16843381,,,, -?,0,android/R$attr.gestureStrokeAngleThreshold,16843388,,,, -?,0,android/R$attr.gestureStrokeLengthThreshold,16843386,,,, -?,0,android/R$attr.gestureStrokeSquarenessThreshold,16843387,,,, -?,0,android/R$attr.gestureStrokeType,16843385,,,, -?,0,android/R$attr.gestureStrokeWidth,16843380,,,, -?,0,android/R$attr.glEsVersion,16843393,,,, -?,21,android/R$attr.goIcon,16843906,,,, -?,0,android/R$attr.gradientRadius,16843172,,,, -?,0,android/R$attr.grantUriPermissions,16842779,,,, -?,0,android/R$attr.gravity,16842927,,,, -?,0,android/R$attr.gridViewStyle,16842865,,,, -?,0,android/R$attr.groupIndicator,16843019,,,, -?,30,android/R$attr.gwpAsanMode,16844312,,,, -?,0,android/R$attr.hand_hour,16843011,,,, -?,0,android/R$attr.hand_minute,16843012,,,, -?,0,android/R$attr.handle,16843354,,,, -?,0,android/R$attr.handleProfiling,16842786,,,, -?,0,android/R$attr.hapticFeedbackEnabled,16843358,,,, -?,15,android/R$attr.hardwareAccelerated,16843475,,,, -?,0,android/R$attr.hasCode,16842764,,,, -?,29,android/R$attr.hasFragileUserData,16844186,,,, -?,21,android/R$attr.headerAmPmTextAppearance,16843936,,,, -?,0,android/R$attr.headerBackground,16843055,,,, -?,21,android/R$attr.headerDayOfMonthTextAppearance,16843927,,,, -?,0,android/R$attr.headerDividersEnabled,16843310,,,, -?,21,android/R$attr.headerMonthTextAppearance,16843926,,,, -?,21,android/R$attr.headerTimeTextAppearance,16843935,,,, -?,21,android/R$attr.headerYearTextAppearance,16843928,,,, -?,0,android/R$attr.height,16843093,,,, -?,21,android/R$attr.hideOnContentScroll,16843843,,,, -?,0,android/R$attr.hint,16843088,,,, -?,15,android/R$attr.homeAsUpIndicator,16843531,,,, -?,15,android/R$attr.homeLayout,16843549,,,, -?,0,android/R$attr.horizontalDivider,16843053,,,, -?,0,android/R$attr.horizontalGap,16843327,,,, -?,15,android/R$attr.horizontalScrollViewStyle,16843603,,,, -?,0,android/R$attr.horizontalSpacing,16843028,,,, -?,0,android/R$attr.host,16842792,,,, -?,24,android/R$attr.hotSpotX,16844055,,,, -?,24,android/R$attr.hotSpotY,16844056,,,, -?,30,android/R$attr.htmlDescription,16844299,,,, -?,23,android/R$attr.hyphenationFrequency,16843998,,,, -?,0,android/R$attr.icon,16842754,,,, -?,15,android/R$attr.iconifiedByDefault,16843514,,,, -?,0,android/R$attr.iconPreview,16843337,,,, -?,26,android/R$attr.iconSpaceReserved,16844129,,,, -?,26,android/R$attr.iconTint,16844126,,,, -?,26,android/R$attr.iconTintMode,16844127,,,, -?,0,android/R$attr.id,16842960,,,, -?,29,android/R$attr.identifier,16844294,,,, -?,0,android/R$attr.ignoreGravity,16843263,,,, -?,0,android/R$attr.imageButtonStyle,16842866,,,, -?,0,android/R$attr.imageWellStyle,16842867,,,, -?,0,android/R$attr.imeActionId,16843366,,,, -?,0,android/R$attr.imeActionLabel,16843365,,,, -?,0,android/R$attr.imeExtractEnterAnimation,16843368,,,, -?,0,android/R$attr.imeExtractExitAnimation,16843369,,,, -?,0,android/R$attr.imeFullscreenBackground,16843308,,,, -?,0,android/R$attr.imeOptions,16843364,,,, -?,15,android/R$attr.imeSubtypeExtraValue,16843502,,,, -?,15,android/R$attr.imeSubtypeLocale,16843500,,,, -?,15,android/R$attr.imeSubtypeMode,16843501,,,, -?,15,android/R$attr.immersive,16843456,,,, -?,16,android/R$attr.importantForAccessibility,16843690,,,, -?,26,android/R$attr.importantForAutofill,16844120,,,, -?,30,android/R$attr.importantForContentCapture,16844295,,,, -?,0,android/R$attr.inAnimation,16843127,,,, -?,0,android/R$attr.includeFontPadding,16843103,,,, -?,0,android/R$attr.includeInGlobalSearch,16843374,,,, -?,0,android/R$attr.indeterminate,16843065,,,, -?,0,android/R$attr.indeterminateBehavior,16843070,,,, -?,0,android/R$attr.indeterminateDrawable,16843067,,,, -?,0,android/R$attr.indeterminateDuration,16843069,,,, -?,0,android/R$attr.indeterminateOnly,16843066,,,, -?,15,android/R$attr.indeterminateProgressStyle,16843544,,,, -?,21,android/R$attr.indeterminateTint,16843881,,,, -?,21,android/R$attr.indeterminateTintMode,16843882,,,, -?,18,android/R$attr.indicatorEnd,16843730,,,, -?,0,android/R$attr.indicatorLeft,16843021,,,, -?,0,android/R$attr.indicatorRight,16843022,,,, -?,18,android/R$attr.indicatorStart,16843729,,,, -?,0,android/R$attr.inflatedId,16842995,,,, -?,29,android/R$attr.inheritShowWhenLocked,16844188,,,, -?,17,android/R$attr.initialKeyguardLayout,16843714,,,, -?,0,android/R$attr.initialLayout,16843345,,,, -?,0,android/R$attr.initOrder,16842778,,,, -?,0,android/R$attr.innerRadius,16843359,,,, -?,0,android/R$attr.innerRadiusRatio,16843163,,,, -?,0,android/R$attr.inputMethod,16843112,,,, -?,0,android/R$attr.inputType,16843296,,,, -?,21,android/R$attr.inset,16843957,,,, -?,0,android/R$attr.insetBottom,16843194,,,, -?,0,android/R$attr.insetLeft,16843191,,,, -?,0,android/R$attr.insetRight,16843192,,,, -?,0,android/R$attr.insetTop,16843193,,,, -?,0,android/R$attr.installLocation,16843447,,,, -?,29,android/R$attr.interactiveUiTimeout,16844181,,,, -?,0,android/R$attr.interpolator,16843073,,,, -?,15,android/R$attr.isAlwaysSyncable,16843571,,,, -?,19,android/R$attr.isAsciiCapable,16843753,,,, -?,15,android/R$attr.isAuxiliary,16843647,,,, -?,0,android/R$attr.isDefault,16843297,,,, -?,26,android/R$attr.isFeatureSplit,16844123,,,, -?,21,android/R$attr.isGame,16843764,,,, -?,0,android/R$attr.isIndicator,16843079,,,, -?,29,android/R$attr.isLightTheme,16844176,,,, -?,0,android/R$attr.isModifier,16843334,,,, -?,16,android/R$attr.isolatedProcess,16843689,,,, -?,26,android/R$attr.isolatedSplits,16844107,,,, -?,0,android/R$attr.isRepeatable,16843336,,,, -?,0,android/R$attr.isScrollContainer,16843342,,,, -?,29,android/R$attr.isSplitRequired,16844177,,,, -?,26,android/R$attr.isStatic,16844122,,,, -?,0,android/R$attr.isSticky,16843335,,,, -?,0,android/R$attr.itemBackground,16843056,,,, -?,0,android/R$attr.itemIconDisabledAlpha,16843057,,,, -?,15,android/R$attr.itemPadding,16843565,,,, -?,0,android/R$attr.itemTextAppearance,16843052,,,, -?,26,android/R$attr.justificationMode,16844135,,,, -?,0,android/R$attr.keepScreenOn,16843286,,,, -?,0,android/R$attr.key,16843240,,,, -?,0,android/R$attr.keyBackground,16843315,,,, -?,16,android/R$attr.keyboardLayout,16843691,,,, -?,0,android/R$attr.keyboardMode,16843341,,,, -?,26,android/R$attr.keyboardNavigationCluster,16844096,,,, -?,0,android/R$attr.keycode,16842949,,,, -?,0,android/R$attr.keyEdgeFlags,16843333,,,, -?,0,android/R$attr.keyHeight,16843326,,,, -?,0,android/R$attr.keyIcon,16843340,,,, -?,0,android/R$attr.keyLabel,16843339,,,, -?,0,android/R$attr.keyOutputText,16843338,,,, -?,0,android/R$attr.keyPreviewHeight,16843321,,,, -?,0,android/R$attr.keyPreviewLayout,16843319,,,, -?,0,android/R$attr.keyPreviewOffset,16843320,,,, -?,19,android/R$attr.keySet,16843739,,,, -?,0,android/R$attr.keyTextColor,16843318,,,, -?,0,android/R$attr.keyTextSize,16843316,,,, -?,0,android/R$attr.keyWidth,16843325,,,, -?,0,android/R$attr.killAfterRestore,16843420,,,, -?,0,android/R$attr.label,16842753,,,, -?,17,android/R$attr.labelFor,16843718,,,, -?,0,android/R$attr.labelTextSize,16843317,,,, -?,24,android/R$attr.languageTag,16844040,,,, -?,15,android/R$attr.largeHeap,16843610,,,, -?,0,android/R$attr.largeScreens,16843398,,,, -?,15,android/R$attr.largestWidthLimitDp,16843622,,,, -?,28,android/R$attr.lastBaselineToBottomHeight,16844158,,,, -?,0,android/R$attr.launchMode,16842781,,,, -?,21,android/R$attr.launchTaskBehindSourceAnimation,16843922,,,, -?,21,android/R$attr.launchTaskBehindTargetAnimation,16843921,,,, -?,15,android/R$attr.layerType,16843604,,,, -?,0,android/R$attr.layout,16842994,,,, -?,0,android/R$attr.layout_above,16843140,,,, -?,0,android/R$attr.layout_alignBaseline,16843142,,,, -?,0,android/R$attr.layout_alignBottom,16843146,,,, -?,17,android/R$attr.layout_alignEnd,16843706,,,, -?,0,android/R$attr.layout_alignLeft,16843143,,,, -?,0,android/R$attr.layout_alignParentBottom,16843150,,,, -?,17,android/R$attr.layout_alignParentEnd,16843708,,,, -?,0,android/R$attr.layout_alignParentLeft,16843147,,,, -?,0,android/R$attr.layout_alignParentRight,16843149,,,, -?,17,android/R$attr.layout_alignParentStart,16843707,,,, -?,0,android/R$attr.layout_alignParentTop,16843148,,,, -?,0,android/R$attr.layout_alignRight,16843145,,,, -?,17,android/R$attr.layout_alignStart,16843705,,,, -?,0,android/R$attr.layout_alignTop,16843144,,,, -?,0,android/R$attr.layout_alignWithParentIfMissing,16843154,,,, -?,0,android/R$attr.layout_below,16843141,,,, -?,0,android/R$attr.layout_centerHorizontal,16843152,,,, -?,0,android/R$attr.layout_centerInParent,16843151,,,, -?,0,android/R$attr.layout_centerVertical,16843153,,,, -?,0,android/R$attr.layout_column,16843084,,,, -?,15,android/R$attr.layout_columnSpan,16843645,,,, -?,21,android/R$attr.layout_columnWeight,16843865,,,, -?,0,android/R$attr.layout_gravity,16842931,,,, -?,0,android/R$attr.layout_height,16842997,,,, -?,0,android/R$attr.layout_margin,16842998,,,, -?,0,android/R$attr.layout_marginBottom,16843002,,,, -?,17,android/R$attr.layout_marginEnd,16843702,,,, -?,26,android/R$attr.layout_marginHorizontal,16844091,,,, -?,0,android/R$attr.layout_marginLeft,16842999,,,, -?,0,android/R$attr.layout_marginRight,16843001,,,, -?,17,android/R$attr.layout_marginStart,16843701,,,, -?,0,android/R$attr.layout_marginTop,16843000,,,, -?,26,android/R$attr.layout_marginVertical,16844092,,,, -?,15,android/R$attr.layout_row,16843643,,,, -?,15,android/R$attr.layout_rowSpan,16843644,,,, -?,21,android/R$attr.layout_rowWeight,16843864,,,, -?,0,android/R$attr.layout_scale,16843155,,,, -?,0,android/R$attr.layout_span,16843085,,,, -?,17,android/R$attr.layout_toEndOf,16843704,,,, -?,0,android/R$attr.layout_toLeftOf,16843138,,,, -?,0,android/R$attr.layout_toRightOf,16843139,,,, -?,17,android/R$attr.layout_toStartOf,16843703,,,, -?,0,android/R$attr.layout_weight,16843137,,,, -?,0,android/R$attr.layout_width,16842996,,,, -?,0,android/R$attr.layout_x,16843135,,,, -?,0,android/R$attr.layout_y,16843136,,,, -?,0,android/R$attr.layoutAnimation,16842988,,,, -?,17,android/R$attr.layoutDirection,16843698,,,, -?,18,android/R$attr.layoutMode,16843738,,,, -?,0,android/R$attr.left,16843181,,,, -?,21,android/R$attr.letterSpacing,16843958,,,, -?,24,android/R$attr.level,16844032,,,, -?,28,android/R$attr.lineHeight,16844159,,,, -?,0,android/R$attr.lines,16843092,,,, -?,0,android/R$attr.lineSpacingExtra,16843287,,,, -?,0,android/R$attr.lineSpacingMultiplier,16843288,,,, -?,0,android/R$attr.linksClickable,16842929,,,, -?,15,android/R$attr.listChoiceBackgroundIndicator,16843504,,,, -?,0,android/R$attr.listChoiceIndicatorMultiple,16843290,,,, -?,0,android/R$attr.listChoiceIndicatorSingle,16843289,,,, -?,0,android/R$attr.listDivider,16843284,,,, -?,15,android/R$attr.listDividerAlertDialog,16843525,,,, -?,24,android/R$attr.listMenuViewStyle,16844018,,,, -?,15,android/R$attr.listPopupWindowStyle,16843519,,,, -?,0,android/R$attr.listPreferredItemHeight,16842829,,,, -?,15,android/R$attr.listPreferredItemHeightLarge,16843654,,,, -?,15,android/R$attr.listPreferredItemHeightSmall,16843655,,,, -?,17,android/R$attr.listPreferredItemPaddingEnd,16843710,,,, -?,15,android/R$attr.listPreferredItemPaddingLeft,16843683,,,, -?,15,android/R$attr.listPreferredItemPaddingRight,16843684,,,, -?,17,android/R$attr.listPreferredItemPaddingStart,16843709,,,, -?,0,android/R$attr.listSelector,16843003,,,, -?,0,android/R$attr.listSeparatorTextViewStyle,16843272,,,, -?,0,android/R$attr.listViewStyle,16842868,,,, -?,0,android/R$attr.listViewWhiteStyle,16842869,,,, -?,23,android/R$attr.lockTaskMode,16844013,,,, -?,15,android/R$attr.logo,16843454,,,, -?,23,android/R$attr.logoDescription,16844009,,,, -?,0,android/R$attr.longClickable,16842982,,,, -?,15,android/R$attr.loopViews,16843527,,,, -?,0,android/R$attr.manageSpaceActivity,16842756,,,, -?,0,android/R$attr.mapViewStyle,16842890,,,, -?,0,android/R$attr.marqueeRepeatLimit,16843293,,,, -?,21,android/R$attr.matchOrder,16843855,,,, -?,0,android/R$attr.max,16843062,,,, -?,26,android/R$attr.maxAspectRatio,16844128,,,, -?,24,android/R$attr.maxButtonHeight,16844029,,,, -?,15,android/R$attr.maxDate,16843584,,,, -?,0,android/R$attr.maxEms,16843095,,,, -?,0,android/R$attr.maxHeight,16843040,,,, -?,21,android/R$attr.maximumAngle,16843903,,,, -?,0,android/R$attr.maxItemsPerRow,16843060,,,, -?,0,android/R$attr.maxLength,16843104,,,, -?,0,android/R$attr.maxLevel,16843186,,,, -?,0,android/R$attr.maxLines,16843091,,,, -?,28,android/R$attr.maxLongVersionCode,16844163,,,, -?,21,android/R$attr.maxRecents,16843846,,,, -?,0,android/R$attr.maxRows,16843059,,,, -?,0,android/R$attr.maxSdkVersion,16843377,,,, -?,0,android/R$attr.maxWidth,16843039,,,, -?,0,android/R$attr.measureAllChildren,16843018,,,, -?,15,android/R$attr.measureWithLargestChild,16843476,,,, -?,16,android/R$attr.mediaRouteButtonStyle,16843693,,,, -?,16,android/R$attr.mediaRouteTypes,16843694,,,, -?,0,android/R$attr.menuCategory,16843230,,,, -?,30,android/R$attr.mimeGroup,16844311,,,, -?,0,android/R$attr.mimeType,16842790,,,, -?,26,android/R$attr.min,16844089,,,, -?,29,android/R$attr.minAspectRatio,16844187,,,, -?,15,android/R$attr.minDate,16843583,,,, -?,0,android/R$attr.minEms,16843098,,,, -?,0,android/R$attr.minHeight,16843072,,,, -?,21,android/R$attr.minimumHorizontalAngle,16843901,,,, -?,21,android/R$attr.minimumVerticalAngle,16843902,,,, -?,0,android/R$attr.minLevel,16843185,,,, -?,0,android/R$attr.minLines,16843094,,,, -?,15,android/R$attr.minResizeHeight,16843670,,,, -?,15,android/R$attr.minResizeWidth,16843669,,,, -?,0,android/R$attr.minSdkVersion,16843276,,,, -?,0,android/R$attr.minWidth,16843071,,,, -?,18,android/R$attr.mipMap,16843725,,,, -?,18,android/R$attr.mirrorForRtl,16843726,,,, -?,0,android/R$attr.mode,16843134,,,, -?,0,android/R$attr.moreIcon,16843061,,,, -?,21,android/R$attr.multiArch,16843918,,,, -?,0,android/R$attr.multiprocess,16842771,,,, -?,0,android/R$attr.name,16842755,,,, -?,21,android/R$attr.navigationBarColor,16843858,,,, -?,27,android/R$attr.navigationBarDividerColor,16844141,,,, -?,21,android/R$attr.navigationContentDescription,16843969,,,, -?,21,android/R$attr.navigationIcon,16843968,,,, -?,15,android/R$attr.navigationMode,16843471,,,, -?,0,android/R$attr.negativeButtonText,16843254,,,, -?,21,android/R$attr.nestedScrollingEnabled,16843830,,,, -?,24,android/R$attr.networkSecurityConfig,16844071,,,, -?,26,android/R$attr.nextClusterForward,16844098,,,, -?,0,android/R$attr.nextFocusDown,16842980,,,, -?,15,android/R$attr.nextFocusForward,16843580,,,, -?,0,android/R$attr.nextFocusLeft,16842977,,,, -?,0,android/R$attr.nextFocusRight,16842978,,,, -?,0,android/R$attr.nextFocusUp,16842979,,,, -?,0,android/R$attr.noHistory,16843309,,,, -?,29,android/R$attr.nonInteractiveUiTimeout,16844175,,,, -?,0,android/R$attr.normalScreens,16843397,,,, -?,15,android/R$attr.notificationTimeout,16843651,,,, -?,24,android/R$attr.numberPickerStyle,16844068,,,, -?,21,android/R$attr.numbersBackgroundColor,16843938,,,, -?,23,android/R$attr.numbersInnerTextColor,16844001,,,, -?,21,android/R$attr.numbersSelectorColor,16843939,,,, -?,21,android/R$attr.numbersTextColor,16843937,,,, -?,0,android/R$attr.numColumns,16843032,,,, -?,0,android/R$attr.numeric,16843109,,,, -?,26,android/R$attr.numericModifiers,16844111,,,, -?,0,android/R$attr.numericShortcut,16843236,,,, -?,0,android/R$attr.numStars,16843076,,,, -?,24,android/R$attr.offset,16844052,,,, -?,0,android/R$attr.onClick,16843375,,,, -?,0,android/R$attr.oneshot,16843159,,,, -?,15,android/R$attr.opacity,16843550,,,, -?,29,android/R$attr.opticalInsetBottom,16844171,,,, -?,29,android/R$attr.opticalInsetLeft,16844168,,,, -?,29,android/R$attr.opticalInsetRight,16844170,,,, -?,29,android/R$attr.opticalInsetTop,16844169,,,, -?,0,android/R$attr.order,16843242,,,, -?,0,android/R$attr.orderInCategory,16843231,,,, -?,15,android/R$attr.ordering,16843490,,,, -?,0,android/R$attr.orderingFromXml,16843239,,,, -?,0,android/R$attr.orientation,16842948,,,, -?,0,android/R$attr.outAnimation,16843128,,,, -?,28,android/R$attr.outlineAmbientShadowColor,16844162,,,, -?,21,android/R$attr.outlineProvider,16843960,,,, -?,28,android/R$attr.outlineSpotShadowColor,16844161,,,, -?,21,android/R$attr.overlapAnchor,16843874,,,, -?,15,android/R$attr.overridesImplicitlyEnabledSubtype,16843682,,,, -?,0,android/R$attr.overScrollFooter,16843459,,,, -?,0,android/R$attr.overScrollHeader,16843458,,,, -?,0,android/R$attr.overScrollMode,16843457,,,, -?,15,android/R$attr.packageNames,16843649,,,, -?,29,android/R$attr.packageType,16844167,,,, -?,0,android/R$attr.padding,16842965,,,, -?,0,android/R$attr.paddingBottom,16842969,,,, -?,17,android/R$attr.paddingEnd,16843700,,,, -?,26,android/R$attr.paddingHorizontal,16844093,,,, -?,0,android/R$attr.paddingLeft,16842966,,,, -?,21,android/R$attr.paddingMode,16843863,,,, -?,0,android/R$attr.paddingRight,16842968,,,, -?,17,android/R$attr.paddingStart,16843699,,,, -?,0,android/R$attr.paddingTop,16842967,,,, -?,26,android/R$attr.paddingVertical,16844094,,,, -?,0,android/R$attr.panelBackground,16842846,,,, -?,0,android/R$attr.panelColorBackground,16842849,,,, -?,0,android/R$attr.panelColorForeground,16842848,,,, -?,0,android/R$attr.panelFullBackground,16842847,,,, -?,0,android/R$attr.panelTextAppearance,16842850,,,, -?,16,android/R$attr.parentActivityName,16843687,,,, -?,0,android/R$attr.password,16843100,,,, -?,0,android/R$attr.path,16842794,,,, -?,21,android/R$attr.pathData,16843781,,,, -?,0,android/R$attr.pathPattern,16842796,,,, -?,0,android/R$attr.pathPrefix,16842795,,,, -?,21,android/R$attr.patternPathData,16843978,,,, -?,0,android/R$attr.permission,16842758,,,, -?,17,android/R$attr.permissionFlags,16843719,,,, -?,0,android/R$attr.permissionGroup,16842762,,,, -?,17,android/R$attr.permissionGroupFlags,16843717,,,, -?,21,android/R$attr.persistableMode,16843821,,,, -?,0,android/R$attr.persistent,16842765,,,, -?,0,android/R$attr.persistentDrawingCache,16842990,,,, -?,26,android/R$attr.persistentWhenFeatureAvailable,16844131,,,, -?,0,android/R$attr.phoneNumber,16843111,,,, -?,0,android/R$attr.pivotX,16843189,,,, -?,0,android/R$attr.pivotY,16843190,,,, -?,24,android/R$attr.pointerIcon,16844041,,,, -?,0,android/R$attr.popupAnimationStyle,16843465,,,, -?,0,android/R$attr.popupBackground,16843126,,,, -?,0,android/R$attr.popupCharacters,16843332,,,, -?,21,android/R$attr.popupElevation,16843916,,,, -?,24,android/R$attr.popupEnterTransition,16844063,,,, -?,24,android/R$attr.popupExitTransition,16844064,,,, -?,0,android/R$attr.popupKeyboard,16843331,,,, -?,0,android/R$attr.popupLayout,16843323,,,, -?,15,android/R$attr.popupMenuStyle,16843520,,,, -?,21,android/R$attr.popupTheme,16843945,,,, -?,0,android/R$attr.popupWindowStyle,16842870,,,, -?,0,android/R$attr.port,16842793,,,, -?,0,android/R$attr.positiveButtonText,16843253,,,, -?,0,android/R$attr.preferenceCategoryStyle,16842892,,,, -?,24,android/R$attr.preferenceFragmentStyle,16844038,,,, -?,0,android/R$attr.preferenceInformationStyle,16842893,,,, -?,0,android/R$attr.preferenceLayoutChild,16842900,,,, -?,0,android/R$attr.preferenceScreenStyle,16842891,,,, -?,0,android/R$attr.preferenceStyle,16842894,,,, -?,30,android/R$attr.preferMinimalPostProcessing,16844300,,,, -?,17,android/R$attr.presentationTheme,16843712,,,, -?,30,android/R$attr.preserveLegacyExternalStorage,16844310,,,, -?,15,android/R$attr.previewImage,16843482,,,, -?,26,android/R$attr.primaryContentAlpha,16844114,,,, -?,0,android/R$attr.priority,16842780,,,, -?,0,android/R$attr.privateImeOptions,16843299,,,, -?,0,android/R$attr.process,16842769,,,, -?,0,android/R$attr.progress,16843063,,,, -?,21,android/R$attr.progressBackgroundTint,16843877,,,, -?,21,android/R$attr.progressBackgroundTintMode,16843878,,,, -?,15,android/R$attr.progressBarPadding,16843545,,,, -?,0,android/R$attr.progressBarStyle,16842871,,,, -?,0,android/R$attr.progressBarStyleHorizontal,16842872,,,, -?,0,android/R$attr.progressBarStyleInverse,16843399,,,, -?,0,android/R$attr.progressBarStyleLarge,16842874,,,, -?,0,android/R$attr.progressBarStyleLargeInverse,16843401,,,, -?,0,android/R$attr.progressBarStyleSmall,16842873,,,, -?,0,android/R$attr.progressBarStyleSmallInverse,16843400,,,, -?,0,android/R$attr.progressBarStyleSmallTitle,16843279,,,, -?,0,android/R$attr.progressDrawable,16843068,,,, -?,21,android/R$attr.progressTint,16843875,,,, -?,21,android/R$attr.progressTintMode,16843876,,,, -?,0,android/R$attr.prompt,16843131,,,, -?,15,android/R$attr.propertyName,16843489,,,, -?,21,android/R$attr.propertyXName,16843892,,,, -?,21,android/R$attr.propertyYName,16843893,,,, -?,0,android/R$attr.protectionLevel,16842761,,,, -?,15,android/R$attr.publicKey,16843686,,,, -?,0,android/R$attr.queryActionMsg,16843227,,,, -?,0,android/R$attr.queryAfterZeroResults,16843394,,,, -?,21,android/R$attr.queryBackground,16843911,,,, -?,15,android/R$attr.queryHint,16843608,,,, -?,0,android/R$attr.quickContactBadgeStyleSmallWindowLarge,16843443,,,, -?,0,android/R$attr.quickContactBadgeStyleSmallWindowMedium,16843442,,,, -?,0,android/R$attr.quickContactBadgeStyleSmallWindowSmall,16843441,,,, -?,0,android/R$attr.quickContactBadgeStyleWindowLarge,16843440,,,, -?,0,android/R$attr.quickContactBadgeStyleWindowMedium,16843439,,,, -?,0,android/R$attr.quickContactBadgeStyleWindowSmall,16843438,,,, -?,0,android/R$attr.radioButtonStyle,16842878,,,, -?,0,android/R$attr.radius,16843176,,,, -?,0,android/R$attr.rating,16843077,,,, -?,0,android/R$attr.ratingBarStyle,16842876,,,, -?,0,android/R$attr.ratingBarStyleIndicator,16843280,,,, -?,0,android/R$attr.ratingBarStyleSmall,16842877,,,, -?,0,android/R$attr.readPermission,16842759,,,, -?,21,android/R$attr.recognitionService,16843932,,,, -?,26,android/R$attr.recreateOnConfigChanges,16844103,,,, -?,26,android/R$attr.recycleEnabled,16844121,,,, -?,21,android/R$attr.relinquishTaskIdentity,16843894,,,, -?,21,android/R$attr.reparent,16843964,,,, -?,21,android/R$attr.reparentWithOverlay,16843965,,,, -?,0,android/R$attr.repeatCount,16843199,,,, -?,0,android/R$attr.repeatMode,16843200,,,, -?,0,android/R$attr.reqFiveWayNav,16843314,,,, -?,0,android/R$attr.reqHardKeyboard,16843305,,,, -?,0,android/R$attr.reqKeyboardType,16843304,,,, -?,0,android/R$attr.reqNavigation,16843306,,,, -?,0,android/R$attr.reqTouchScreen,16843303,,,, -?,29,android/R$attr.requestLegacyExternalStorage,16844291,,,, -?,0,android/R$attr.required,16843406,,,, -?,18,android/R$attr.requiredAccountType,16843734,,,, -?,19,android/R$attr.requireDeviceUnlock,16843756,,,, -?,26,android/R$attr.requiredFeature,16844116,,,, -?,18,android/R$attr.requiredForAllUsers,16843728,,,, -?,26,android/R$attr.requiredNotFeature,16844117,,,, -?,15,android/R$attr.requiresFadingEdge,16843685,,,, -?,15,android/R$attr.requiresSmallestWidthDp,16843620,,,, -?,0,android/R$attr.resizeable,16843405,,,, -?,24,android/R$attr.resizeableActivity,16844022,,,, -?,22,android/R$attr.resizeClip,16843983,,,, -?,15,android/R$attr.resizeMode,16843619,,,, -?,0,android/R$attr.resource,16842789,,,, -?,30,android/R$attr.resourcesMap,16844297,,,, -?,0,android/R$attr.restoreAnyVersion,16843450,,,, -?,0,android/R$attr.restoreNeedsApplication,16843421,,,, -?,18,android/R$attr.restrictedAccountType,16843733,,,, -?,21,android/R$attr.restrictionType,16843923,,,, -?,21,android/R$attr.resumeWhilePausing,16843954,,,, -?,21,android/R$attr.reversible,16843851,,,, -?,22,android/R$attr.revisionCode,16843989,,,, -?,0,android/R$attr.right,16843183,,,, -?,0,android/R$attr.ringtonePreferenceStyle,16842899,,,, -?,0,android/R$attr.ringtoneType,16843257,,,, -?,15,android/R$attr.rotation,16843558,,,, -?,26,android/R$attr.rotationAnimation,16844090,,,, -?,15,android/R$attr.rotationX,16843559,,,, -?,15,android/R$attr.rotationY,16843560,,,, -?,25,android/R$attr.roundIcon,16844076,,,, -?,15,android/R$attr.rowCount,16843637,,,, -?,0,android/R$attr.rowDelay,16843216,,,, -?,0,android/R$attr.rowEdgeFlags,16843329,,,, -?,0,android/R$attr.rowHeight,16843058,,,, -?,15,android/R$attr.rowOrderPreserved,16843638,,,, -?,0,android/R$attr.saveEnabled,16842983,,,, -?,0,android/R$attr.scaleGravity,16843262,,,, -?,0,android/R$attr.scaleHeight,16843261,,,, -?,0,android/R$attr.scaleType,16843037,,,, -?,0,android/R$attr.scaleWidth,16843260,,,, -?,15,android/R$attr.scaleX,16843556,,,, -?,15,android/R$attr.scaleY,16843557,,,, -?,0,android/R$attr.scheme,16842791,,,, -?,0,android/R$attr.screenDensity,16843467,,,, -?,0,android/R$attr.screenOrientation,16842782,,,, -?,28,android/R$attr.screenReaderFocusable,16844148,,,, -?,0,android/R$attr.screenSize,16843466,,,, -?,0,android/R$attr.scrollbarAlwaysDrawHorizontalTrack,16842856,,,, -?,0,android/R$attr.scrollbarAlwaysDrawVerticalTrack,16842857,,,, -?,0,android/R$attr.scrollbarDefaultDelayBeforeFade,16843433,,,, -?,0,android/R$attr.scrollbarFadeDuration,16843432,,,, -?,0,android/R$attr.scrollbars,16842974,,,, -?,0,android/R$attr.scrollbarSize,16842851,,,, -?,0,android/R$attr.scrollbarStyle,16842879,,,, -?,0,android/R$attr.scrollbarThumbHorizontal,16842852,,,, -?,0,android/R$attr.scrollbarThumbVertical,16842853,,,, -?,0,android/R$attr.scrollbarTrackHorizontal,16842854,,,, -?,0,android/R$attr.scrollbarTrackVertical,16842855,,,, -?,0,android/R$attr.scrollHorizontally,16843099,,,, -?,23,android/R$attr.scrollIndicators,16844006,,,, -?,0,android/R$attr.scrollingCache,16843006,,,, -?,0,android/R$attr.scrollViewStyle,16842880,,,, -?,0,android/R$attr.scrollX,16842962,,,, -?,0,android/R$attr.scrollY,16842963,,,, -?,0,android/R$attr.searchButtonText,16843269,,,, -?,22,android/R$attr.searchHintIcon,16843988,,,, -?,21,android/R$attr.searchIcon,16843907,,,, -?,0,android/R$attr.searchMode,16843221,,,, -?,0,android/R$attr.searchSettingsDescription,16843402,,,, -?,0,android/R$attr.searchSuggestAuthority,16843222,,,, -?,0,android/R$attr.searchSuggestIntentAction,16843225,,,, -?,0,android/R$attr.searchSuggestIntentData,16843226,,,, -?,0,android/R$attr.searchSuggestPath,16843223,,,, -?,0,android/R$attr.searchSuggestSelection,16843224,,,, -?,0,android/R$attr.searchSuggestThreshold,16843373,,,, -?,21,android/R$attr.searchViewStyle,16843904,,,, -?,26,android/R$attr.secondaryContentAlpha,16844115,,,, -?,0,android/R$attr.secondaryProgress,16843064,,,, -?,21,android/R$attr.secondaryProgressTint,16843879,,,, -?,21,android/R$attr.secondaryProgressTintMode,16843880,,,, -?,29,android/R$attr.secureElementName,16844290,,,, -?,0,android/R$attr.seekBarStyle,16842875,,,, -?,15,android/R$attr.segmentedButtonStyle,16843568,,,, -?,0,android/R$attr.selectable,16843238,,,, -?,15,android/R$attr.selectableItemBackground,16843534,,,, -?,21,android/R$attr.selectableItemBackgroundBorderless,16843868,,,, -?,0,android/R$attr.selectAllOnFocus,16843102,,,, -?,15,android/R$attr.selectedDateVerticalBar,16843591,,,, -?,15,android/R$attr.selectedWeekBackgroundColor,16843586,,,, -?,29,android/R$attr.selectionDividerHeight,16844184,,,, -?,21,android/R$attr.sessionService,16843837,,,, -?,0,android/R$attr.settingsActivity,16843301,,,, -?,29,android/R$attr.settingsSliceUri,16844179,,,, -?,21,android/R$attr.setupActivity,16843766,,,, -?,0,android/R$attr.shadowColor,16843105,,,, -?,0,android/R$attr.shadowDx,16843106,,,, -?,0,android/R$attr.shadowDy,16843107,,,, -?,0,android/R$attr.shadowRadius,16843108,,,, -?,0,android/R$attr.shape,16843162,,,, -?,0,android/R$attr.sharedUserId,16842763,,,, -?,0,android/R$attr.sharedUserLabel,16843361,,,, -?,0,android/R$attr.shareInterpolator,16843195,,,, -?,29,android/R$attr.shell,16844180,,,, -?,25,android/R$attr.shortcutDisabledMessage,16844075,,,, -?,25,android/R$attr.shortcutId,16844072,,,, -?,25,android/R$attr.shortcutLongLabel,16844074,,,, -?,25,android/R$attr.shortcutShortLabel,16844073,,,, -?,0,android/R$attr.shouldDisableView,16843246,,,, -?,15,android/R$attr.showAsAction,16843481,,,, -?,0,android/R$attr.showDefault,16843258,,,, -?,15,android/R$attr.showDividers,16843561,,,, -?,23,android/R$attr.showForAllUsers,16844015,,,, -?,25,android/R$attr.showMetadataInPreview,16844079,,,, -?,15,android/R$attr.shownWeekCount,16843585,,,, -?,17,android/R$attr.showOnLockScreen,16843721,,,, -?,0,android/R$attr.showSilent,16843259,,,, -?,21,android/R$attr.showText,16843949,,,, -?,15,android/R$attr.showWeekNumber,16843582,,,, -?,27,android/R$attr.showWhenLocked,16844137,,,, -?,0,android/R$attr.shrinkColumns,16843082,,,, -?,0,android/R$attr.singleLine,16843101,,,, -?,26,android/R$attr.singleLineTitle,16844124,,,, -?,17,android/R$attr.singleUser,16843711,,,, -?,21,android/R$attr.slideEdge,16843824,,,, -?,0,android/R$attr.smallIcon,16843422,,,, -?,0,android/R$attr.smallScreens,16843396,,,, -?,0,android/R$attr.smoothScrollbar,16843313,,,, -?,0,android/R$attr.soundEffectsEnabled,16843285,,,, -?,0,android/R$attr.spacing,16843027,,,, -?,0,android/R$attr.spinnerDropDownItemStyle,16842887,,,, -?,0,android/R$attr.spinnerItemStyle,16842889,,,, -?,15,android/R$attr.spinnerMode,16843505,,,, -?,15,android/R$attr.spinnersShown,16843595,,,, -?,0,android/R$attr.spinnerStyle,16842881,,,, -?,15,android/R$attr.splitMotionEvents,16843503,,,, -?,26,android/R$attr.splitName,16844105,,,, -?,21,android/R$attr.splitTrack,16843852,,,, -?,21,android/R$attr.spotShadowAlpha,16843967,,,, -?,0,android/R$attr.src,16843033,,,, -?,19,android/R$attr.ssp,16843747,,,, -?,19,android/R$attr.sspPattern,16843749,,,, -?,19,android/R$attr.sspPrefix,16843748,,,, -?,0,android/R$attr.stackFromBottom,16843005,,,, -?,21,android/R$attr.stackViewStyle,16843838,,,, -?,0,android/R$attr.starStyle,16842882,,,, -?,23,android/R$attr.start,16843995,,,, -?,0,android/R$attr.startColor,16843165,,,, -?,19,android/R$attr.startDelay,16843746,,,, -?,0,android/R$attr.startOffset,16843198,,,, -?,24,android/R$attr.startX,16844048,,,, -?,24,android/R$attr.startY,16844049,,,, -?,0,android/R$attr.startYear,16843132,,,, -?,0,android/R$attr.state_above_anchor,16842922,,,, -?,15,android/R$attr.state_accelerated,16843547,,,, -?,15,android/R$attr.state_activated,16843518,,,, -?,0,android/R$attr.state_active,16842914,,,, -?,0,android/R$attr.state_checkable,16842911,,,, -?,0,android/R$attr.state_checked,16842912,,,, -?,15,android/R$attr.state_drag_can_accept,16843624,,,, -?,15,android/R$attr.state_drag_hovered,16843625,,,, -?,0,android/R$attr.state_empty,16842921,,,, -?,0,android/R$attr.state_enabled,16842910,,,, -?,0,android/R$attr.state_expanded,16842920,,,, -?,0,android/R$attr.state_first,16842916,,,, -?,0,android/R$attr.state_focused,16842908,,,, -?,15,android/R$attr.state_hovered,16843623,,,, -?,0,android/R$attr.state_last,16842918,,,, -?,0,android/R$attr.state_long_pressable,16843324,,,, -?,0,android/R$attr.state_middle,16842917,,,, -?,15,android/R$attr.state_multiline,16843597,,,, -?,0,android/R$attr.state_pressed,16842919,,,, -?,0,android/R$attr.state_selected,16842913,,,, -?,0,android/R$attr.state_single,16842915,,,, -?,0,android/R$attr.state_window_focused,16842909,,,, -?,21,android/R$attr.stateListAnimator,16843848,,,, -?,0,android/R$attr.stateNotNeeded,16842774,,,, -?,15,android/R$attr.staticWallpaperPreview,16843569,,,, -?,21,android/R$attr.statusBarColor,16843857,,,, -?,0,android/R$attr.stepSize,16843078,,,, -?,15,android/R$attr.stopWithTask,16843626,,,, -?,0,android/R$attr.streamType,16843273,,,, -?,0,android/R$attr.stretchColumns,16843081,,,, -?,0,android/R$attr.stretchMode,16843030,,,, -?,21,android/R$attr.strokeAlpha,16843979,,,, -?,21,android/R$attr.strokeColor,16843782,,,, -?,21,android/R$attr.strokeLineCap,16843787,,,, -?,21,android/R$attr.strokeLineJoin,16843788,,,, -?,21,android/R$attr.strokeMiterLimit,16843789,,,, -?,21,android/R$attr.strokeWidth,16843783,,,, -?,24,android/R$attr.subMenuArrow,16844019,,,, -?,21,android/R$attr.submitBackground,16843912,,,, -?,15,android/R$attr.subtitle,16843473,,,, -?,21,android/R$attr.subtitleTextAppearance,16843823,,,, -?,23,android/R$attr.subtitleTextColor,16844004,,,, -?,15,android/R$attr.subtitleTextStyle,16843513,,,, -?,15,android/R$attr.subtypeExtraValue,16843674,,,, -?,17,android/R$attr.subtypeId,16843713,,,, -?,15,android/R$attr.subtypeLocale,16843673,,,, -?,0,android/R$attr.suggestActionMsg,16843228,,,, -?,0,android/R$attr.suggestActionMsgColumn,16843229,,,, -?,21,android/R$attr.suggestionRowLayout,16843910,,,, -?,0,android/R$attr.summary,16843241,,,, -?,0,android/R$attr.summaryColumn,16843426,,,, -?,0,android/R$attr.summaryOff,16843248,,,, -?,0,android/R$attr.summaryOn,16843247,,,, -?,23,android/R$attr.supportsAssist,16844016,,,, -?,30,android/R$attr.supportsInlineSuggestions,16844302,,,, -?,23,android/R$attr.supportsLaunchVoiceAssistFromKeyguard,16844017,,,, -?,24,android/R$attr.supportsLocalInteraction,16844047,,,, -?,29,android/R$attr.supportsMultipleDisplays,16844182,,,, -?,24,android/R$attr.supportsPictureInPicture,16844023,,,, -?,17,android/R$attr.supportsRtl,16843695,,,, -?,19,android/R$attr.supportsSwitchingToNextInputMethod,16843755,,,, -?,0,android/R$attr.supportsUploading,16843419,,,, -?,15,android/R$attr.switchMinWidth,16843632,,,, -?,15,android/R$attr.switchPadding,16843633,,,, -?,15,android/R$attr.switchPreferenceStyle,16843629,,,, -?,21,android/R$attr.switchStyle,16843839,,,, -?,15,android/R$attr.switchTextAppearance,16843630,,,, -?,15,android/R$attr.switchTextOff,16843628,,,, -?,15,android/R$attr.switchTextOn,16843627,,,, -?,0,android/R$attr.syncable,16842777,,,, -?,0,android/R$attr.tabStripEnabled,16843453,,,, -?,0,android/R$attr.tabStripLeft,16843451,,,, -?,0,android/R$attr.tabStripRight,16843452,,,, -?,0,android/R$attr.tabWidgetStyle,16842883,,,, -?,0,android/R$attr.tag,16842961,,,, -?,0,android/R$attr.targetActivity,16843266,,,, -?,0,android/R$attr.targetClass,16842799,,,, -?,15,android/R$attr.targetDescriptions,16843680,,,, -?,19,android/R$attr.targetId,16843740,,,, -?,21,android/R$attr.targetName,16843853,,,, -?,0,android/R$attr.targetPackage,16842785,,,, -?,26,android/R$attr.targetProcesses,16844097,,,, -?,26,android/R$attr.targetSandboxVersion,16844108,,,, -?,0,android/R$attr.targetSdkVersion,16843376,,,, -?,0,android/R$attr.taskAffinity,16842770,,,, -?,0,android/R$attr.taskCloseEnterAnimation,16842942,,,, -?,0,android/R$attr.taskCloseExitAnimation,16842943,,,, -?,0,android/R$attr.taskOpenEnterAnimation,16842940,,,, -?,0,android/R$attr.taskOpenExitAnimation,16842941,,,, -?,0,android/R$attr.taskToBackEnterAnimation,16842946,,,, -?,0,android/R$attr.taskToBackExitAnimation,16842947,,,, -?,0,android/R$attr.taskToFrontEnterAnimation,16842944,,,, -?,0,android/R$attr.taskToFrontExitAnimation,16842945,,,, -?,0,android/R$attr.tension,16843370,,,, -?,0,android/R$attr.testOnly,16843378,,,, -?,0,android/R$attr.text,16843087,,,, -?,17,android/R$attr.textAlignment,16843697,,,, -?,15,android/R$attr.textAllCaps,16843660,,,, -?,0,android/R$attr.textAppearance,16842804,,,, -?,0,android/R$attr.textAppearanceButton,16843271,,,, -?,0,android/R$attr.textAppearanceInverse,16842805,,,, -?,0,android/R$attr.textAppearanceLarge,16842816,,,, -?,0,android/R$attr.textAppearanceLargeInverse,16842819,,,, -?,15,android/R$attr.textAppearanceLargePopupMenu,16843521,,,, -?,15,android/R$attr.textAppearanceListItem,16843678,,,, -?,21,android/R$attr.textAppearanceListItemSecondary,16843826,,,, -?,15,android/R$attr.textAppearanceListItemSmall,16843679,,,, -?,0,android/R$attr.textAppearanceMedium,16842817,,,, -?,0,android/R$attr.textAppearanceMediumInverse,16842820,,,, -?,24,android/R$attr.textAppearancePopupMenuHeader,16844034,,,, -?,0,android/R$attr.textAppearanceSearchResultSubtitle,16843424,,,, -?,0,android/R$attr.textAppearanceSearchResultTitle,16843425,,,, -?,0,android/R$attr.textAppearanceSmall,16842818,,,, -?,0,android/R$attr.textAppearanceSmallInverse,16842821,,,, -?,15,android/R$attr.textAppearanceSmallPopupMenu,16843522,,,, -?,0,android/R$attr.textCheckMark,16842822,,,, -?,0,android/R$attr.textCheckMarkInverse,16842823,,,, -?,0,android/R$attr.textColor,16842904,,,, -?,15,android/R$attr.textColorAlertDialogListItem,16843526,,,, -?,0,android/R$attr.textColorHighlight,16842905,,,, -?,15,android/R$attr.textColorHighlightInverse,16843599,,,, -?,0,android/R$attr.textColorHint,16842906,,,, -?,0,android/R$attr.textColorHintInverse,16842815,,,, -?,0,android/R$attr.textColorLink,16842907,,,, -?,15,android/R$attr.textColorLinkInverse,16843600,,,, -?,0,android/R$attr.textColorPrimary,16842806,,,, -?,0,android/R$attr.textColorPrimaryDisableOnly,16842807,,,, -?,0,android/R$attr.textColorPrimaryInverse,16842809,,,, -?,0,android/R$attr.textColorPrimaryInverseDisableOnly,16843403,,,, -?,0,android/R$attr.textColorPrimaryInverseNoDisable,16842813,,,, -?,0,android/R$attr.textColorPrimaryNoDisable,16842811,,,, -?,0,android/R$attr.textColorSecondary,16842808,,,, -?,0,android/R$attr.textColorSecondaryInverse,16842810,,,, -?,0,android/R$attr.textColorSecondaryInverseNoDisable,16842814,,,, -?,0,android/R$attr.textColorSecondaryNoDisable,16842812,,,, -?,0,android/R$attr.textColorTertiary,16843282,,,, -?,0,android/R$attr.textColorTertiaryInverse,16843283,,,, -?,15,android/R$attr.textCursorDrawable,16843618,,,, -?,17,android/R$attr.textDirection,16843696,,,, -?,15,android/R$attr.textEditNoPasteWindowLayout,16843541,,,, -?,15,android/R$attr.textEditPasteWindowLayout,16843540,,,, -?,15,android/R$attr.textEditSideNoPasteWindowLayout,16843615,,,, -?,15,android/R$attr.textEditSidePasteWindowLayout,16843614,,,, -?,15,android/R$attr.textEditSuggestionItemLayout,16843636,,,, -?,0,android/R$attr.textFilterEnabled,16843007,,,, -?,28,android/R$attr.textFontWeight,16844165,,,, -?,15,android/R$attr.textIsSelectable,16843542,,,, -?,29,android/R$attr.textLocale,16844178,,,, -?,0,android/R$attr.textOff,16843045,,,, -?,0,android/R$attr.textOn,16843044,,,, -?,0,android/R$attr.textScaleX,16843089,,,, -?,0,android/R$attr.textSelectHandle,16843463,,,, -?,0,android/R$attr.textSelectHandleLeft,16843461,,,, -?,0,android/R$attr.textSelectHandleRight,16843462,,,, -?,0,android/R$attr.textSelectHandleWindowStyle,16843464,,,, -?,0,android/R$attr.textSize,16842901,,,, -?,0,android/R$attr.textStyle,16842903,,,, -?,15,android/R$attr.textSuggestionsWindowStyle,16843635,,,, -?,0,android/R$attr.textViewStyle,16842884,,,, -?,0,android/R$attr.theme,16842752,,,, -?,0,android/R$attr.thickness,16843360,,,, -?,0,android/R$attr.thicknessRatio,16843164,,,, -?,0,android/R$attr.thumb,16843074,,,, -?,0,android/R$attr.thumbnail,16843429,,,, -?,0,android/R$attr.thumbOffset,16843075,,,, -?,23,android/R$attr.thumbPosition,16844005,,,, -?,15,android/R$attr.thumbTextPadding,16843634,,,, -?,21,android/R$attr.thumbTint,16843889,,,, -?,21,android/R$attr.thumbTintMode,16843890,,,, -?,24,android/R$attr.tickMark,16844042,,,, -?,24,android/R$attr.tickMarkTint,16844043,,,, -?,24,android/R$attr.tickMarkTintMode,16844044,,,, -?,0,android/R$attr.tileMode,16843265,,,, -?,21,android/R$attr.tileModeX,16843895,,,, -?,21,android/R$attr.tileModeY,16843896,,,, -?,21,android/R$attr.timePickerDialogTheme,16843934,,,, -?,21,android/R$attr.timePickerMode,16843956,,,, -?,21,android/R$attr.timePickerStyle,16843933,,,, -?,17,android/R$attr.timeZone,16843724,,,, -?,0,android/R$attr.tint,16843041,,,, -?,21,android/R$attr.tintMode,16843771,,,, -?,0,android/R$attr.title,16843233,,,, -?,0,android/R$attr.titleCondensed,16843234,,,, -?,24,android/R$attr.titleMargin,16844024,,,, -?,24,android/R$attr.titleMarginBottom,16844028,,,, -?,24,android/R$attr.titleMarginEnd,16844026,,,, -?,24,android/R$attr.titleMarginStart,16844025,,,, -?,24,android/R$attr.titleMarginTop,16844027,,,, -?,21,android/R$attr.titleTextAppearance,16843822,,,, -?,23,android/R$attr.titleTextColor,16844003,,,, -?,15,android/R$attr.titleTextStyle,16843512,,,, -?,0,android/R$attr.toAlpha,16843211,,,, -?,0,android/R$attr.toDegrees,16843188,,,, -?,21,android/R$attr.toId,16843849,,,, -?,21,android/R$attr.toolbarStyle,16843946,,,, -?,26,android/R$attr.tooltipText,16844084,,,, -?,0,android/R$attr.top,16843182,,,, -?,0,android/R$attr.topBright,16842955,,,, -?,0,android/R$attr.topDark,16842951,,,, -?,0,android/R$attr.topLeftRadius,16843177,,,, -?,0,android/R$attr.topOffset,16843352,,,, -?,0,android/R$attr.topRightRadius,16843178,,,, -?,19,android/R$attr.toScene,16843742,,,, -?,21,android/R$attr.touchscreenBlocksFocus,16843919,,,, -?,0,android/R$attr.toXDelta,16843207,,,, -?,0,android/R$attr.toXScale,16843203,,,, -?,0,android/R$attr.toYDelta,16843209,,,, -?,0,android/R$attr.toYScale,16843205,,,, -?,15,android/R$attr.track,16843631,,,, -?,23,android/R$attr.trackTint,16843993,,,, -?,23,android/R$attr.trackTintMode,16843994,,,, -?,0,android/R$attr.transcriptMode,16843008,,,, -?,15,android/R$attr.transformPivotX,16843552,,,, -?,15,android/R$attr.transformPivotY,16843553,,,, -?,19,android/R$attr.transition,16843743,,,, -?,21,android/R$attr.transitionGroup,16843777,,,, -?,21,android/R$attr.transitionName,16843776,,,, -?,19,android/R$attr.transitionOrdering,16843744,,,, -?,21,android/R$attr.transitionVisibilityMode,16843900,,,, -?,21,android/R$attr.translateX,16843866,,,, -?,21,android/R$attr.translateY,16843867,,,, -?,15,android/R$attr.translationX,16843554,,,, -?,15,android/R$attr.translationY,16843555,,,, -?,21,android/R$attr.translationZ,16843770,,,, -?,21,android/R$attr.trimPathEnd,16843785,,,, -?,21,android/R$attr.trimPathOffset,16843786,,,, -?,21,android/R$attr.trimPathStart,16843784,,,, -?,28,android/R$attr.ttcIndex,16844143,,,, -?,24,android/R$attr.tunerCount,16844061,,,, -?,27,android/R$attr.turnScreenOn,16844138,,,, -?,0,android/R$attr.type,16843169,,,, -?,0,android/R$attr.typeface,16842902,,,, -?,15,android/R$attr.uiOptions,16843672,,,, -?,0,android/R$attr.uncertainGestureColor,16843382,,,, -?,15,android/R$attr.unfocusedMonthDateColor,16843588,,,, -?,0,android/R$attr.unselectedAlpha,16843278,,,, -?,0,android/R$attr.updatePeriodMillis,16843344,,,, -?,24,android/R$attr.use32bitAbi,16844053,,,, -?,29,android/R$attr.useAppZygote,16844183,,,, -?,15,android/R$attr.useDefaultMargins,16843641,,,, -?,29,android/R$attr.useEmbeddedDex,16844190,,,, -?,15,android/R$attr.useIntrinsicSizeAsMinimum,16843536,,,, -?,0,android/R$attr.useLevel,16843167,,,, -?,0,android/R$attr.userVisible,16843409,,,, -?,23,android/R$attr.usesCleartextTraffic,16844012,,,, -?,0,android/R$attr.value,16842788,,,, -?,15,android/R$attr.valueFrom,16843486,,,, -?,15,android/R$attr.valueTo,16843487,,,, -?,15,android/R$attr.valueType,16843488,,,, -?,0,android/R$attr.variablePadding,16843157,,,, -?,19,android/R$attr.vendor,16843751,,,, -?,24,android/R$attr.version,16844057,,,, -?,0,android/R$attr.versionCode,16843291,,,, -?,28,android/R$attr.versionCodeMajor,16844150,,,, -?,28,android/R$attr.versionMajor,16844151,,,, -?,0,android/R$attr.versionName,16843292,,,, -?,0,android/R$attr.verticalCorrection,16843322,,,, -?,0,android/R$attr.verticalDivider,16843054,,,, -?,0,android/R$attr.verticalGap,16843328,,,, -?,15,android/R$attr.verticalScrollbarPosition,16843572,,,, -?,0,android/R$attr.verticalSpacing,16843029,,,, -?,21,android/R$attr.viewportHeight,16843779,,,, -?,21,android/R$attr.viewportWidth,16843778,,,, -?,0,android/R$attr.visibility,16842972,,,, -?,0,android/R$attr.visible,16843156,,,, -?,26,android/R$attr.visibleToInstantApps,16844081,,,, -?,0,android/R$attr.vmSafeMode,16843448,,,, -?,21,android/R$attr.voiceIcon,16843908,,,, -?,0,android/R$attr.voiceLanguage,16843349,,,, -?,0,android/R$attr.voiceLanguageModel,16843347,,,, -?,0,android/R$attr.voiceMaxResults,16843350,,,, -?,0,android/R$attr.voicePromptText,16843348,,,, -?,0,android/R$attr.voiceSearchMode,16843346,,,, -?,0,android/R$attr.wallpaperCloseEnterAnimation,16843413,,,, -?,0,android/R$attr.wallpaperCloseExitAnimation,16843414,,,, -?,0,android/R$attr.wallpaperIntraCloseEnterAnimation,16843417,,,, -?,0,android/R$attr.wallpaperIntraCloseExitAnimation,16843418,,,, -?,0,android/R$attr.wallpaperIntraOpenEnterAnimation,16843415,,,, -?,0,android/R$attr.wallpaperIntraOpenExitAnimation,16843416,,,, -?,0,android/R$attr.wallpaperOpenEnterAnimation,16843411,,,, -?,0,android/R$attr.wallpaperOpenExitAnimation,16843412,,,, -?,0,android/R$attr.webTextViewStyle,16843449,,,, -?,0,android/R$attr.webViewStyle,16842885,,,, -?,15,android/R$attr.weekDayTextAppearance,16843592,,,, -?,15,android/R$attr.weekNumberColor,16843589,,,, -?,15,android/R$attr.weekSeparatorLineColor,16843590,,,, -?,0,android/R$attr.weightSum,16843048,,,, -?,17,android/R$attr.widgetCategory,16843716,,,, -?,28,android/R$attr.widgetFeatures,16844153,,,, -?,0,android/R$attr.widgetLayout,16843243,,,, -?,0,android/R$attr.width,16843097,,,, -?,15,android/R$attr.windowActionBar,16843469,,,, -?,15,android/R$attr.windowActionBarOverlay,16843492,,,, -?,15,android/R$attr.windowActionModeOverlay,16843485,,,, -?,21,android/R$attr.windowActivityTransitions,16843981,,,, -?,21,android/R$attr.windowAllowEnterTransitionOverlap,16843836,,,, -?,21,android/R$attr.windowAllowReturnTransitionOverlap,16843835,,,, -?,0,android/R$attr.windowAnimationStyle,16842926,,,, -?,0,android/R$attr.windowBackground,16842836,,,, -?,24,android/R$attr.windowBackgroundFallback,16844035,,,, -?,21,android/R$attr.windowClipToOutline,16843947,,,, -?,15,android/R$attr.windowCloseOnTouchOutside,16843611,,,, -?,0,android/R$attr.windowContentOverlay,16842841,,,, -?,21,android/R$attr.windowContentTransitionManager,16843769,,,, -?,21,android/R$attr.windowContentTransitions,16843768,,,, -?,0,android/R$attr.windowDisablePreview,16843298,,,, -?,21,android/R$attr.windowDrawsSystemBarBackgrounds,16843856,,,, -?,21,android/R$attr.windowElevation,16843920,,,, -?,15,android/R$attr.windowEnableSplitTouch,16843543,,,, -?,0,android/R$attr.windowEnterAnimation,16842932,,,, -?,21,android/R$attr.windowEnterTransition,16843831,,,, -?,0,android/R$attr.windowExitAnimation,16842933,,,, -?,21,android/R$attr.windowExitTransition,16843832,,,, -?,0,android/R$attr.windowFrame,16842837,,,, -?,0,android/R$attr.windowFullscreen,16843277,,,, -?,0,android/R$attr.windowHideAnimation,16842935,,,, -?,0,android/R$attr.windowIsFloating,16842839,,,, -?,0,android/R$attr.windowIsTranslucent,16842840,,,, -?,27,android/R$attr.windowLayoutInDisplayCutoutMode,16844166,,,, -?,27,android/R$attr.windowLightNavigationBar,16844140,,,, -?,23,android/R$attr.windowLightStatusBar,16844000,,,, -?,15,android/R$attr.windowMinWidthMajor,16843606,,,, -?,15,android/R$attr.windowMinWidthMinor,16843607,,,, -?,0,android/R$attr.windowNoDisplay,16843294,,,, -?,0,android/R$attr.windowNoTitle,16842838,,,, -?,18,android/R$attr.windowOverscan,16843727,,,, -?,21,android/R$attr.windowReenterTransition,16843951,,,, -?,21,android/R$attr.windowReturnTransition,16843950,,,, -?,21,android/R$attr.windowSharedElementEnterTransition,16843833,,,, -?,21,android/R$attr.windowSharedElementExitTransition,16843834,,,, -?,21,android/R$attr.windowSharedElementReenterTransition,16843953,,,, -?,21,android/R$attr.windowSharedElementReturnTransition,16843952,,,, -?,21,android/R$attr.windowSharedElementsUseOverlay,16843963,,,, -?,0,android/R$attr.windowShowAnimation,16842934,,,, -?,0,android/R$attr.windowShowWallpaper,16843410,,,, -?,0,android/R$attr.windowSoftInputMode,16843307,,,, -?,26,android/R$attr.windowSplashscreenContent,16844132,,,, -?,20,android/R$attr.windowSwipeToDismiss,16843763,,,, -?,0,android/R$attr.windowTitleBackgroundStyle,16842844,,,, -?,0,android/R$attr.windowTitleSize,16842842,,,, -?,0,android/R$attr.windowTitleStyle,16842843,,,, -?,21,android/R$attr.windowTransitionBackgroundFadeDuration,16843873,,,, -?,19,android/R$attr.windowTranslucentNavigation,16843760,,,, -?,19,android/R$attr.windowTranslucentStatus,16843759,,,, -?,0,android/R$attr.writePermission,16842760,,,, -?,0,android/R$attr.x,16842924,,,, -?,0,android/R$attr.xlargeScreens,16843455,,,, -?,0,android/R$attr.y,16842925,,,, -?,21,android/R$attr.yearListItemTextAppearance,16843929,,,, -?,21,android/R$attr.yearListSelectorColor,16843930,,,, -?,0,android/R$attr.yesNoPreferenceStyle,16842896,,,, -?,0,android/R$attr.zAdjustment,16843201,,,, -?,29,android/R$attr.zygotePreloadName,16844189,,,, -?,0,android/R$color.background_dark,17170446,,,, -?,0,android/R$color.background_light,17170447,,,, -?,0,android/R$color.black,17170444,,,, -?,0,android/R$color.darker_gray,17170432,,,, -?,15,android/R$color.holo_blue_bright,17170459,,,, -?,15,android/R$color.holo_blue_dark,17170451,,,, -?,15,android/R$color.holo_blue_light,17170450,,,, -?,15,android/R$color.holo_green_dark,17170453,,,, -?,15,android/R$color.holo_green_light,17170452,,,, -?,15,android/R$color.holo_orange_dark,17170457,,,, -?,15,android/R$color.holo_orange_light,17170456,,,, -?,15,android/R$color.holo_purple,17170458,,,, -?,15,android/R$color.holo_red_dark,17170455,,,, -?,15,android/R$color.holo_red_light,17170454,,,, -?,0,android/R$color.primary_text_dark,17170433,,,, -?,0,android/R$color.primary_text_dark_nodisable,17170434,,,, -?,0,android/R$color.primary_text_light,17170435,,,, -?,0,android/R$color.primary_text_light_nodisable,17170436,,,, -?,0,android/R$color.secondary_text_dark,17170437,,,, -?,0,android/R$color.secondary_text_dark_nodisable,17170438,,,, -?,0,android/R$color.secondary_text_light,17170439,,,, -?,0,android/R$color.secondary_text_light_nodisable,17170440,,,, -?,0,android/R$color.tab_indicator_text,17170441,,,, -?,0,android/R$color.tertiary_text_dark,17170448,,,, -?,0,android/R$color.tertiary_text_light,17170449,,,, -?,0,android/R$color.transparent,17170445,,,, -?,0,android/R$color.white,17170443,,,, -?,0,android/R$color.widget_edittext_dark,17170442,,,, -?,0,android/R$dimen.app_icon_size,17104896,,,, -?,15,android/R$dimen.dialog_min_width_major,17104899,,,, -?,15,android/R$dimen.dialog_min_width_minor,17104900,,,, -?,15,android/R$dimen.notification_large_icon_height,17104902,,,, -?,15,android/R$dimen.notification_large_icon_width,17104901,,,, -?,0,android/R$dimen.thumbnail_height,17104897,,,, -?,0,android/R$dimen.thumbnail_width,17104898,,,, -?,0,android/R$drawable.alert_dark_frame,17301504,,,, -?,0,android/R$drawable.alert_light_frame,17301505,,,, -?,0,android/R$drawable.arrow_down_float,17301506,,,, -?,0,android/R$drawable.arrow_up_float,17301507,,,, -?,0,android/R$drawable.bottom_bar,17301658,,,, -?,0,android/R$drawable.btn_default,17301508,,,, -?,0,android/R$drawable.btn_default_small,17301509,,,, -?,0,android/R$drawable.btn_dialog,17301527,,,, -?,0,android/R$drawable.btn_dropdown,17301510,,,, -?,0,android/R$drawable.btn_minus,17301511,,,, -?,0,android/R$drawable.btn_plus,17301512,,,, -?,0,android/R$drawable.btn_radio,17301513,,,, -?,0,android/R$drawable.btn_star,17301514,,,, -?,0,android/R$drawable.btn_star_big_off,17301515,,,, -?,0,android/R$drawable.btn_star_big_on,17301516,,,, -?,0,android/R$drawable.button_onoff_indicator_off,17301518,,,, -?,0,android/R$drawable.button_onoff_indicator_on,17301517,,,, -?,0,android/R$drawable.checkbox_off_background,17301519,,,, -?,0,android/R$drawable.checkbox_on_background,17301520,,,, -?,0,android/R$drawable.dark_header,17301669,,,, -?,0,android/R$drawable.dialog_frame,17301521,,,, -?,15,android/R$drawable.dialog_holo_dark_frame,17301682,,,, -?,15,android/R$drawable.dialog_holo_light_frame,17301683,,,, -?,0,android/R$drawable.divider_horizontal_bright,17301522,,,, -?,0,android/R$drawable.divider_horizontal_dark,17301524,,,, -?,0,android/R$drawable.divider_horizontal_dim_dark,17301525,,,, -?,0,android/R$drawable.divider_horizontal_textfield,17301523,,,, -?,0,android/R$drawable.edit_text,17301526,,,, -?,0,android/R$drawable.editbox_background,17301528,,,, -?,0,android/R$drawable.editbox_background_normal,17301529,,,, -?,0,android/R$drawable.editbox_dropdown_dark_frame,17301530,,,, -?,0,android/R$drawable.editbox_dropdown_light_frame,17301531,,,, -?,0,android/R$drawable.gallery_thumb,17301532,,,, -?,0,android/R$drawable.ic_btn_speak_now,17301668,,,, -?,0,android/R$drawable.ic_delete,17301533,,,, -?,0,android/R$drawable.ic_dialog_alert,17301543,,,, -?,0,android/R$drawable.ic_dialog_dialer,17301544,,,, -?,0,android/R$drawable.ic_dialog_email,17301545,,,, -?,0,android/R$drawable.ic_dialog_info,17301659,,,, -?,0,android/R$drawable.ic_dialog_map,17301546,,,, -?,0,android/R$drawable.ic_input_add,17301547,,,, -?,0,android/R$drawable.ic_input_delete,17301548,,,, -?,0,android/R$drawable.ic_input_get,17301549,,,, -?,0,android/R$drawable.ic_lock_idle_alarm,17301550,,,, -?,0,android/R$drawable.ic_lock_idle_charging,17301534,,,, -?,0,android/R$drawable.ic_lock_idle_lock,17301535,,,, -?,0,android/R$drawable.ic_lock_idle_low_battery,17301536,,,, -?,0,android/R$drawable.ic_lock_lock,17301551,,,, -?,0,android/R$drawable.ic_lock_power_off,17301552,,,, -?,0,android/R$drawable.ic_lock_silent_mode,17301553,,,, -?,0,android/R$drawable.ic_lock_silent_mode_off,17301554,,,, -?,0,android/R$drawable.ic_media_ff,17301537,,,, -?,0,android/R$drawable.ic_media_next,17301538,,,, -?,0,android/R$drawable.ic_media_pause,17301539,,,, -?,0,android/R$drawable.ic_media_play,17301540,,,, -?,0,android/R$drawable.ic_media_previous,17301541,,,, -?,0,android/R$drawable.ic_media_rew,17301542,,,, -?,0,android/R$drawable.ic_menu_add,17301555,,,, -?,0,android/R$drawable.ic_menu_agenda,17301556,,,, -?,0,android/R$drawable.ic_menu_always_landscape_portrait,17301557,,,, -?,0,android/R$drawable.ic_menu_call,17301558,,,, -?,0,android/R$drawable.ic_menu_camera,17301559,,,, -?,0,android/R$drawable.ic_menu_close_clear_cancel,17301560,,,, -?,0,android/R$drawable.ic_menu_compass,17301561,,,, -?,0,android/R$drawable.ic_menu_crop,17301562,,,, -?,0,android/R$drawable.ic_menu_day,17301563,,,, -?,0,android/R$drawable.ic_menu_delete,17301564,,,, -?,0,android/R$drawable.ic_menu_directions,17301565,,,, -?,0,android/R$drawable.ic_menu_edit,17301566,,,, -?,0,android/R$drawable.ic_menu_gallery,17301567,,,, -?,0,android/R$drawable.ic_menu_help,17301568,,,, -?,0,android/R$drawable.ic_menu_info_details,17301569,,,, -?,0,android/R$drawable.ic_menu_manage,17301570,,,, -?,0,android/R$drawable.ic_menu_mapmode,17301571,,,, -?,0,android/R$drawable.ic_menu_month,17301572,,,, -?,0,android/R$drawable.ic_menu_more,17301573,,,, -?,0,android/R$drawable.ic_menu_my_calendar,17301574,,,, -?,0,android/R$drawable.ic_menu_mylocation,17301575,,,, -?,0,android/R$drawable.ic_menu_myplaces,17301576,,,, -?,0,android/R$drawable.ic_menu_preferences,17301577,,,, -?,0,android/R$drawable.ic_menu_recent_history,17301578,,,, -?,0,android/R$drawable.ic_menu_report_image,17301579,,,, -?,0,android/R$drawable.ic_menu_revert,17301580,,,, -?,0,android/R$drawable.ic_menu_rotate,17301581,,,, -?,0,android/R$drawable.ic_menu_save,17301582,,,, -?,0,android/R$drawable.ic_menu_search,17301583,,,, -?,0,android/R$drawable.ic_menu_send,17301584,,,, -?,0,android/R$drawable.ic_menu_set_as,17301585,,,, -?,0,android/R$drawable.ic_menu_share,17301586,,,, -?,0,android/R$drawable.ic_menu_slideshow,17301587,,,, -?,0,android/R$drawable.ic_menu_sort_alphabetically,17301660,,,, -?,0,android/R$drawable.ic_menu_sort_by_size,17301661,,,, -?,0,android/R$drawable.ic_menu_today,17301588,,,, -?,0,android/R$drawable.ic_menu_upload,17301589,,,, -?,0,android/R$drawable.ic_menu_upload_you_tube,17301590,,,, -?,0,android/R$drawable.ic_menu_view,17301591,,,, -?,0,android/R$drawable.ic_menu_week,17301592,,,, -?,0,android/R$drawable.ic_menu_zoom,17301593,,,, -?,0,android/R$drawable.ic_notification_clear_all,17301594,,,, -?,0,android/R$drawable.ic_notification_overlay,17301595,,,, -?,0,android/R$drawable.ic_partial_secure,17301596,,,, -?,0,android/R$drawable.ic_popup_disk_full,17301597,,,, -?,0,android/R$drawable.ic_popup_reminder,17301598,,,, -?,0,android/R$drawable.ic_popup_sync,17301599,,,, -?,0,android/R$drawable.ic_search_category_default,17301600,,,, -?,0,android/R$drawable.ic_secure,17301601,,,, -?,0,android/R$drawable.list_selector_background,17301602,,,, -?,0,android/R$drawable.menu_frame,17301603,,,, -?,0,android/R$drawable.menu_full_frame,17301604,,,, -?,0,android/R$drawable.menuitem_background,17301605,,,, -?,0,android/R$drawable.picture_frame,17301606,,,, -?,0,android/R$drawable.presence_audio_away,17301679,,,, -?,0,android/R$drawable.presence_audio_busy,17301680,,,, -?,0,android/R$drawable.presence_audio_online,17301681,,,, -?,0,android/R$drawable.presence_away,17301607,,,, -?,0,android/R$drawable.presence_busy,17301608,,,, -?,0,android/R$drawable.presence_invisible,17301609,,,, -?,0,android/R$drawable.presence_offline,17301610,,,, -?,0,android/R$drawable.presence_online,17301611,,,, -?,0,android/R$drawable.presence_video_away,17301676,,,, -?,0,android/R$drawable.presence_video_busy,17301677,,,, -?,0,android/R$drawable.presence_video_online,17301678,,,, -?,0,android/R$drawable.progress_horizontal,17301612,,,, -?,0,android/R$drawable.progress_indeterminate_horizontal,17301613,,,, -?,0,android/R$drawable.radiobutton_off_background,17301614,,,, -?,0,android/R$drawable.radiobutton_on_background,17301615,,,, -?,0,android/R$drawable.screen_background_dark,17301656,,,, -?,0,android/R$drawable.screen_background_dark_transparent,17301673,,,, -?,0,android/R$drawable.screen_background_light,17301657,,,, -?,0,android/R$drawable.screen_background_light_transparent,17301674,,,, -?,0,android/R$drawable.spinner_background,17301616,,,, -?,0,android/R$drawable.spinner_dropdown_background,17301617,,,, -?,0,android/R$drawable.star_big_off,17301619,,,, -?,0,android/R$drawable.star_big_on,17301618,,,, -?,0,android/R$drawable.star_off,17301621,,,, -?,0,android/R$drawable.star_on,17301620,,,, -?,0,android/R$drawable.stat_notify_call_mute,17301622,,,, -?,0,android/R$drawable.stat_notify_chat,17301623,,,, -?,0,android/R$drawable.stat_notify_error,17301624,,,, -?,0,android/R$drawable.stat_notify_missed_call,17301631,,,, -?,0,android/R$drawable.stat_notify_more,17301625,,,, -?,0,android/R$drawable.stat_notify_sdcard,17301626,,,, -?,0,android/R$drawable.stat_notify_sdcard_prepare,17301675,,,, -?,0,android/R$drawable.stat_notify_sdcard_usb,17301627,,,, -?,0,android/R$drawable.stat_notify_sync,17301628,,,, -?,0,android/R$drawable.stat_notify_sync_noanim,17301629,,,, -?,0,android/R$drawable.stat_notify_voicemail,17301630,,,, -?,0,android/R$drawable.stat_sys_data_bluetooth,17301632,,,, -?,0,android/R$drawable.stat_sys_download,17301633,,,, -?,0,android/R$drawable.stat_sys_download_done,17301634,,,, -?,0,android/R$drawable.stat_sys_headset,17301635,,,, -?,0,android/R$drawable.stat_sys_phone_call,17301636,,,, -?,0,android/R$drawable.stat_sys_phone_call_forward,17301637,,,, -?,0,android/R$drawable.stat_sys_phone_call_on_hold,17301638,,,, -?,0,android/R$drawable.stat_sys_speakerphone,17301639,,,, -?,0,android/R$drawable.stat_sys_upload,17301640,,,, -?,0,android/R$drawable.stat_sys_upload_done,17301641,,,, -?,0,android/R$drawable.stat_sys_vp_phone_call,17301671,,,, -?,0,android/R$drawable.stat_sys_vp_phone_call_on_hold,17301672,,,, -?,0,android/R$drawable.stat_sys_warning,17301642,,,, -?,0,android/R$drawable.status_bar_item_app_background,17301643,,,, -?,0,android/R$drawable.status_bar_item_background,17301644,,,, -?,0,android/R$drawable.sym_action_call,17301645,,,, -?,0,android/R$drawable.sym_action_chat,17301646,,,, -?,0,android/R$drawable.sym_action_email,17301647,,,, -?,0,android/R$drawable.sym_call_incoming,17301648,,,, -?,0,android/R$drawable.sym_call_missed,17301649,,,, -?,0,android/R$drawable.sym_call_outgoing,17301650,,,, -?,0,android/R$drawable.sym_contact_card,17301652,,,, -?,0,android/R$drawable.sym_def_app_icon,17301651,,,, -?,0,android/R$drawable.title_bar,17301653,,,, -?,0,android/R$drawable.title_bar_tall,17301670,,,, -?,0,android/R$drawable.toast_frame,17301654,,,, -?,0,android/R$drawable.zoom_plate,17301655,,,, -?,23,android/R$id.accessibilityActionContextClick,16908348,,,, -?,28,android/R$id.accessibilityActionHideTooltip,16908357,,,, -?,30,android/R$id.accessibilityActionImeEnter,16908372,,,, -?,26,android/R$id.accessibilityActionMoveWindow,16908354,,,, -?,29,android/R$id.accessibilityActionPageDown,16908359,,,, -?,29,android/R$id.accessibilityActionPageLeft,16908360,,,, -?,29,android/R$id.accessibilityActionPageRight,16908361,,,, -?,29,android/R$id.accessibilityActionPageUp,16908358,,,, -?,30,android/R$id.accessibilityActionPressAndHold,16908362,,,, -?,23,android/R$id.accessibilityActionScrollDown,16908346,,,, -?,23,android/R$id.accessibilityActionScrollLeft,16908345,,,, -?,23,android/R$id.accessibilityActionScrollRight,16908347,,,, -?,23,android/R$id.accessibilityActionScrollToPosition,16908343,,,, -?,23,android/R$id.accessibilityActionScrollUp,16908344,,,, -?,24,android/R$id.accessibilityActionSetProgress,16908349,,,, -?,23,android/R$id.accessibilityActionShowOnScreen,16908342,,,, -?,28,android/R$id.accessibilityActionShowTooltip,16908356,,,, -?,30,android/R$id.accessibilitySystemActionBack,16908363,,,, -?,30,android/R$id.accessibilitySystemActionHome,16908364,,,, -?,30,android/R$id.accessibilitySystemActionLockScreen,16908370,,,, -?,30,android/R$id.accessibilitySystemActionNotifications,16908366,,,, -?,30,android/R$id.accessibilitySystemActionPowerDialog,16908368,,,, -?,30,android/R$id.accessibilitySystemActionQuickSettings,16908367,,,, -?,30,android/R$id.accessibilitySystemActionRecents,16908365,,,, -?,30,android/R$id.accessibilitySystemActionTakeScreenshot,16908371,,,, -?,30,android/R$id.accessibilitySystemActionToggleSplitScreen,16908369,,,, -?,0,android/R$id.addToDictionary,16908330,,,, -?,26,android/R$id.autofill,16908355,,,, -?,0,android/R$id.background,16908288,,,, -?,0,android/R$id.button1,16908313,,,, -?,0,android/R$id.button2,16908314,,,, -?,0,android/R$id.button3,16908315,,,, -?,0,android/R$id.candidatesArea,16908317,,,, -?,0,android/R$id.checkbox,16908289,,,, -?,0,android/R$id.closeButton,16908327,,,, -?,0,android/R$id.content,16908290,,,, -?,0,android/R$id.copy,16908321,,,, -?,0,android/R$id.copyUrl,16908323,,,, -?,0,android/R$id.custom,16908331,,,, -?,0,android/R$id.cut,16908320,,,, -?,0,android/R$id.edit,16908291,,,, -?,0,android/R$id.empty,16908292,,,, -?,0,android/R$id.extractArea,16908316,,,, -?,0,android/R$id.hint,16908293,,,, -?,15,android/R$id.home,16908332,,,, -?,0,android/R$id.icon,16908294,,,, -?,24,android/R$id.icon_frame,16908350,,,, -?,0,android/R$id.icon1,16908295,,,, -?,0,android/R$id.icon2,16908296,,,, -?,0,android/R$id.input,16908297,,,, -?,0,android/R$id.inputArea,16908318,,,, -?,0,android/R$id.inputExtractEditText,16908325,,,, -?,0,android/R$id.keyboardView,16908326,,,, -?,0,android/R$id.list,16908298,,,, -?,24,android/R$id.list_container,16908351,,,, -?,21,android/R$id.mask,16908334,,,, -?,0,android/R$id.message,16908299,,,, -?,21,android/R$id.navigationBarBackground,16908336,,,, -?,0,android/R$id.paste,16908322,,,, -?,23,android/R$id.pasteAsPlainText,16908337,,,, -?,0,android/R$id.primary,16908300,,,, -?,0,android/R$id.progress,16908301,,,, -?,23,android/R$id.redo,16908339,,,, -?,23,android/R$id.replaceText,16908340,,,, -?,0,android/R$id.secondaryProgress,16908303,,,, -?,0,android/R$id.selectAll,16908319,,,, -?,0,android/R$id.selectedIcon,16908302,,,, -?,15,android/R$id.selectTextMode,16908333,,,, -?,23,android/R$id.shareText,16908341,,,, -?,0,android/R$id.startSelectingText,16908328,,,, -?,21,android/R$id.statusBarBackground,16908335,,,, -?,0,android/R$id.stopSelectingText,16908329,,,, -?,0,android/R$id.summary,16908304,,,, -?,24,android/R$id.switch_widget,16908352,,,, -?,0,android/R$id.switchInputMethod,16908324,,,, -?,0,android/R$id.tabcontent,16908305,,,, -?,0,android/R$id.tabhost,16908306,,,, -?,0,android/R$id.tabs,16908307,,,, -?,0,android/R$id.text1,16908308,,,, -?,0,android/R$id.text2,16908309,,,, -?,26,android/R$id.textAssist,16908353,,,, -?,0,android/R$id.title,16908310,,,, -?,0,android/R$id.toggle,16908311,,,, -?,23,android/R$id.undo,16908338,,,, -?,0,android/R$id.widget_frame,16908312,,,, -?,0,android/R$integer.config_longAnimTime,17694722,,,, -?,0,android/R$integer.config_mediumAnimTime,17694721,,,, -?,0,android/R$integer.config_shortAnimTime,17694720,,,, -?,15,android/R$integer.status_bar_notification_info_maxnum,17694723,,,, -?,15,android/R$interpolator.accelerate_cubic,17563650,,,, -?,15,android/R$interpolator.accelerate_decelerate,17563654,,,, -?,15,android/R$interpolator.accelerate_quad,17563648,,,, -?,15,android/R$interpolator.accelerate_quint,17563652,,,, -?,15,android/R$interpolator.anticipate,17563655,,,, -?,15,android/R$interpolator.anticipate_overshoot,17563657,,,, -?,15,android/R$interpolator.bounce,17563658,,,, -?,15,android/R$interpolator.cycle,17563660,,,, -?,15,android/R$interpolator.decelerate_cubic,17563651,,,, -?,15,android/R$interpolator.decelerate_quad,17563649,,,, -?,15,android/R$interpolator.decelerate_quint,17563653,,,, -?,28,android/R$interpolator.fast_out_extra_slow_in,17563674,,,, -?,21,android/R$interpolator.fast_out_linear_in,17563663,,,, -?,21,android/R$interpolator.fast_out_slow_in,17563661,,,, -?,15,android/R$interpolator.linear,17563659,,,, -?,21,android/R$interpolator.linear_out_slow_in,17563662,,,, -?,15,android/R$interpolator.overshoot,17563656,,,, -?,0,android/R$layout.activity_list_item,17367040,,,, -?,0,android/R$layout.browser_link_context_header,17367054,,,, -?,0,android/R$layout.expandable_list_content,17367041,,,, -?,15,android/R$layout.list_content,17367060,,,, -?,0,android/R$layout.preference_category,17367042,,,, -?,0,android/R$layout.select_dialog_item,17367057,,,, -?,0,android/R$layout.select_dialog_multichoice,17367059,,,, -?,0,android/R$layout.select_dialog_singlechoice,17367058,,,, -?,0,android/R$layout.simple_dropdown_item_1line,17367050,,,, -?,0,android/R$layout.simple_expandable_list_item_1,17367046,,,, -?,0,android/R$layout.simple_expandable_list_item_2,17367047,,,, -?,0,android/R$layout.simple_gallery_item,17367051,,,, -?,0,android/R$layout.simple_list_item_1,17367043,,,, -?,0,android/R$layout.simple_list_item_2,17367044,,,, -?,15,android/R$layout.simple_list_item_activated_1,17367062,,,, -?,15,android/R$layout.simple_list_item_activated_2,17367063,,,, -?,0,android/R$layout.simple_list_item_checked,17367045,,,, -?,0,android/R$layout.simple_list_item_multiple_choice,17367056,,,, -?,0,android/R$layout.simple_list_item_single_choice,17367055,,,, -?,15,android/R$layout.simple_selectable_list_item,17367061,,,, -?,0,android/R$layout.simple_spinner_dropdown_item,17367049,,,, -?,0,android/R$layout.simple_spinner_item,17367048,,,, -?,0,android/R$layout.test_list_item,17367052,,,, -?,0,android/R$layout.two_line_list_item,17367053,,,, -?,15,android/R$mipmap.sym_def_app_icon,17629184,,,, -?,27,android/R$string.autofill,17039386,,,, -?,0,android/R$string.cancel,17039360,,,, -?,0,android/R$string.copy,17039361,,,, -?,0,android/R$string.copyUrl,17039362,,,, -?,0,android/R$string.cut,17039363,,,, -?,0,android/R$string.defaultMsisdnAlphaTag,17039365,,,, -?,0,android/R$string.defaultVoiceMailAlphaTag,17039364,,,, -?,0,android/R$string.dialog_alert_title,17039380,,,, -?,0,android/R$string.emptyPhoneNumber,17039366,,,, -?,23,android/R$string.fingerprint_icon_content_description,17039384,,,, -?,0,android/R$string.httpErrorBadUrl,17039367,,,, -?,0,android/R$string.httpErrorUnsupportedScheme,17039368,,,, -?,0,android/R$string.no,17039369,,,, -?,0,android/R$string.ok,17039370,,,, -?,0,android/R$string.paste,17039371,,,, -?,26,android/R$string.paste_as_plain_text,17039385,,,, -?,0,android/R$string.search_go,17039372,,,, -?,0,android/R$string.selectAll,17039373,,,, -?,15,android/R$string.selectTextMode,17039382,,,, -?,15,android/R$string.status_bar_notification_info_overflow,17039383,,,, -?,0,android/R$string.unknownName,17039374,,,, -?,0,android/R$string.untitled,17039375,,,, -?,0,android/R$string.VideoView_error_button,17039376,,,, -?,0,android/R$string.VideoView_error_text_invalid_progressive_playback,17039381,,,, -?,0,android/R$string.VideoView_error_text_unknown,17039377,,,, -?,0,android/R$string.VideoView_error_title,17039378,,,, -?,0,android/R$string.yes,17039379,,,, -?,0,android/R$style.Animation,16973824,,,, -?,0,android/R$style.Animation_Activity,16973825,,,, -?,0,android/R$style.Animation_Dialog,16973826,,,, -?,0,android/R$style.Animation_InputMethod,16973910,,,, -?,0,android/R$style.Animation_Toast,16973828,,,, -?,0,android/R$style.Animation_Translucent,16973827,,,, -?,15,android/R$style.DeviceDefault_ButtonBar,16974287,,,, -?,15,android/R$style.DeviceDefault_ButtonBar_AlertDialog,16974288,,,, -?,15,android/R$style.DeviceDefault_Light_ButtonBar,16974290,,,, -?,15,android/R$style.DeviceDefault_Light_ButtonBar_AlertDialog,16974291,,,, -?,15,android/R$style.DeviceDefault_Light_SegmentedButton,16974292,,,, -?,15,android/R$style.DeviceDefault_SegmentedButton,16974289,,,, -?,15,android/R$style.Holo_ButtonBar,16974053,,,, -?,15,android/R$style.Holo_ButtonBar_AlertDialog,16974055,,,, -?,15,android/R$style.Holo_Light_ButtonBar,16974054,,,, -?,15,android/R$style.Holo_Light_ButtonBar_AlertDialog,16974056,,,, -?,15,android/R$style.Holo_Light_SegmentedButton,16974058,,,, -?,15,android/R$style.Holo_SegmentedButton,16974057,,,, -?,0,android/R$style.MediaButton,16973879,,,, -?,0,android/R$style.MediaButton_Ffwd,16973883,,,, -?,0,android/R$style.MediaButton_Next,16973881,,,, -?,0,android/R$style.MediaButton_Pause,16973885,,,, -?,0,android/R$style.MediaButton_Play,16973882,,,, -?,0,android/R$style.MediaButton_Previous,16973880,,,, -?,0,android/R$style.MediaButton_Rew,16973884,,,, -?,0,android/R$style.TextAppearance,16973886,,,, -?,15,android/R$style.TextAppearance_DeviceDefault,16974253,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_DialogWindowTitle,16974264,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Inverse,16974254,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Large,16974255,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Large_Inverse,16974256,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Medium,16974257,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Medium_Inverse,16974258,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_SearchResult_Subtitle,16974262,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_SearchResult_Title,16974261,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Small,16974259,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Small_Inverse,16974260,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget,16974265,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Menu,16974286,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle,16974279,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse,16974283,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Title,16974278,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse,16974282,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle,16974281,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse,16974285,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Title,16974280,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse,16974284,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_Button,16974266,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_DropDownHint,16974271,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_DropDownItem,16974272,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_EditText,16974274,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_IconMenu_Item,16974267,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu,16974275,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu_Large,16974276,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu_Small,16974277,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_TabWidget,16974268,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView,16974269,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView_PopupMenu,16974270,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView_SpinnerItem,16974273,,,, -?,15,android/R$style.TextAppearance_DeviceDefault_WindowTitle,16974263,,,, -?,0,android/R$style.TextAppearance_DialogWindowTitle,16973889,,,, -?,15,android/R$style.TextAppearance_Holo,16974075,,,, -?,15,android/R$style.TextAppearance_Holo_DialogWindowTitle,16974103,,,, -?,15,android/R$style.TextAppearance_Holo_Inverse,16974076,,,, -?,15,android/R$style.TextAppearance_Holo_Large,16974077,,,, -?,15,android/R$style.TextAppearance_Holo_Large_Inverse,16974078,,,, -?,15,android/R$style.TextAppearance_Holo_Medium,16974079,,,, -?,15,android/R$style.TextAppearance_Holo_Medium_Inverse,16974080,,,, -?,15,android/R$style.TextAppearance_Holo_SearchResult_Subtitle,16974084,,,, -?,15,android/R$style.TextAppearance_Holo_SearchResult_Title,16974083,,,, -?,15,android/R$style.TextAppearance_Holo_Small,16974081,,,, -?,15,android/R$style.TextAppearance_Holo_Small_Inverse,16974082,,,, -?,15,android/R$style.TextAppearance_Holo_Widget,16974085,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Menu,16974112,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Subtitle,16974099,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Subtitle_Inverse,16974109,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Title,16974098,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Title_Inverse,16974108,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Subtitle,16974101,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Subtitle_Inverse,16974111,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Title,16974100,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Title_Inverse,16974110,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_Button,16974086,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_DropDownHint,16974091,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_DropDownItem,16974092,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_EditText,16974094,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_IconMenu_Item,16974087,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu,16974095,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu_Large,16974096,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu_Small,16974097,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_TabWidget,16974088,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_TextView,16974089,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_TextView_PopupMenu,16974090,,,, -?,15,android/R$style.TextAppearance_Holo_Widget_TextView_SpinnerItem,16974093,,,, -?,15,android/R$style.TextAppearance_Holo_WindowTitle,16974102,,,, -?,0,android/R$style.TextAppearance_Inverse,16973887,,,, -?,0,android/R$style.TextAppearance_Large,16973890,,,, -?,0,android/R$style.TextAppearance_Large_Inverse,16973891,,,, -?,21,android/R$style.TextAppearance_Material,16974317,,,, -?,21,android/R$style.TextAppearance_Material_Body1,16974320,,,, -?,21,android/R$style.TextAppearance_Material_Body2,16974319,,,, -?,21,android/R$style.TextAppearance_Material_Button,16974318,,,, -?,21,android/R$style.TextAppearance_Material_Caption,16974321,,,, -?,21,android/R$style.TextAppearance_Material_DialogWindowTitle,16974322,,,, -?,21,android/R$style.TextAppearance_Material_Display1,16974326,,,, -?,21,android/R$style.TextAppearance_Material_Display2,16974325,,,, -?,21,android/R$style.TextAppearance_Material_Display3,16974324,,,, -?,21,android/R$style.TextAppearance_Material_Display4,16974323,,,, -?,21,android/R$style.TextAppearance_Material_Headline,16974327,,,, -?,21,android/R$style.TextAppearance_Material_Inverse,16974328,,,, -?,21,android/R$style.TextAppearance_Material_Large,16974329,,,, -?,21,android/R$style.TextAppearance_Material_Large_Inverse,16974330,,,, -?,21,android/R$style.TextAppearance_Material_Medium,16974331,,,, -?,21,android/R$style.TextAppearance_Material_Medium_Inverse,16974332,,,, -?,21,android/R$style.TextAppearance_Material_Menu,16974333,,,, -?,21,android/R$style.TextAppearance_Material_Notification,16974334,,,, -?,21,android/R$style.TextAppearance_Material_Notification_Emphasis,16974335,,,, -?,21,android/R$style.TextAppearance_Material_Notification_Info,16974336,,,, -?,21,android/R$style.TextAppearance_Material_Notification_Line2,16974337,,,, -?,21,android/R$style.TextAppearance_Material_Notification_Time,16974338,,,, -?,21,android/R$style.TextAppearance_Material_Notification_Title,16974339,,,, -?,21,android/R$style.TextAppearance_Material_SearchResult_Subtitle,16974340,,,, -?,21,android/R$style.TextAppearance_Material_SearchResult_Title,16974341,,,, -?,21,android/R$style.TextAppearance_Material_Small,16974342,,,, -?,21,android/R$style.TextAppearance_Material_Small_Inverse,16974343,,,, -?,21,android/R$style.TextAppearance_Material_Subhead,16974344,,,, -?,21,android/R$style.TextAppearance_Material_Title,16974345,,,, -?,21,android/R$style.TextAppearance_Material_Widget,16974347,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Menu,16974348,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Subtitle,16974349,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse,16974350,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Title,16974351,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Title_Inverse,16974352,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Subtitle,16974353,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse,16974354,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Title,16974355,,,, -?,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Title_Inverse,16974356,,,, -?,21,android/R$style.TextAppearance_Material_Widget_Button,16974357,,,, -?,24,android/R$style.TextAppearance_Material_Widget_Button_Borderless_Colored,16974559,,,, -?,24,android/R$style.TextAppearance_Material_Widget_Button_Colored,16974558,,,, -?,23,android/R$style.TextAppearance_Material_Widget_Button_Inverse,16974548,,,, -?,21,android/R$style.TextAppearance_Material_Widget_DropDownHint,16974358,,,, -?,21,android/R$style.TextAppearance_Material_Widget_DropDownItem,16974359,,,, -?,21,android/R$style.TextAppearance_Material_Widget_EditText,16974360,,,, -?,21,android/R$style.TextAppearance_Material_Widget_IconMenu_Item,16974361,,,, -?,21,android/R$style.TextAppearance_Material_Widget_PopupMenu,16974362,,,, -?,21,android/R$style.TextAppearance_Material_Widget_PopupMenu_Large,16974363,,,, -?,21,android/R$style.TextAppearance_Material_Widget_PopupMenu_Small,16974364,,,, -?,21,android/R$style.TextAppearance_Material_Widget_TabWidget,16974365,,,, -?,21,android/R$style.TextAppearance_Material_Widget_TextView,16974366,,,, -?,21,android/R$style.TextAppearance_Material_Widget_TextView_PopupMenu,16974367,,,, -?,21,android/R$style.TextAppearance_Material_Widget_TextView_SpinnerItem,16974368,,,, -?,21,android/R$style.TextAppearance_Material_Widget_Toolbar_Subtitle,16974369,,,, -?,21,android/R$style.TextAppearance_Material_Widget_Toolbar_Title,16974370,,,, -?,21,android/R$style.TextAppearance_Material_WindowTitle,16974346,,,, -?,0,android/R$style.TextAppearance_Medium,16973892,,,, -?,0,android/R$style.TextAppearance_Medium_Inverse,16973893,,,, -?,0,android/R$style.TextAppearance_Small,16973894,,,, -?,0,android/R$style.TextAppearance_Small_Inverse,16973895,,,, -?,0,android/R$style.TextAppearance_StatusBar_EventContent,16973927,,,, -?,0,android/R$style.TextAppearance_StatusBar_EventContent_Title,16973928,,,, -?,0,android/R$style.TextAppearance_StatusBar_Icon,16973926,,,, -?,0,android/R$style.TextAppearance_StatusBar_Title,16973925,,,, -?,15,android/R$style.TextAppearance_SuggestionHighlight,16974104,,,, -?,0,android/R$style.TextAppearance_Theme,16973888,,,, -?,0,android/R$style.TextAppearance_Theme_Dialog,16973896,,,, -?,0,android/R$style.TextAppearance_Widget,16973897,,,, -?,0,android/R$style.TextAppearance_Widget_Button,16973898,,,, -?,0,android/R$style.TextAppearance_Widget_DropDownHint,16973904,,,, -?,0,android/R$style.TextAppearance_Widget_DropDownItem,16973905,,,, -?,0,android/R$style.TextAppearance_Widget_EditText,16973900,,,, -?,0,android/R$style.TextAppearance_Widget_IconMenu_Item,16973899,,,, -?,15,android/R$style.TextAppearance_Widget_PopupMenu_Large,16973952,,,, -?,15,android/R$style.TextAppearance_Widget_PopupMenu_Small,16973953,,,, -?,0,android/R$style.TextAppearance_Widget_TabWidget,16973901,,,, -?,0,android/R$style.TextAppearance_Widget_TextView,16973902,,,, -?,0,android/R$style.TextAppearance_Widget_TextView_PopupMenu,16973903,,,, -?,0,android/R$style.TextAppearance_Widget_TextView_SpinnerItem,16973906,,,, -?,0,android/R$style.TextAppearance_WindowTitle,16973907,,,, -?,0,android/R$style.Theme,16973829,,,, -?,0,android/R$style.Theme_Black,16973832,,,, -?,0,android/R$style.Theme_Black_NoTitleBar,16973833,,,, -?,0,android/R$style.Theme_Black_NoTitleBar_Fullscreen,16973834,,,, -?,15,android/R$style.Theme_DeviceDefault,16974120,,,, -?,29,android/R$style.Theme_DeviceDefault_DayNight,16974563,,,, -?,15,android/R$style.Theme_DeviceDefault_Dialog,16974126,,,, -?,22,android/R$style.Theme_DeviceDefault_Dialog_Alert,16974545,,,, -?,15,android/R$style.Theme_DeviceDefault_Dialog_MinWidth,16974127,,,, -?,15,android/R$style.Theme_DeviceDefault_Dialog_NoActionBar,16974128,,,, -?,15,android/R$style.Theme_DeviceDefault_Dialog_NoActionBar_MinWidth,16974129,,,, -?,15,android/R$style.Theme_DeviceDefault_DialogWhenLarge,16974134,,,, -?,15,android/R$style.Theme_DeviceDefault_DialogWhenLarge_NoActionBar,16974135,,,, -?,15,android/R$style.Theme_DeviceDefault_InputMethod,16974142,,,, -?,15,android/R$style.Theme_DeviceDefault_Light,16974123,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_DarkActionBar,16974143,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_Dialog,16974130,,,, -?,22,android/R$style.Theme_DeviceDefault_Light_Dialog_Alert,16974546,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_Dialog_MinWidth,16974131,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_Dialog_NoActionBar,16974132,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_Dialog_NoActionBar_MinWidth,16974133,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_DialogWhenLarge,16974136,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_DialogWhenLarge_NoActionBar,16974137,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_NoActionBar,16974124,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_NoActionBar_Fullscreen,16974125,,,, -?,18,android/R$style.Theme_DeviceDefault_Light_NoActionBar_Overscan,16974304,,,, -?,19,android/R$style.Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor,16974308,,,, -?,15,android/R$style.Theme_DeviceDefault_Light_Panel,16974139,,,, -?,15,android/R$style.Theme_DeviceDefault_NoActionBar,16974121,,,, -?,15,android/R$style.Theme_DeviceDefault_NoActionBar_Fullscreen,16974122,,,, -?,18,android/R$style.Theme_DeviceDefault_NoActionBar_Overscan,16974303,,,, -?,19,android/R$style.Theme_DeviceDefault_NoActionBar_TranslucentDecor,16974307,,,, -?,15,android/R$style.Theme_DeviceDefault_Panel,16974138,,,, -?,21,android/R$style.Theme_DeviceDefault_Settings,16974371,,,, -?,15,android/R$style.Theme_DeviceDefault_Wallpaper,16974140,,,, -?,15,android/R$style.Theme_DeviceDefault_Wallpaper_NoTitleBar,16974141,,,, -?,0,android/R$style.Theme_Dialog,16973835,,,, -?,15,android/R$style.Theme_Holo,16973931,,,, -?,15,android/R$style.Theme_Holo_Dialog,16973935,,,, -?,15,android/R$style.Theme_Holo_Dialog_MinWidth,16973936,,,, -?,15,android/R$style.Theme_Holo_Dialog_NoActionBar,16973937,,,, -?,15,android/R$style.Theme_Holo_Dialog_NoActionBar_MinWidth,16973938,,,, -?,15,android/R$style.Theme_Holo_DialogWhenLarge,16973943,,,, -?,15,android/R$style.Theme_Holo_DialogWhenLarge_NoActionBar,16973944,,,, -?,15,android/R$style.Theme_Holo_InputMethod,16973951,,,, -?,15,android/R$style.Theme_Holo_Light,16973934,,,, -?,15,android/R$style.Theme_Holo_Light_DarkActionBar,16974105,,,, -?,15,android/R$style.Theme_Holo_Light_Dialog,16973939,,,, -?,15,android/R$style.Theme_Holo_Light_Dialog_MinWidth,16973940,,,, -?,15,android/R$style.Theme_Holo_Light_Dialog_NoActionBar,16973941,,,, -?,15,android/R$style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,16973942,,,, -?,15,android/R$style.Theme_Holo_Light_DialogWhenLarge,16973945,,,, -?,15,android/R$style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,16973946,,,, -?,15,android/R$style.Theme_Holo_Light_NoActionBar,16974064,,,, -?,15,android/R$style.Theme_Holo_Light_NoActionBar_Fullscreen,16974065,,,, -?,18,android/R$style.Theme_Holo_Light_NoActionBar_Overscan,16974302,,,, -?,19,android/R$style.Theme_Holo_Light_NoActionBar_TranslucentDecor,16974306,,,, -?,15,android/R$style.Theme_Holo_Light_Panel,16973948,,,, -?,15,android/R$style.Theme_Holo_NoActionBar,16973932,,,, -?,15,android/R$style.Theme_Holo_NoActionBar_Fullscreen,16973933,,,, -?,18,android/R$style.Theme_Holo_NoActionBar_Overscan,16974301,,,, -?,19,android/R$style.Theme_Holo_NoActionBar_TranslucentDecor,16974305,,,, -?,15,android/R$style.Theme_Holo_Panel,16973947,,,, -?,15,android/R$style.Theme_Holo_Wallpaper,16973949,,,, -?,15,android/R$style.Theme_Holo_Wallpaper_NoTitleBar,16973950,,,, -?,0,android/R$style.Theme_InputMethod,16973908,,,, -?,0,android/R$style.Theme_Light,16973836,,,, -?,0,android/R$style.Theme_Light_NoTitleBar,16973837,,,, -?,0,android/R$style.Theme_Light_NoTitleBar_Fullscreen,16973838,,,, -?,0,android/R$style.Theme_Light_Panel,16973914,,,, -?,0,android/R$style.Theme_Light_WallpaperSettings,16973922,,,, -?,21,android/R$style.Theme_Material,16974372,,,, -?,21,android/R$style.Theme_Material_Dialog,16974373,,,, -?,21,android/R$style.Theme_Material_Dialog_Alert,16974374,,,, -?,21,android/R$style.Theme_Material_Dialog_MinWidth,16974375,,,, -?,21,android/R$style.Theme_Material_Dialog_NoActionBar,16974376,,,, -?,21,android/R$style.Theme_Material_Dialog_NoActionBar_MinWidth,16974377,,,, -?,21,android/R$style.Theme_Material_Dialog_Presentation,16974378,,,, -?,21,android/R$style.Theme_Material_DialogWhenLarge,16974379,,,, -?,21,android/R$style.Theme_Material_DialogWhenLarge_NoActionBar,16974380,,,, -?,21,android/R$style.Theme_Material_InputMethod,16974381,,,, -?,21,android/R$style.Theme_Material_Light,16974391,,,, -?,21,android/R$style.Theme_Material_Light_DarkActionBar,16974392,,,, -?,21,android/R$style.Theme_Material_Light_Dialog,16974393,,,, -?,21,android/R$style.Theme_Material_Light_Dialog_Alert,16974394,,,, -?,21,android/R$style.Theme_Material_Light_Dialog_MinWidth,16974395,,,, -?,21,android/R$style.Theme_Material_Light_Dialog_NoActionBar,16974396,,,, -?,21,android/R$style.Theme_Material_Light_Dialog_NoActionBar_MinWidth,16974397,,,, -?,21,android/R$style.Theme_Material_Light_Dialog_Presentation,16974398,,,, -?,21,android/R$style.Theme_Material_Light_DialogWhenLarge,16974399,,,, -?,24,android/R$style.Theme_Material_Light_DialogWhenLarge_DarkActionBar,16974552,,,, -?,21,android/R$style.Theme_Material_Light_DialogWhenLarge_NoActionBar,16974400,,,, -?,23,android/R$style.Theme_Material_Light_LightStatusBar,16974549,,,, -?,21,android/R$style.Theme_Material_Light_NoActionBar,16974401,,,, -?,21,android/R$style.Theme_Material_Light_NoActionBar_Fullscreen,16974402,,,, -?,21,android/R$style.Theme_Material_Light_NoActionBar_Overscan,16974403,,,, -?,21,android/R$style.Theme_Material_Light_NoActionBar_TranslucentDecor,16974404,,,, -?,21,android/R$style.Theme_Material_Light_Panel,16974405,,,, -?,21,android/R$style.Theme_Material_Light_Voice,16974406,,,, -?,21,android/R$style.Theme_Material_NoActionBar,16974382,,,, -?,21,android/R$style.Theme_Material_NoActionBar_Fullscreen,16974383,,,, -?,21,android/R$style.Theme_Material_NoActionBar_Overscan,16974384,,,, -?,21,android/R$style.Theme_Material_NoActionBar_TranslucentDecor,16974385,,,, -?,21,android/R$style.Theme_Material_Panel,16974386,,,, -?,21,android/R$style.Theme_Material_Settings,16974387,,,, -?,21,android/R$style.Theme_Material_Voice,16974388,,,, -?,21,android/R$style.Theme_Material_Wallpaper,16974389,,,, -?,21,android/R$style.Theme_Material_Wallpaper_NoTitleBar,16974390,,,, -?,0,android/R$style.Theme_NoDisplay,16973909,,,, -?,0,android/R$style.Theme_NoTitleBar,16973830,,,, -?,0,android/R$style.Theme_NoTitleBar_Fullscreen,16973831,,,, -?,15,android/R$style.Theme_NoTitleBar_OverlayActionModes,16973930,,,, -?,0,android/R$style.Theme_Panel,16973913,,,, -?,0,android/R$style.Theme_Translucent,16973839,,,, -?,0,android/R$style.Theme_Translucent_NoTitleBar,16973840,,,, -?,0,android/R$style.Theme_Translucent_NoTitleBar_Fullscreen,16973841,,,, -?,0,android/R$style.Theme_Wallpaper,16973918,,,, -?,0,android/R$style.Theme_Wallpaper_NoTitleBar,16973919,,,, -?,0,android/R$style.Theme_Wallpaper_NoTitleBar_Fullscreen,16973920,,,, -?,0,android/R$style.Theme_WallpaperSettings,16973921,,,, -?,15,android/R$style.Theme_WithActionBar,16973929,,,, -?,21,android/R$style.ThemeOverlay,16974407,,,, -?,29,android/R$style.ThemeOverlay_DeviceDefault_Accent_DayNight,16974564,,,, -?,21,android/R$style.ThemeOverlay_Material,16974408,,,, -?,21,android/R$style.ThemeOverlay_Material_ActionBar,16974409,,,, -?,21,android/R$style.ThemeOverlay_Material_Dark,16974411,,,, -?,21,android/R$style.ThemeOverlay_Material_Dark_ActionBar,16974412,,,, -?,23,android/R$style.ThemeOverlay_Material_Dialog,16974550,,,, -?,23,android/R$style.ThemeOverlay_Material_Dialog_Alert,16974551,,,, -?,21,android/R$style.ThemeOverlay_Material_Light,16974410,,,, -?,0,android/R$style.Widget,16973842,,,, -?,0,android/R$style.Widget_AbsListView,16973843,,,, -?,15,android/R$style.Widget_ActionBar,16973954,,,, -?,15,android/R$style.Widget_ActionBar_TabBar,16974068,,,, -?,15,android/R$style.Widget_ActionBar_TabText,16974067,,,, -?,15,android/R$style.Widget_ActionBar_TabView,16974066,,,, -?,15,android/R$style.Widget_ActionButton,16973956,,,, -?,15,android/R$style.Widget_ActionButton_CloseMode,16973960,,,, -?,15,android/R$style.Widget_ActionButton_Overflow,16973959,,,, -?,0,android/R$style.Widget_AutoCompleteTextView,16973863,,,, -?,0,android/R$style.Widget_Button,16973844,,,, -?,0,android/R$style.Widget_Button_Inset,16973845,,,, -?,0,android/R$style.Widget_Button_Small,16973846,,,, -?,0,android/R$style.Widget_Button_Toggle,16973847,,,, -?,15,android/R$style.Widget_CalendarView,16974059,,,, -?,0,android/R$style.Widget_CompoundButton,16973848,,,, -?,0,android/R$style.Widget_CompoundButton_CheckBox,16973849,,,, -?,0,android/R$style.Widget_CompoundButton_RadioButton,16973850,,,, -?,0,android/R$style.Widget_CompoundButton_Star,16973851,,,, -?,15,android/R$style.Widget_DatePicker,16974062,,,, -?,15,android/R$style.Widget_DeviceDefault,16974144,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionBar,16974187,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionBar_Solid,16974195,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionBar_TabBar,16974194,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionBar_TabText,16974193,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionBar_TabView,16974192,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionButton,16974182,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionButton_CloseMode,16974186,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionButton_Overflow,16974183,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionButton_TextButton,16974184,,,, -?,15,android/R$style.Widget_DeviceDefault_ActionMode,16974185,,,, -?,15,android/R$style.Widget_DeviceDefault_AutoCompleteTextView,16974151,,,, -?,15,android/R$style.Widget_DeviceDefault_Button,16974145,,,, -?,15,android/R$style.Widget_DeviceDefault_Button_Borderless,16974188,,,, -?,28,android/R$style.Widget_DeviceDefault_Button_Borderless_Colored,16974561,,,, -?,15,android/R$style.Widget_DeviceDefault_Button_Borderless_Small,16974149,,,, -?,28,android/R$style.Widget_DeviceDefault_Button_Colored,16974560,,,, -?,15,android/R$style.Widget_DeviceDefault_Button_Inset,16974147,,,, -?,15,android/R$style.Widget_DeviceDefault_Button_Small,16974146,,,, -?,15,android/R$style.Widget_DeviceDefault_Button_Toggle,16974148,,,, -?,15,android/R$style.Widget_DeviceDefault_CalendarView,16974190,,,, -?,17,android/R$style.Widget_DeviceDefault_CheckedTextView,16974299,,,, -?,15,android/R$style.Widget_DeviceDefault_CompoundButton_CheckBox,16974152,,,, -?,15,android/R$style.Widget_DeviceDefault_CompoundButton_RadioButton,16974169,,,, -?,15,android/R$style.Widget_DeviceDefault_CompoundButton_Star,16974173,,,, -?,15,android/R$style.Widget_DeviceDefault_DatePicker,16974191,,,, -?,15,android/R$style.Widget_DeviceDefault_DropDownItem,16974177,,,, -?,15,android/R$style.Widget_DeviceDefault_DropDownItem_Spinner,16974178,,,, -?,15,android/R$style.Widget_DeviceDefault_EditText,16974154,,,, -?,15,android/R$style.Widget_DeviceDefault_ExpandableListView,16974155,,,, -?,21,android/R$style.Widget_DeviceDefault_FastScroll,16974313,,,, -?,15,android/R$style.Widget_DeviceDefault_GridView,16974156,,,, -?,15,android/R$style.Widget_DeviceDefault_HorizontalScrollView,16974171,,,, -?,15,android/R$style.Widget_DeviceDefault_ImageButton,16974157,,,, -?,15,android/R$style.Widget_DeviceDefault_Light,16974196,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar,16974243,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_Solid,16974247,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse,16974248,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabBar,16974246,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse,16974249,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabText,16974245,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse,16974251,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabView,16974244,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse,16974250,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionButton,16974239,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionButton_CloseMode,16974242,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionButton_Overflow,16974240,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionMode,16974241,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ActionMode_Inverse,16974252,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_AutoCompleteTextView,16974203,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Button,16974197,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Button_Borderless_Small,16974201,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Button_Inset,16974199,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Button_Small,16974198,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Button_Toggle,16974200,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_CalendarView,16974238,,,, -?,17,android/R$style.Widget_DeviceDefault_Light_CheckedTextView,16974300,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_CheckBox,16974204,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_RadioButton,16974224,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_Star,16974228,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_DropDownItem,16974232,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_DropDownItem_Spinner,16974233,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_EditText,16974206,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ExpandableListView,16974207,,,, -?,21,android/R$style.Widget_DeviceDefault_Light_FastScroll,16974315,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_GridView,16974208,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_HorizontalScrollView,16974226,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ImageButton,16974209,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ListPopupWindow,16974235,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ListView,16974210,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ListView_DropDown,16974205,,,, -?,16,android/R$style.Widget_DeviceDefault_Light_MediaRouteButton,16974296,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_PopupMenu,16974236,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_PopupWindow,16974211,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar,16974212,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Horizontal,16974213,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Inverse,16974217,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Large,16974216,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Large_Inverse,16974219,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small,16974214,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small_Inverse,16974218,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small_Title,16974215,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_RatingBar,16974221,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_RatingBar_Indicator,16974222,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_RatingBar_Small,16974223,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_ScrollView,16974225,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_SeekBar,16974220,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Spinner,16974227,,,, -?,21,android/R$style.Widget_DeviceDefault_Light_StackView,16974316,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_Tab,16974237,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_TabWidget,16974229,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_TextView,16974202,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_TextView_SpinnerItem,16974234,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_WebTextView,16974230,,,, -?,15,android/R$style.Widget_DeviceDefault_Light_WebView,16974231,,,, -?,15,android/R$style.Widget_DeviceDefault_ListPopupWindow,16974180,,,, -?,15,android/R$style.Widget_DeviceDefault_ListView,16974158,,,, -?,15,android/R$style.Widget_DeviceDefault_ListView_DropDown,16974153,,,, -?,16,android/R$style.Widget_DeviceDefault_MediaRouteButton,16974295,,,, -?,15,android/R$style.Widget_DeviceDefault_PopupMenu,16974181,,,, -?,15,android/R$style.Widget_DeviceDefault_PopupWindow,16974159,,,, -?,15,android/R$style.Widget_DeviceDefault_ProgressBar,16974160,,,, -?,15,android/R$style.Widget_DeviceDefault_ProgressBar_Horizontal,16974161,,,, -?,15,android/R$style.Widget_DeviceDefault_ProgressBar_Large,16974164,,,, -?,15,android/R$style.Widget_DeviceDefault_ProgressBar_Small,16974162,,,, -?,15,android/R$style.Widget_DeviceDefault_ProgressBar_Small_Title,16974163,,,, -?,15,android/R$style.Widget_DeviceDefault_RatingBar,16974166,,,, -?,15,android/R$style.Widget_DeviceDefault_RatingBar_Indicator,16974167,,,, -?,15,android/R$style.Widget_DeviceDefault_RatingBar_Small,16974168,,,, -?,15,android/R$style.Widget_DeviceDefault_ScrollView,16974170,,,, -?,15,android/R$style.Widget_DeviceDefault_SeekBar,16974165,,,, -?,15,android/R$style.Widget_DeviceDefault_Spinner,16974172,,,, -?,21,android/R$style.Widget_DeviceDefault_StackView,16974314,,,, -?,15,android/R$style.Widget_DeviceDefault_Tab,16974189,,,, -?,15,android/R$style.Widget_DeviceDefault_TabWidget,16974174,,,, -?,15,android/R$style.Widget_DeviceDefault_TextView,16974150,,,, -?,15,android/R$style.Widget_DeviceDefault_TextView_SpinnerItem,16974179,,,, -?,15,android/R$style.Widget_DeviceDefault_WebTextView,16974175,,,, -?,15,android/R$style.Widget_DeviceDefault_WebView,16974176,,,, -?,0,android/R$style.Widget_DropDownItem,16973867,,,, -?,0,android/R$style.Widget_DropDownItem_Spinner,16973868,,,, -?,0,android/R$style.Widget_EditText,16973859,,,, -?,0,android/R$style.Widget_ExpandableListView,16973860,,,, -?,21,android/R$style.Widget_FastScroll,16974309,,,, -?,15,android/R$style.Widget_FragmentBreadCrumbs,16973961,,,, -?,0,android/R$style.Widget_Gallery,16973877,,,, -?,0,android/R$style.Widget_GridView,16973874,,,, -?,15,android/R$style.Widget_Holo,16973962,,,, -?,15,android/R$style.Widget_Holo_ActionBar,16974004,,,, -?,15,android/R$style.Widget_Holo_ActionBar_Solid,16974113,,,, -?,15,android/R$style.Widget_Holo_ActionBar_TabBar,16974071,,,, -?,15,android/R$style.Widget_Holo_ActionBar_TabText,16974070,,,, -?,15,android/R$style.Widget_Holo_ActionBar_TabView,16974069,,,, -?,15,android/R$style.Widget_Holo_ActionButton,16973999,,,, -?,15,android/R$style.Widget_Holo_ActionButton_CloseMode,16974003,,,, -?,15,android/R$style.Widget_Holo_ActionButton_Overflow,16974000,,,, -?,15,android/R$style.Widget_Holo_ActionButton_TextButton,16974001,,,, -?,15,android/R$style.Widget_Holo_ActionMode,16974002,,,, -?,15,android/R$style.Widget_Holo_AutoCompleteTextView,16973968,,,, -?,15,android/R$style.Widget_Holo_Button,16973963,,,, -?,15,android/R$style.Widget_Holo_Button_Borderless,16974050,,,, -?,15,android/R$style.Widget_Holo_Button_Borderless_Small,16974106,,,, -?,15,android/R$style.Widget_Holo_Button_Inset,16973965,,,, -?,15,android/R$style.Widget_Holo_Button_Small,16973964,,,, -?,15,android/R$style.Widget_Holo_Button_Toggle,16973966,,,, -?,15,android/R$style.Widget_Holo_CalendarView,16974060,,,, -?,17,android/R$style.Widget_Holo_CheckedTextView,16974297,,,, -?,15,android/R$style.Widget_Holo_CompoundButton_CheckBox,16973969,,,, -?,15,android/R$style.Widget_Holo_CompoundButton_RadioButton,16973986,,,, -?,15,android/R$style.Widget_Holo_CompoundButton_Star,16973990,,,, -?,15,android/R$style.Widget_Holo_DatePicker,16974063,,,, -?,15,android/R$style.Widget_Holo_DropDownItem,16973994,,,, -?,15,android/R$style.Widget_Holo_DropDownItem_Spinner,16973995,,,, -?,15,android/R$style.Widget_Holo_EditText,16973971,,,, -?,15,android/R$style.Widget_Holo_ExpandableListView,16973972,,,, -?,15,android/R$style.Widget_Holo_GridView,16973973,,,, -?,15,android/R$style.Widget_Holo_HorizontalScrollView,16973988,,,, -?,15,android/R$style.Widget_Holo_ImageButton,16973974,,,, -?,15,android/R$style.Widget_Holo_Light,16974005,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar,16974049,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_Solid,16974114,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_Solid_Inverse,16974115,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabBar,16974074,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabBar_Inverse,16974116,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabText,16974073,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabText_Inverse,16974118,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabView,16974072,,,, -?,15,android/R$style.Widget_Holo_Light_ActionBar_TabView_Inverse,16974117,,,, -?,15,android/R$style.Widget_Holo_Light_ActionButton,16974045,,,, -?,15,android/R$style.Widget_Holo_Light_ActionButton_CloseMode,16974048,,,, -?,15,android/R$style.Widget_Holo_Light_ActionButton_Overflow,16974046,,,, -?,15,android/R$style.Widget_Holo_Light_ActionMode,16974047,,,, -?,15,android/R$style.Widget_Holo_Light_ActionMode_Inverse,16974119,,,, -?,15,android/R$style.Widget_Holo_Light_AutoCompleteTextView,16974011,,,, -?,15,android/R$style.Widget_Holo_Light_Button,16974006,,,, -?,15,android/R$style.Widget_Holo_Light_Button_Borderless_Small,16974107,,,, -?,15,android/R$style.Widget_Holo_Light_Button_Inset,16974008,,,, -?,15,android/R$style.Widget_Holo_Light_Button_Small,16974007,,,, -?,15,android/R$style.Widget_Holo_Light_Button_Toggle,16974009,,,, -?,15,android/R$style.Widget_Holo_Light_CalendarView,16974061,,,, -?,17,android/R$style.Widget_Holo_Light_CheckedTextView,16974298,,,, -?,15,android/R$style.Widget_Holo_Light_CompoundButton_CheckBox,16974012,,,, -?,15,android/R$style.Widget_Holo_Light_CompoundButton_RadioButton,16974032,,,, -?,15,android/R$style.Widget_Holo_Light_CompoundButton_Star,16974036,,,, -?,15,android/R$style.Widget_Holo_Light_DropDownItem,16974040,,,, -?,15,android/R$style.Widget_Holo_Light_DropDownItem_Spinner,16974041,,,, -?,15,android/R$style.Widget_Holo_Light_EditText,16974014,,,, -?,15,android/R$style.Widget_Holo_Light_ExpandableListView,16974015,,,, -?,15,android/R$style.Widget_Holo_Light_GridView,16974016,,,, -?,15,android/R$style.Widget_Holo_Light_HorizontalScrollView,16974034,,,, -?,15,android/R$style.Widget_Holo_Light_ImageButton,16974017,,,, -?,15,android/R$style.Widget_Holo_Light_ListPopupWindow,16974043,,,, -?,15,android/R$style.Widget_Holo_Light_ListView,16974018,,,, -?,15,android/R$style.Widget_Holo_Light_ListView_DropDown,16974013,,,, -?,16,android/R$style.Widget_Holo_Light_MediaRouteButton,16974294,,,, -?,15,android/R$style.Widget_Holo_Light_PopupMenu,16974044,,,, -?,15,android/R$style.Widget_Holo_Light_PopupWindow,16974019,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar,16974020,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Horizontal,16974021,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Inverse,16974025,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Large,16974024,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Large_Inverse,16974027,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Small,16974022,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Small_Inverse,16974026,,,, -?,15,android/R$style.Widget_Holo_Light_ProgressBar_Small_Title,16974023,,,, -?,15,android/R$style.Widget_Holo_Light_RatingBar,16974029,,,, -?,15,android/R$style.Widget_Holo_Light_RatingBar_Indicator,16974030,,,, -?,15,android/R$style.Widget_Holo_Light_RatingBar_Small,16974031,,,, -?,15,android/R$style.Widget_Holo_Light_ScrollView,16974033,,,, -?,15,android/R$style.Widget_Holo_Light_SeekBar,16974028,,,, -?,15,android/R$style.Widget_Holo_Light_Spinner,16974035,,,, -?,15,android/R$style.Widget_Holo_Light_Tab,16974052,,,, -?,15,android/R$style.Widget_Holo_Light_TabWidget,16974037,,,, -?,15,android/R$style.Widget_Holo_Light_TextView,16974010,,,, -?,15,android/R$style.Widget_Holo_Light_TextView_SpinnerItem,16974042,,,, -?,15,android/R$style.Widget_Holo_Light_WebTextView,16974038,,,, -?,15,android/R$style.Widget_Holo_Light_WebView,16974039,,,, -?,15,android/R$style.Widget_Holo_ListPopupWindow,16973997,,,, -?,15,android/R$style.Widget_Holo_ListView,16973975,,,, -?,15,android/R$style.Widget_Holo_ListView_DropDown,16973970,,,, -?,16,android/R$style.Widget_Holo_MediaRouteButton,16974293,,,, -?,15,android/R$style.Widget_Holo_PopupMenu,16973998,,,, -?,15,android/R$style.Widget_Holo_PopupWindow,16973976,,,, -?,15,android/R$style.Widget_Holo_ProgressBar,16973977,,,, -?,15,android/R$style.Widget_Holo_ProgressBar_Horizontal,16973978,,,, -?,15,android/R$style.Widget_Holo_ProgressBar_Large,16973981,,,, -?,15,android/R$style.Widget_Holo_ProgressBar_Small,16973979,,,, -?,15,android/R$style.Widget_Holo_ProgressBar_Small_Title,16973980,,,, -?,15,android/R$style.Widget_Holo_RatingBar,16973983,,,, -?,15,android/R$style.Widget_Holo_RatingBar_Indicator,16973984,,,, -?,15,android/R$style.Widget_Holo_RatingBar_Small,16973985,,,, -?,15,android/R$style.Widget_Holo_ScrollView,16973987,,,, -?,15,android/R$style.Widget_Holo_SeekBar,16973982,,,, -?,15,android/R$style.Widget_Holo_Spinner,16973989,,,, -?,15,android/R$style.Widget_Holo_Tab,16974051,,,, -?,15,android/R$style.Widget_Holo_TabWidget,16973991,,,, -?,15,android/R$style.Widget_Holo_TextView,16973967,,,, -?,15,android/R$style.Widget_Holo_TextView_SpinnerItem,16973996,,,, -?,15,android/R$style.Widget_Holo_WebTextView,16973992,,,, -?,15,android/R$style.Widget_Holo_WebView,16973993,,,, -?,0,android/R$style.Widget_ImageButton,16973862,,,, -?,0,android/R$style.Widget_ImageWell,16973861,,,, -?,0,android/R$style.Widget_KeyboardView,16973911,,,, -?,15,android/R$style.Widget_ListPopupWindow,16973957,,,, -?,0,android/R$style.Widget_ListView,16973870,,,, -?,0,android/R$style.Widget_ListView_DropDown,16973872,,,, -?,0,android/R$style.Widget_ListView_Menu,16973873,,,, -?,0,android/R$style.Widget_ListView_White,16973871,,,, -?,21,android/R$style.Widget_Material,16974413,,,, -?,21,android/R$style.Widget_Material_ActionBar,16974414,,,, -?,21,android/R$style.Widget_Material_ActionBar_Solid,16974415,,,, -?,21,android/R$style.Widget_Material_ActionBar_TabBar,16974416,,,, -?,21,android/R$style.Widget_Material_ActionBar_TabText,16974417,,,, -?,21,android/R$style.Widget_Material_ActionBar_TabView,16974418,,,, -?,21,android/R$style.Widget_Material_ActionButton,16974419,,,, -?,21,android/R$style.Widget_Material_ActionButton_CloseMode,16974420,,,, -?,21,android/R$style.Widget_Material_ActionButton_Overflow,16974421,,,, -?,21,android/R$style.Widget_Material_ActionMode,16974422,,,, -?,21,android/R$style.Widget_Material_AutoCompleteTextView,16974423,,,, -?,21,android/R$style.Widget_Material_Button,16974424,,,, -?,21,android/R$style.Widget_Material_Button_Borderless,16974425,,,, -?,21,android/R$style.Widget_Material_Button_Borderless_Colored,16974426,,,, -?,21,android/R$style.Widget_Material_Button_Borderless_Small,16974427,,,, -?,23,android/R$style.Widget_Material_Button_Colored,16974547,,,, -?,21,android/R$style.Widget_Material_Button_Inset,16974428,,,, -?,21,android/R$style.Widget_Material_Button_Small,16974429,,,, -?,21,android/R$style.Widget_Material_Button_Toggle,16974430,,,, -?,21,android/R$style.Widget_Material_ButtonBar,16974431,,,, -?,21,android/R$style.Widget_Material_ButtonBar_AlertDialog,16974432,,,, -?,21,android/R$style.Widget_Material_CalendarView,16974433,,,, -?,21,android/R$style.Widget_Material_CheckedTextView,16974434,,,, -?,21,android/R$style.Widget_Material_CompoundButton_CheckBox,16974435,,,, -?,21,android/R$style.Widget_Material_CompoundButton_RadioButton,16974436,,,, -?,21,android/R$style.Widget_Material_CompoundButton_Star,16974437,,,, -?,24,android/R$style.Widget_Material_CompoundButton_Switch,16974554,,,, -?,21,android/R$style.Widget_Material_DatePicker,16974438,,,, -?,21,android/R$style.Widget_Material_DropDownItem,16974439,,,, -?,21,android/R$style.Widget_Material_DropDownItem_Spinner,16974440,,,, -?,21,android/R$style.Widget_Material_EditText,16974441,,,, -?,21,android/R$style.Widget_Material_ExpandableListView,16974442,,,, -?,21,android/R$style.Widget_Material_FastScroll,16974443,,,, -?,21,android/R$style.Widget_Material_GridView,16974444,,,, -?,21,android/R$style.Widget_Material_HorizontalScrollView,16974445,,,, -?,21,android/R$style.Widget_Material_ImageButton,16974446,,,, -?,21,android/R$style.Widget_Material_Light,16974478,,,, -?,21,android/R$style.Widget_Material_Light_ActionBar,16974479,,,, -?,21,android/R$style.Widget_Material_Light_ActionBar_Solid,16974480,,,, -?,21,android/R$style.Widget_Material_Light_ActionBar_TabBar,16974481,,,, -?,21,android/R$style.Widget_Material_Light_ActionBar_TabText,16974482,,,, -?,21,android/R$style.Widget_Material_Light_ActionBar_TabView,16974483,,,, -?,21,android/R$style.Widget_Material_Light_ActionButton,16974484,,,, -?,21,android/R$style.Widget_Material_Light_ActionButton_CloseMode,16974485,,,, -?,21,android/R$style.Widget_Material_Light_ActionButton_Overflow,16974486,,,, -?,21,android/R$style.Widget_Material_Light_ActionMode,16974487,,,, -?,21,android/R$style.Widget_Material_Light_AutoCompleteTextView,16974488,,,, -?,21,android/R$style.Widget_Material_Light_Button,16974489,,,, -?,21,android/R$style.Widget_Material_Light_Button_Borderless,16974490,,,, -?,21,android/R$style.Widget_Material_Light_Button_Borderless_Colored,16974491,,,, -?,21,android/R$style.Widget_Material_Light_Button_Borderless_Small,16974492,,,, -?,21,android/R$style.Widget_Material_Light_Button_Inset,16974493,,,, -?,21,android/R$style.Widget_Material_Light_Button_Small,16974494,,,, -?,21,android/R$style.Widget_Material_Light_Button_Toggle,16974495,,,, -?,21,android/R$style.Widget_Material_Light_ButtonBar,16974496,,,, -?,21,android/R$style.Widget_Material_Light_ButtonBar_AlertDialog,16974497,,,, -?,21,android/R$style.Widget_Material_Light_CalendarView,16974498,,,, -?,21,android/R$style.Widget_Material_Light_CheckedTextView,16974499,,,, -?,21,android/R$style.Widget_Material_Light_CompoundButton_CheckBox,16974500,,,, -?,21,android/R$style.Widget_Material_Light_CompoundButton_RadioButton,16974501,,,, -?,21,android/R$style.Widget_Material_Light_CompoundButton_Star,16974502,,,, -?,24,android/R$style.Widget_Material_Light_CompoundButton_Switch,16974555,,,, -?,21,android/R$style.Widget_Material_Light_DatePicker,16974503,,,, -?,21,android/R$style.Widget_Material_Light_DropDownItem,16974504,,,, -?,21,android/R$style.Widget_Material_Light_DropDownItem_Spinner,16974505,,,, -?,21,android/R$style.Widget_Material_Light_EditText,16974506,,,, -?,21,android/R$style.Widget_Material_Light_ExpandableListView,16974507,,,, -?,21,android/R$style.Widget_Material_Light_FastScroll,16974508,,,, -?,21,android/R$style.Widget_Material_Light_GridView,16974509,,,, -?,21,android/R$style.Widget_Material_Light_HorizontalScrollView,16974510,,,, -?,21,android/R$style.Widget_Material_Light_ImageButton,16974511,,,, -?,21,android/R$style.Widget_Material_Light_ListPopupWindow,16974512,,,, -?,21,android/R$style.Widget_Material_Light_ListView,16974513,,,, -?,21,android/R$style.Widget_Material_Light_ListView_DropDown,16974514,,,, -?,21,android/R$style.Widget_Material_Light_MediaRouteButton,16974515,,,, -?,24,android/R$style.Widget_Material_Light_NumberPicker,16974557,,,, -?,21,android/R$style.Widget_Material_Light_PopupMenu,16974516,,,, -?,21,android/R$style.Widget_Material_Light_PopupMenu_Overflow,16974517,,,, -?,21,android/R$style.Widget_Material_Light_PopupWindow,16974518,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar,16974519,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Horizontal,16974520,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Inverse,16974521,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Large,16974522,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Large_Inverse,16974523,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Small,16974524,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Small_Inverse,16974525,,,, -?,21,android/R$style.Widget_Material_Light_ProgressBar_Small_Title,16974526,,,, -?,21,android/R$style.Widget_Material_Light_RatingBar,16974527,,,, -?,21,android/R$style.Widget_Material_Light_RatingBar_Indicator,16974528,,,, -?,21,android/R$style.Widget_Material_Light_RatingBar_Small,16974529,,,, -?,21,android/R$style.Widget_Material_Light_ScrollView,16974530,,,, -?,21,android/R$style.Widget_Material_Light_SearchView,16974531,,,, -?,21,android/R$style.Widget_Material_Light_SeekBar,16974532,,,, -?,21,android/R$style.Widget_Material_Light_SegmentedButton,16974533,,,, -?,21,android/R$style.Widget_Material_Light_Spinner,16974535,,,, -?,21,android/R$style.Widget_Material_Light_Spinner_Underlined,16974536,,,, -?,21,android/R$style.Widget_Material_Light_StackView,16974534,,,, -?,21,android/R$style.Widget_Material_Light_Tab,16974537,,,, -?,21,android/R$style.Widget_Material_Light_TabWidget,16974538,,,, -?,21,android/R$style.Widget_Material_Light_TextView,16974539,,,, -?,21,android/R$style.Widget_Material_Light_TextView_SpinnerItem,16974540,,,, -?,21,android/R$style.Widget_Material_Light_TimePicker,16974541,,,, -?,21,android/R$style.Widget_Material_Light_WebTextView,16974542,,,, -?,21,android/R$style.Widget_Material_Light_WebView,16974543,,,, -?,21,android/R$style.Widget_Material_ListPopupWindow,16974447,,,, -?,21,android/R$style.Widget_Material_ListView,16974448,,,, -?,21,android/R$style.Widget_Material_ListView_DropDown,16974449,,,, -?,21,android/R$style.Widget_Material_MediaRouteButton,16974450,,,, -?,24,android/R$style.Widget_Material_NumberPicker,16974556,,,, -?,21,android/R$style.Widget_Material_PopupMenu,16974451,,,, -?,21,android/R$style.Widget_Material_PopupMenu_Overflow,16974452,,,, -?,21,android/R$style.Widget_Material_PopupWindow,16974453,,,, -?,21,android/R$style.Widget_Material_ProgressBar,16974454,,,, -?,21,android/R$style.Widget_Material_ProgressBar_Horizontal,16974455,,,, -?,21,android/R$style.Widget_Material_ProgressBar_Large,16974456,,,, -?,21,android/R$style.Widget_Material_ProgressBar_Small,16974457,,,, -?,21,android/R$style.Widget_Material_ProgressBar_Small_Title,16974458,,,, -?,21,android/R$style.Widget_Material_RatingBar,16974459,,,, -?,21,android/R$style.Widget_Material_RatingBar_Indicator,16974460,,,, -?,21,android/R$style.Widget_Material_RatingBar_Small,16974461,,,, -?,21,android/R$style.Widget_Material_ScrollView,16974462,,,, -?,21,android/R$style.Widget_Material_SearchView,16974463,,,, -?,21,android/R$style.Widget_Material_SeekBar,16974464,,,, -?,24,android/R$style.Widget_Material_SeekBar_Discrete,16974553,,,, -?,21,android/R$style.Widget_Material_SegmentedButton,16974465,,,, -?,21,android/R$style.Widget_Material_Spinner,16974467,,,, -?,21,android/R$style.Widget_Material_Spinner_Underlined,16974468,,,, -?,21,android/R$style.Widget_Material_StackView,16974466,,,, -?,21,android/R$style.Widget_Material_Tab,16974469,,,, -?,21,android/R$style.Widget_Material_TabWidget,16974470,,,, -?,21,android/R$style.Widget_Material_TextView,16974471,,,, -?,21,android/R$style.Widget_Material_TextView_SpinnerItem,16974472,,,, -?,21,android/R$style.Widget_Material_TimePicker,16974473,,,, -?,21,android/R$style.Widget_Material_Toolbar,16974474,,,, -?,21,android/R$style.Widget_Material_Toolbar_Button_Navigation,16974475,,,, -?,21,android/R$style.Widget_Material_WebTextView,16974476,,,, -?,21,android/R$style.Widget_Material_WebView,16974477,,,, -?,15,android/R$style.Widget_PopupMenu,16973958,,,, -?,0,android/R$style.Widget_PopupWindow,16973878,,,, -?,0,android/R$style.Widget_ProgressBar,16973852,,,, -?,0,android/R$style.Widget_ProgressBar_Horizontal,16973855,,,, -?,0,android/R$style.Widget_ProgressBar_Inverse,16973915,,,, -?,0,android/R$style.Widget_ProgressBar_Large,16973853,,,, -?,0,android/R$style.Widget_ProgressBar_Large_Inverse,16973916,,,, -?,0,android/R$style.Widget_ProgressBar_Small,16973854,,,, -?,0,android/R$style.Widget_ProgressBar_Small_Inverse,16973917,,,, -?,0,android/R$style.Widget_RatingBar,16973857,,,, -?,0,android/R$style.Widget_ScrollView,16973869,,,, -?,0,android/R$style.Widget_SeekBar,16973856,,,, -?,0,android/R$style.Widget_Spinner,16973864,,,, -?,15,android/R$style.Widget_Spinner_DropDown,16973955,,,, -?,21,android/R$style.Widget_StackView,16974310,,,, -?,0,android/R$style.Widget_TabWidget,16973876,,,, -?,0,android/R$style.Widget_TextView,16973858,,,, -?,0,android/R$style.Widget_TextView_PopupMenu,16973865,,,, -?,0,android/R$style.Widget_TextView_SpinnerItem,16973866,,,, -?,21,android/R$style.Widget_Toolbar,16974311,,,, -?,21,android/R$style.Widget_Toolbar_Button_Navigation,16974312,,,, -?,0,android/R$style.Widget_WebView,16973875,,,, -?,21,android/R$transition.explode,17760259,,,, -?,21,android/R$transition.fade,17760258,,,, -?,21,android/R$transition.move,17760257,,,, -?,21,android/R$transition.no_transition,17760256,,,, -?,21,android/R$transition.slide_bottom,17760260,,,, -?,21,android/R$transition.slide_left,17760263,,,, -?,21,android/R$transition.slide_right,17760262,,,, -?,21,android/R$transition.slide_top,17760261,,,, +I,24,android/provider/VoicemailContract$Status.QUOTA_UNAVAILABLE,-1,,,, +I,28,android/provider/VoicemailContract$Voicemails.DIRTY_RETAIN,-1,,,, +I,0,android/R$anim.accelerate_decelerate_interpolator,17432580,,,, +I,0,android/R$anim.accelerate_interpolator,17432581,,,, +I,0,android/R$anim.anticipate_interpolator,17432583,,,, +I,0,android/R$anim.anticipate_overshoot_interpolator,17432585,,,, +I,0,android/R$anim.bounce_interpolator,17432586,,,, +I,0,android/R$anim.cycle_interpolator,17432588,,,, +I,0,android/R$anim.decelerate_interpolator,17432582,,,, +I,0,android/R$anim.fade_in,17432576,,,, +I,0,android/R$anim.fade_out,17432577,,,, +I,0,android/R$anim.linear_interpolator,17432587,,,, +I,0,android/R$anim.overshoot_interpolator,17432584,,,, +I,0,android/R$anim.slide_in_left,17432578,,,, +I,0,android/R$anim.slide_out_right,17432579,,,, +I,15,android/R$animator.fade_in,17498112,,,, +I,15,android/R$animator.fade_out,17498113,,,, +I,0,android/R$array.emailAddressTypes,17235968,,,, +I,0,android/R$array.imProtocols,17235969,,,, +I,0,android/R$array.organizationTypes,17235970,,,, +I,0,android/R$array.phoneTypes,17235971,,,, +I,0,android/R$array.postalAddressTypes,17235972,,,, +I,0,android/R$attr.absListViewStyle,16842858,,,, +I,15,android/R$attr.accessibilityEventTypes,16843648,,,, +I,15,android/R$attr.accessibilityFeedbackType,16843650,,,, +I,15,android/R$attr.accessibilityFlags,16843652,,,, +I,28,android/R$attr.accessibilityHeading,16844160,,,, +I,19,android/R$attr.accessibilityLiveRegion,16843758,,,, +I,28,android/R$attr.accessibilityPaneTitle,16844156,,,, +I,22,android/R$attr.accessibilityTraversalAfter,16843986,,,, +I,22,android/R$attr.accessibilityTraversalBefore,16843985,,,, +I,0,android/R$attr.accountPreferences,16843423,,,, +I,0,android/R$attr.accountType,16843407,,,, +I,0,android/R$attr.action,16842797,,,, +I,15,android/R$attr.actionBarDivider,16843675,,,, +I,15,android/R$attr.actionBarItemBackground,16843676,,,, +I,21,android/R$attr.actionBarPopupTheme,16843917,,,, +I,15,android/R$attr.actionBarSize,16843499,,,, +I,15,android/R$attr.actionBarSplitStyle,16843656,,,, +I,15,android/R$attr.actionBarStyle,16843470,,,, +I,15,android/R$attr.actionBarTabBarStyle,16843508,,,, +I,15,android/R$attr.actionBarTabStyle,16843507,,,, +I,15,android/R$attr.actionBarTabTextStyle,16843509,,,, +I,21,android/R$attr.actionBarTheme,16843825,,,, +I,15,android/R$attr.actionBarWidgetTheme,16843671,,,, +I,15,android/R$attr.actionButtonStyle,16843480,,,, +I,15,android/R$attr.actionDropDownStyle,16843479,,,, +I,15,android/R$attr.actionLayout,16843515,,,, +I,15,android/R$attr.actionMenuTextAppearance,16843616,,,, +I,15,android/R$attr.actionMenuTextColor,16843617,,,, +I,15,android/R$attr.actionModeBackground,16843483,,,, +I,15,android/R$attr.actionModeCloseButtonStyle,16843511,,,, +I,15,android/R$attr.actionModeCloseDrawable,16843484,,,, +I,15,android/R$attr.actionModeCopyDrawable,16843538,,,, +I,15,android/R$attr.actionModeCutDrawable,16843537,,,, +I,21,android/R$attr.actionModeFindDrawable,16843898,,,, +I,15,android/R$attr.actionModePasteDrawable,16843539,,,, +I,15,android/R$attr.actionModeSelectAllDrawable,16843646,,,, +I,21,android/R$attr.actionModeShareDrawable,16843897,,,, +I,15,android/R$attr.actionModeSplitBackground,16843677,,,, +I,15,android/R$attr.actionModeStyle,16843668,,,, +I,21,android/R$attr.actionModeWebSearchDrawable,16843899,,,, +I,15,android/R$attr.actionOverflowButtonStyle,16843510,,,, +I,21,android/R$attr.actionOverflowMenuStyle,16843844,,,, +I,15,android/R$attr.actionProviderClass,16843657,,,, +I,15,android/R$attr.actionViewClass,16843516,,,, +I,15,android/R$attr.activatedBackgroundIndicator,16843517,,,, +I,0,android/R$attr.activityCloseEnterAnimation,16842938,,,, +I,0,android/R$attr.activityCloseExitAnimation,16842939,,,, +I,0,android/R$attr.activityOpenEnterAnimation,16842936,,,, +I,0,android/R$attr.activityOpenExitAnimation,16842937,,,, +I,19,android/R$attr.addPrintersActivity,16843750,,,, +I,0,android/R$attr.addStatesFromChildren,16842992,,,, +I,0,android/R$attr.adjustViewBounds,16843038,,,, +I,19,android/R$attr.advancedPrintOptionsActivity,16843761,,,, +I,15,android/R$attr.alertDialogIcon,16843605,,,, +I,0,android/R$attr.alertDialogStyle,16842845,,,, +I,15,android/R$attr.alertDialogTheme,16843529,,,, +I,15,android/R$attr.alignmentMode,16843642,,,, +I,15,android/R$attr.allContactsName,16843468,,,, +I,29,android/R$attr.allowAudioPlaybackCapture,16844289,,,, +I,0,android/R$attr.allowBackup,16843392,,,, +I,0,android/R$attr.allowClearUserData,16842757,,,, +I,31,android/R$attr.allowClickWhenDisabled,16844312,,,, +I,20,android/R$attr.allowEmbedded,16843765,,,, +I,30,android/R$attr.allowNativeHeapPointerTagging,16844307,,,, +I,15,android/R$attr.allowParallelSyncs,16843570,,,, +I,0,android/R$attr.allowSingleTap,16843353,,,, +I,0,android/R$attr.allowTaskReparenting,16843268,,,, +I,23,android/R$attr.allowUndo,16843999,,,, +I,15,android/R$attr.alpha,16843551,,,, +I,26,android/R$attr.alphabeticModifiers,16844110,,,, +I,0,android/R$attr.alphabeticShortcut,16843235,,,, +I,0,android/R$attr.alwaysDrawnWithCache,16842991,,,, +I,0,android/R$attr.alwaysRetainTaskState,16843267,,,, +I,21,android/R$attr.ambientShadowAlpha,16843966,,,, +I,21,android/R$attr.amPmBackgroundColor,16843941,,,, +I,21,android/R$attr.amPmTextColor,16843940,,,, +I,0,android/R$attr.angle,16843168,,,, +I,30,android/R$attr.animatedImageDrawable,16844298,,,, +I,15,android/R$attr.animateFirstView,16843477,,,, +I,15,android/R$attr.animateLayoutChanges,16843506,,,, +I,0,android/R$attr.animateOnClick,16843356,,,, +I,0,android/R$attr.animation,16843213,,,, +I,0,android/R$attr.animationCache,16842989,,,, +I,0,android/R$attr.animationDuration,16843026,,,, +I,0,android/R$attr.animationOrder,16843214,,,, +I,15,android/R$attr.animationResolution,16843546,,,, +I,0,android/R$attr.antialias,16843034,,,, +I,0,android/R$attr.anyDensity,16843372,,,, +I,19,android/R$attr.apduServiceBanner,16843757,,,, +I,0,android/R$attr.apiKey,16843281,,,, +I,26,android/R$attr.appCategory,16844101,,,, +I,28,android/R$attr.appComponentFactory,16844154,,,, +I,31,android/R$attr.attributionsAreUserVisible,16844363,,,, +I,31,android/R$attr.attributionTags,16844354,,,, +I,0,android/R$attr.author,16843444,,,, +I,0,android/R$attr.authorities,16842776,,,, +I,15,android/R$attr.autoAdvanceViewId,16843535,,,, +I,0,android/R$attr.autoCompleteTextViewStyle,16842859,,,, +I,26,android/R$attr.autofilledHighlight,16844136,,,, +I,26,android/R$attr.autofillHints,16844118,,,, +I,0,android/R$attr.autoLink,16842928,,,, +I,19,android/R$attr.autoMirrored,16843754,,,, +I,21,android/R$attr.autoRemoveFromRecents,16843847,,,, +I,30,android/R$attr.autoRevokePermissions,16844307,,,, +I,26,android/R$attr.autoSizeMaxTextSize,16844102,,,, +I,26,android/R$attr.autoSizeMinTextSize,16844088,,,, +I,26,android/R$attr.autoSizePresetSizes,16844087,,,, +I,26,android/R$attr.autoSizeStepGranularity,16844086,,,, +I,26,android/R$attr.autoSizeTextType,16844085,,,, +I,0,android/R$attr.autoStart,16843445,,,, +I,0,android/R$attr.autoText,16843114,,,, +I,0,android/R$attr.autoUrlDetect,16843404,,,, +I,23,android/R$attr.autoVerify,16844014,,,, +I,0,android/R$attr.background,16842964,,,, +I,0,android/R$attr.backgroundDimAmount,16842802,,,, +I,0,android/R$attr.backgroundDimEnabled,16843295,,,, +I,15,android/R$attr.backgroundSplit,16843659,,,, +I,15,android/R$attr.backgroundStacked,16843658,,,, +I,21,android/R$attr.backgroundTint,16843883,,,, +I,21,android/R$attr.backgroundTintMode,16843884,,,, +I,0,android/R$attr.backupAgent,16843391,,,, +I,24,android/R$attr.backupInForeground,16844058,,,, +I,21,android/R$attr.banner,16843762,,,, +I,15,android/R$attr.baseline,16843548,,,, +I,0,android/R$attr.baselineAlignBottom,16843042,,,, +I,0,android/R$attr.baselineAligned,16843046,,,, +I,0,android/R$attr.baselineAlignedChildIndex,16843047,,,, +I,24,android/R$attr.bitmap,16844054,,,, +I,15,android/R$attr.borderlessButtonStyle,16843563,,,, +I,0,android/R$attr.bottom,16843184,,,, +I,0,android/R$attr.bottomBright,16842957,,,, +I,0,android/R$attr.bottomDark,16842953,,,, +I,0,android/R$attr.bottomLeftRadius,16843179,,,, +I,0,android/R$attr.bottomMedium,16842958,,,, +I,0,android/R$attr.bottomOffset,16843351,,,, +I,0,android/R$attr.bottomRightRadius,16843180,,,, +I,15,android/R$attr.breadCrumbShortTitle,16843524,,,, +I,15,android/R$attr.breadCrumbTitle,16843523,,,, +I,23,android/R$attr.breakStrategy,16843997,,,, +I,0,android/R$attr.bufferType,16843086,,,, +I,0,android/R$attr.button,16843015,,,, +I,15,android/R$attr.buttonBarButtonStyle,16843567,,,, +I,21,android/R$attr.buttonBarNegativeButtonStyle,16843915,,,, +I,21,android/R$attr.buttonBarNeutralButtonStyle,16843914,,,, +I,21,android/R$attr.buttonBarPositiveButtonStyle,16843913,,,, +I,15,android/R$attr.buttonBarStyle,16843566,,,, +I,28,android/R$attr.buttonCornerRadius,16844149,,,, +I,24,android/R$attr.buttonGravity,16844030,,,, +I,0,android/R$attr.buttonStyle,16842824,,,, +I,0,android/R$attr.buttonStyleInset,16842826,,,, +I,0,android/R$attr.buttonStyleSmall,16842825,,,, +I,0,android/R$attr.buttonStyleToggle,16842827,,,, +I,21,android/R$attr.buttonTint,16843887,,,, +I,21,android/R$attr.buttonTintMode,16843888,,,, +I,0,android/R$attr.cacheColorHint,16843009,,,, +I,21,android/R$attr.calendarTextColor,16843931,,,, +I,15,android/R$attr.calendarViewShown,16843596,,,, +I,15,android/R$attr.calendarViewStyle,16843613,,,, +I,24,android/R$attr.canControlMagnification,16844039,,,, +I,0,android/R$attr.candidatesTextStyleSpans,16843312,,,, +I,31,android/R$attr.canPauseRecording,16844314,,,, +I,24,android/R$attr.canPerformGestures,16844045,,,, +I,24,android/R$attr.canRecord,16844060,,,, +I,18,android/R$attr.canRequestEnhancedWebAccessibility,16843736,,,, +I,18,android/R$attr.canRequestFilterKeyEvents,16843737,,,, +I,26,android/R$attr.canRequestFingerprintGestures,16844109,,,, +I,18,android/R$attr.canRequestTouchExplorationMode,16843735,,,, +I,15,android/R$attr.canRetrieveWindowContent,16843653,,,, +I,30,android/R$attr.canTakeScreenshot,16844304,,,, +I,28,android/R$attr.cantSaveState,16844142,,,, +I,0,android/R$attr.capitalize,16843113,,,, +I,19,android/R$attr.category,16843752,,,, +I,0,android/R$attr.centerBright,16842956,,,, +I,0,android/R$attr.centerColor,16843275,,,, +I,0,android/R$attr.centerDark,16842952,,,, +I,0,android/R$attr.centerMedium,16842959,,,, +I,0,android/R$attr.centerX,16843170,,,, +I,0,android/R$attr.centerY,16843171,,,, +I,26,android/R$attr.certDigest,16844104,,,, +I,0,android/R$attr.checkable,16843237,,,, +I,0,android/R$attr.checkableBehavior,16843232,,,, +I,0,android/R$attr.checkBoxPreferenceStyle,16842895,,,, +I,0,android/R$attr.checkboxStyle,16842860,,,, +I,0,android/R$attr.checked,16843014,,,, +I,0,android/R$attr.checkedButton,16843080,,,, +I,17,android/R$attr.checkedTextViewStyle,16843720,,,, +I,0,android/R$attr.checkMark,16843016,,,, +I,21,android/R$attr.checkMarkTint,16843943,,,, +I,21,android/R$attr.checkMarkTintMode,16843944,,,, +I,0,android/R$attr.childDivider,16843025,,,, +I,0,android/R$attr.childIndicator,16843020,,,, +I,18,android/R$attr.childIndicatorEnd,16843732,,,, +I,0,android/R$attr.childIndicatorLeft,16843023,,,, +I,0,android/R$attr.childIndicatorRight,16843024,,,, +I,18,android/R$attr.childIndicatorStart,16843731,,,, +I,0,android/R$attr.choiceMode,16843051,,,, +I,27,android/R$attr.classLoader,16844139,,,, +I,0,android/R$attr.clearTaskOnLaunch,16842773,,,, +I,0,android/R$attr.clickable,16842981,,,, +I,0,android/R$attr.clipChildren,16842986,,,, +I,0,android/R$attr.clipOrientation,16843274,,,, +I,31,android/R$attr.clipToOutline,16844328,,,, +I,0,android/R$attr.clipToPadding,16842987,,,, +I,21,android/R$attr.closeIcon,16843905,,,, +I,0,android/R$attr.codes,16843330,,,, +I,0,android/R$attr.collapseColumns,16843083,,,, +I,22,android/R$attr.collapseContentDescription,16843984,,,, +I,24,android/R$attr.collapseIcon,16844031,,,, +I,0,android/R$attr.color,16843173,,,, +I,21,android/R$attr.colorAccent,16843829,,,, +I,15,android/R$attr.colorActivatedHighlight,16843664,,,, +I,0,android/R$attr.colorBackground,16842801,,,, +I,0,android/R$attr.colorBackgroundCacheHint,16843435,,,, +I,23,android/R$attr.colorBackgroundFloating,16844002,,,, +I,21,android/R$attr.colorButtonNormal,16843819,,,, +I,21,android/R$attr.colorControlActivated,16843818,,,, +I,21,android/R$attr.colorControlHighlight,16843820,,,, +I,21,android/R$attr.colorControlNormal,16843817,,,, +I,21,android/R$attr.colorEdgeEffect,16843982,,,, +I,26,android/R$attr.colorError,16844099,,,, +I,15,android/R$attr.colorFocusedHighlight,16843663,,,, +I,0,android/R$attr.colorForeground,16842800,,,, +I,0,android/R$attr.colorForegroundInverse,16843270,,,, +I,15,android/R$attr.colorLongPressedHighlight,16843662,,,, +I,26,android/R$attr.colorMode,16844106,,,, +I,15,android/R$attr.colorMultiSelectHighlight,16843665,,,, +I,15,android/R$attr.colorPressedHighlight,16843661,,,, +I,21,android/R$attr.colorPrimary,16843827,,,, +I,21,android/R$attr.colorPrimaryDark,16843828,,,, +I,25,android/R$attr.colorSecondary,16844080,,,, +I,15,android/R$attr.columnCount,16843639,,,, +I,0,android/R$attr.columnDelay,16843215,,,, +I,15,android/R$attr.columnOrderPreserved,16843640,,,, +I,0,android/R$attr.columnWidth,16843031,,,, +I,21,android/R$attr.commitIcon,16843909,,,, +I,15,android/R$attr.compatibleWidthLimitDp,16843621,,,, +I,0,android/R$attr.completionHint,16843122,,,, +I,0,android/R$attr.completionHintView,16843123,,,, +I,0,android/R$attr.completionThreshold,16843124,,,, +I,0,android/R$attr.configChanges,16842783,,,, +I,0,android/R$attr.configure,16843357,,,, +I,0,android/R$attr.constantSize,16843158,,,, +I,0,android/R$attr.content,16843355,,,, +I,21,android/R$attr.contentAgeHint,16843961,,,, +I,0,android/R$attr.contentAuthority,16843408,,,, +I,0,android/R$attr.contentDescription,16843379,,,, +I,21,android/R$attr.contentInsetEnd,16843860,,,, +I,24,android/R$attr.contentInsetEndWithActions,16844067,,,, +I,21,android/R$attr.contentInsetLeft,16843861,,,, +I,21,android/R$attr.contentInsetRight,16843862,,,, +I,21,android/R$attr.contentInsetStart,16843859,,,, +I,24,android/R$attr.contentInsetStartWithNavigation,16844066,,,, +I,23,android/R$attr.contextClickable,16844007,,,, +I,25,android/R$attr.contextDescription,16844078,,,, +I,24,android/R$attr.contextPopupMenuStyle,16844033,,,, +I,25,android/R$attr.contextUri,16844077,,,, +I,21,android/R$attr.controlX1,16843772,,,, +I,21,android/R$attr.controlX2,16843774,,,, +I,21,android/R$attr.controlY1,16843773,,,, +I,21,android/R$attr.controlY2,16843775,,,, +I,24,android/R$attr.countDown,16844059,,,, +I,21,android/R$attr.country,16843962,,,, +I,0,android/R$attr.cropToPadding,16843043,,,, +I,30,android/R$attr.crossProfile,16844303,,,, +I,0,android/R$attr.cursorVisible,16843090,,,, +I,15,android/R$attr.customNavigationLayout,16843474,,,, +I,15,android/R$attr.customTokens,16843579,,,, +I,0,android/R$attr.cycles,16843220,,,, +I,0,android/R$attr.dashGap,16843175,,,, +I,0,android/R$attr.dashWidth,16843174,,,, +I,0,android/R$attr.data,16842798,,,, +I,31,android/R$attr.dataExtractionRules,16844350,,,, +I,21,android/R$attr.datePickerDialogTheme,16843948,,,, +I,21,android/R$attr.datePickerMode,16843955,,,, +I,15,android/R$attr.datePickerStyle,16843612,,,, +I,15,android/R$attr.dateTextAppearance,16843593,,,, +I,21,android/R$attr.dayOfWeekBackground,16843924,,,, +I,21,android/R$attr.dayOfWeekTextAppearance,16843925,,,, +I,0,android/R$attr.debuggable,16842767,,,, +I,26,android/R$attr.defaultFocusHighlightEnabled,16844130,,,, +I,24,android/R$attr.defaultHeight,16844021,,,, +I,24,android/R$attr.defaultToDeviceProtectedStorage,16844036,,,, +I,0,android/R$attr.defaultValue,16843245,,,, +I,24,android/R$attr.defaultWidth,16844020,,,, +I,0,android/R$attr.delay,16843212,,,, +I,0,android/R$attr.dependency,16843244,,,, +I,0,android/R$attr.descendantFocusability,16842993,,,, +I,0,android/R$attr.description,16842784,,,, +I,0,android/R$attr.detachWallpaper,16843430,,,, +I,0,android/R$attr.detailColumn,16843427,,,, +I,15,android/R$attr.detailsElementBackground,16843598,,,, +I,0,android/R$attr.detailSocialSummary,16843428,,,, +I,0,android/R$attr.dial,16843010,,,, +I,28,android/R$attr.dialogCornerRadius,16844145,,,, +I,0,android/R$attr.dialogIcon,16843252,,,, +I,0,android/R$attr.dialogLayout,16843255,,,, +I,0,android/R$attr.dialogMessage,16843251,,,, +I,0,android/R$attr.dialogPreferenceStyle,16842897,,,, +I,22,android/R$attr.dialogPreferredPadding,16843987,,,, +I,15,android/R$attr.dialogTheme,16843528,,,, +I,0,android/R$attr.dialogTitle,16843250,,,, +I,31,android/R$attr.dialTint,16844342,,,, +I,31,android/R$attr.dialTintMode,16844343,,,, +I,0,android/R$attr.digits,16843110,,,, +I,24,android/R$attr.directBootAware,16844037,,,, +I,0,android/R$attr.direction,16843217,,,, +I,15,android/R$attr.directionDescriptions,16843681,,,, +I,0,android/R$attr.directionPriority,16843218,,,, +I,0,android/R$attr.disabledAlpha,16842803,,,, +I,0,android/R$attr.disableDependentsState,16843249,,,, +I,15,android/R$attr.displayOptions,16843472,,,, +I,0,android/R$attr.dither,16843036,,,, +I,0,android/R$attr.divider,16843049,,,, +I,0,android/R$attr.dividerHeight,16843050,,,, +I,15,android/R$attr.dividerHorizontal,16843564,,,, +I,15,android/R$attr.dividerPadding,16843562,,,, +I,15,android/R$attr.dividerVertical,16843530,,,, +I,21,android/R$attr.documentLaunchMode,16843845,,,, +I,0,android/R$attr.drawable,16843161,,,, +I,0,android/R$attr.drawableBottom,16843118,,,, +I,15,android/R$attr.drawableEnd,16843667,,,, +I,0,android/R$attr.drawableLeft,16843119,,,, +I,0,android/R$attr.drawablePadding,16843121,,,, +I,0,android/R$attr.drawableRight,16843120,,,, +I,15,android/R$attr.drawableStart,16843666,,,, +I,23,android/R$attr.drawableTint,16843990,,,, +I,23,android/R$attr.drawableTintMode,16843991,,,, +I,0,android/R$attr.drawableTop,16843117,,,, +I,0,android/R$attr.drawingCacheQuality,16842984,,,, +I,0,android/R$attr.drawSelectorOnTop,16843004,,,, +I,0,android/R$attr.dropDownAnchor,16843363,,,, +I,0,android/R$attr.dropDownHeight,16843395,,,, +I,0,android/R$attr.dropDownHintAppearance,16842888,,,, +I,0,android/R$attr.dropDownHorizontalOffset,16843436,,,, +I,0,android/R$attr.dropDownItemStyle,16842886,,,, +I,0,android/R$attr.dropDownListViewStyle,16842861,,,, +I,0,android/R$attr.dropDownSelector,16843125,,,, +I,15,android/R$attr.dropDownSpinnerStyle,16843478,,,, +I,0,android/R$attr.dropDownVerticalOffset,16843437,,,, +I,0,android/R$attr.dropDownWidth,16843362,,,, +I,0,android/R$attr.duplicateParentState,16842985,,,, +I,0,android/R$attr.duration,16843160,,,, +I,0,android/R$attr.editable,16843115,,,, +I,0,android/R$attr.editorExtras,16843300,,,, +I,15,android/R$attr.editTextBackground,16843602,,,, +I,15,android/R$attr.editTextColor,16843601,,,, +I,0,android/R$attr.editTextPreferenceStyle,16842898,,,, +I,0,android/R$attr.editTextStyle,16842862,,,, +I,31,android/R$attr.effectColor,16844361,,,, +I,21,android/R$attr.elegantTextHeight,16843869,,,, +I,21,android/R$attr.elevation,16843840,,,, +I,0,android/R$attr.ellipsize,16842923,,,, +I,0,android/R$attr.ems,16843096,,,, +I,0,android/R$attr.enabled,16842766,,,, +I,24,android/R$attr.enableVrMode,16844069,,,, +I,23,android/R$attr.end,16843996,,,, +I,0,android/R$attr.endColor,16843166,,,, +I,24,android/R$attr.endX,16844050,,,, +I,24,android/R$attr.endY,16844051,,,, +I,0,android/R$attr.endYear,16843133,,,, +I,29,android/R$attr.enforceNavigationBarContrast,16844293,,,, +I,29,android/R$attr.enforceStatusBarContrast,16844292,,,, +I,15,android/R$attr.enterFadeDuration,16843532,,,, +I,0,android/R$attr.entries,16842930,,,, +I,0,android/R$attr.entryValues,16843256,,,, +I,0,android/R$attr.eventsInterceptionEnabled,16843389,,,, +I,21,android/R$attr.excludeClass,16843842,,,, +I,0,android/R$attr.excludeFromRecents,16842775,,,, +I,21,android/R$attr.excludeId,16843841,,,, +I,21,android/R$attr.excludeName,16843854,,,, +I,15,android/R$attr.exitFadeDuration,16843533,,,, +I,0,android/R$attr.expandableListPreferredChildIndicatorLeft,16842834,,,, +I,0,android/R$attr.expandableListPreferredChildIndicatorRight,16842835,,,, +I,0,android/R$attr.expandableListPreferredChildPaddingLeft,16842831,,,, +I,0,android/R$attr.expandableListPreferredItemIndicatorLeft,16842832,,,, +I,0,android/R$attr.expandableListPreferredItemIndicatorRight,16842833,,,, +I,0,android/R$attr.expandableListPreferredItemPaddingLeft,16842830,,,, +I,0,android/R$attr.expandableListViewStyle,16842863,,,, +I,0,android/R$attr.expandableListViewWhiteStyle,16843446,,,, +I,0,android/R$attr.exported,16842768,,,, +I,24,android/R$attr.externalService,16844046,,,, +I,23,android/R$attr.extractNativeLibs,16844010,,,, +I,0,android/R$attr.extraTension,16843371,,,, +I,0,android/R$attr.factor,16843219,,,, +I,0,android/R$attr.fadeDuration,16843384,,,, +I,0,android/R$attr.fadeEnabled,16843390,,,, +I,0,android/R$attr.fadeOffset,16843383,,,, +I,0,android/R$attr.fadeScrollbars,16843434,,,, +I,0,android/R$attr.fadingEdge,16842975,,,, +I,0,android/R$attr.fadingEdgeLength,16842976,,,, +I,19,android/R$attr.fadingMode,16843745,,,, +I,28,android/R$attr.fallbackLineSpacing,16844155,,,, +I,15,android/R$attr.fastScrollAlwaysVisible,16843573,,,, +I,0,android/R$attr.fastScrollEnabled,16843302,,,, +I,15,android/R$attr.fastScrollOverlayPosition,16843578,,,, +I,15,android/R$attr.fastScrollPreviewBackgroundLeft,16843575,,,, +I,15,android/R$attr.fastScrollPreviewBackgroundRight,16843576,,,, +I,21,android/R$attr.fastScrollStyle,16843767,,,, +I,15,android/R$attr.fastScrollTextColor,16843609,,,, +I,15,android/R$attr.fastScrollThumbDrawable,16843574,,,, +I,15,android/R$attr.fastScrollTrackDrawable,16843577,,,, +I,0,android/R$attr.fillAfter,16843197,,,, +I,21,android/R$attr.fillAlpha,16843980,,,, +I,0,android/R$attr.fillBefore,16843196,,,, +I,21,android/R$attr.fillColor,16843780,,,, +I,0,android/R$attr.fillEnabled,16843343,,,, +I,24,android/R$attr.fillType,16844062,,,, +I,0,android/R$attr.fillViewport,16843130,,,, +I,0,android/R$attr.filter,16843035,,,, +I,0,android/R$attr.filterTouchesWhenObscured,16843460,,,, +I,23,android/R$attr.fingerprintAuthDrawable,16844008,,,, +I,0,android/R$attr.finishOnCloseSystemDialogs,16843431,,,, +I,0,android/R$attr.finishOnTaskLaunch,16842772,,,, +I,28,android/R$attr.firstBaselineToTopHeight,16844157,,,, +I,15,android/R$attr.firstDayOfWeek,16843581,,,, +I,0,android/R$attr.fitsSystemWindows,16842973,,,, +I,0,android/R$attr.flipInterval,16843129,,,, +I,0,android/R$attr.focusable,16842970,,,, +I,0,android/R$attr.focusableInTouchMode,16842971,,,, +I,26,android/R$attr.focusedByDefault,16844100,,,, +I,15,android/R$attr.focusedMonthDateColor,16843587,,,, +I,26,android/R$attr.font,16844082,,,, +I,16,android/R$attr.fontFamily,16843692,,,, +I,21,android/R$attr.fontFeatureSettings,16843959,,,, +I,26,android/R$attr.fontProviderAuthority,16844112,,,, +I,26,android/R$attr.fontProviderCerts,16844125,,,, +I,26,android/R$attr.fontProviderPackage,16844119,,,, +I,26,android/R$attr.fontProviderQuery,16844113,,,, +I,31,android/R$attr.fontProviderSystemFontFamily,16844322,,,, +I,26,android/R$attr.fontStyle,16844095,,,, +I,28,android/R$attr.fontVariationSettings,16844144,,,, +I,26,android/R$attr.fontWeight,16844083,,,, +I,0,android/R$attr.footerDividersEnabled,16843311,,,, +I,29,android/R$attr.forceDarkAllowed,16844172,,,, +I,24,android/R$attr.forceHasOverlappingRendering,16844065,,,, +I,30,android/R$attr.forceQueryable,16844296,,,, +I,29,android/R$attr.forceUriPermissions,16844191,,,, +I,0,android/R$attr.foreground,16843017,,,, +I,0,android/R$attr.foregroundGravity,16843264,,,, +I,29,android/R$attr.foregroundServiceType,16844185,,,, +I,21,android/R$attr.foregroundTint,16843885,,,, +I,21,android/R$attr.foregroundTintMode,16843886,,,, +I,0,android/R$attr.format,16843013,,,, +I,17,android/R$attr.format12Hour,16843722,,,, +I,17,android/R$attr.format24Hour,16843723,,,, +I,23,android/R$attr.fraction,16843992,,,, +I,15,android/R$attr.fragment,16843491,,,, +I,21,android/R$attr.fragmentAllowEnterTransitionOverlap,16843976,,,, +I,21,android/R$attr.fragmentAllowReturnTransitionOverlap,16843977,,,, +I,15,android/R$attr.fragmentCloseEnterAnimation,16843495,,,, +I,15,android/R$attr.fragmentCloseExitAnimation,16843496,,,, +I,21,android/R$attr.fragmentEnterTransition,16843971,,,, +I,21,android/R$attr.fragmentExitTransition,16843970,,,, +I,15,android/R$attr.fragmentFadeEnterAnimation,16843497,,,, +I,15,android/R$attr.fragmentFadeExitAnimation,16843498,,,, +I,15,android/R$attr.fragmentOpenEnterAnimation,16843493,,,, +I,15,android/R$attr.fragmentOpenExitAnimation,16843494,,,, +I,21,android/R$attr.fragmentReenterTransition,16843975,,,, +I,21,android/R$attr.fragmentReturnTransition,16843973,,,, +I,21,android/R$attr.fragmentSharedElementEnterTransition,16843972,,,, +I,21,android/R$attr.fragmentSharedElementReturnTransition,16843974,,,, +I,0,android/R$attr.freezesText,16843116,,,, +I,0,android/R$attr.fromAlpha,16843210,,,, +I,0,android/R$attr.fromDegrees,16843187,,,, +I,21,android/R$attr.fromId,16843850,,,, +I,19,android/R$attr.fromScene,16843741,,,, +I,0,android/R$attr.fromXDelta,16843206,,,, +I,0,android/R$attr.fromXScale,16843202,,,, +I,0,android/R$attr.fromYDelta,16843208,,,, +I,0,android/R$attr.fromYScale,16843204,,,, +I,23,android/R$attr.fullBackupContent,16844011,,,, +I,21,android/R$attr.fullBackupOnly,16843891,,,, +I,0,android/R$attr.fullBright,16842954,,,, +I,0,android/R$attr.fullDark,16842950,,,, +I,0,android/R$attr.functionalTest,16842787,,,, +I,0,android/R$attr.galleryItemBackground,16842828,,,, +I,0,android/R$attr.galleryStyle,16842864,,,, +I,0,android/R$attr.gestureColor,16843381,,,, +I,0,android/R$attr.gestureStrokeAngleThreshold,16843388,,,, +I,0,android/R$attr.gestureStrokeLengthThreshold,16843386,,,, +I,0,android/R$attr.gestureStrokeSquarenessThreshold,16843387,,,, +I,0,android/R$attr.gestureStrokeType,16843385,,,, +I,0,android/R$attr.gestureStrokeWidth,16843380,,,, +I,0,android/R$attr.glEsVersion,16843393,,,, +I,21,android/R$attr.goIcon,16843906,,,, +I,0,android/R$attr.gradientRadius,16843172,,,, +I,0,android/R$attr.grantUriPermissions,16842779,,,, +I,0,android/R$attr.gravity,16842927,,,, +I,0,android/R$attr.gridViewStyle,16842865,,,, +I,0,android/R$attr.groupIndicator,16843019,,,, +I,30,android/R$attr.gwpAsanMode,16844312,,,, +I,0,android/R$attr.hand_hour,16843011,,,, +I,31,android/R$attr.hand_hourTint,16844344,,,, +I,31,android/R$attr.hand_hourTintMode,16844345,,,, +I,0,android/R$attr.hand_minute,16843012,,,, +I,31,android/R$attr.hand_minuteTint,16844346,,,, +I,31,android/R$attr.hand_minuteTintMode,16844347,,,, +I,31,android/R$attr.hand_second,16844323,,,, +I,31,android/R$attr.hand_secondTint,16844348,,,, +I,31,android/R$attr.hand_secondTintMode,16844349,,,, +I,0,android/R$attr.handle,16843354,,,, +I,0,android/R$attr.handleProfiling,16842786,,,, +I,0,android/R$attr.hapticFeedbackEnabled,16843358,,,, +I,15,android/R$attr.hardwareAccelerated,16843475,,,, +I,0,android/R$attr.hasCode,16842764,,,, +I,29,android/R$attr.hasFragileUserData,16844186,,,, +I,21,android/R$attr.headerAmPmTextAppearance,16843936,,,, +I,0,android/R$attr.headerBackground,16843055,,,, +I,21,android/R$attr.headerDayOfMonthTextAppearance,16843927,,,, +I,0,android/R$attr.headerDividersEnabled,16843310,,,, +I,21,android/R$attr.headerMonthTextAppearance,16843926,,,, +I,21,android/R$attr.headerTimeTextAppearance,16843935,,,, +I,21,android/R$attr.headerYearTextAppearance,16843928,,,, +I,0,android/R$attr.height,16843093,,,, +I,21,android/R$attr.hideOnContentScroll,16843843,,,, +I,0,android/R$attr.hint,16843088,,,, +I,15,android/R$attr.homeAsUpIndicator,16843531,,,, +I,15,android/R$attr.homeLayout,16843549,,,, +I,0,android/R$attr.horizontalDivider,16843053,,,, +I,0,android/R$attr.horizontalGap,16843327,,,, +I,15,android/R$attr.horizontalScrollViewStyle,16843603,,,, +I,0,android/R$attr.horizontalSpacing,16843028,,,, +I,0,android/R$attr.host,16842792,,,, +I,24,android/R$attr.hotSpotX,16844055,,,, +I,24,android/R$attr.hotSpotY,16844056,,,, +I,30,android/R$attr.htmlDescription,16844299,,,, +I,23,android/R$attr.hyphenationFrequency,16843998,,,, +I,0,android/R$attr.icon,16842754,,,, +I,15,android/R$attr.iconifiedByDefault,16843514,,,, +I,0,android/R$attr.iconPreview,16843337,,,, +I,26,android/R$attr.iconSpaceReserved,16844129,,,, +I,26,android/R$attr.iconTint,16844126,,,, +I,26,android/R$attr.iconTintMode,16844127,,,, +I,0,android/R$attr.id,16842960,,,, +I,29,android/R$attr.identifier,16844294,,,, +I,0,android/R$attr.ignoreGravity,16843263,,,, +I,0,android/R$attr.imageButtonStyle,16842866,,,, +I,0,android/R$attr.imageWellStyle,16842867,,,, +I,0,android/R$attr.imeActionId,16843366,,,, +I,0,android/R$attr.imeActionLabel,16843365,,,, +I,0,android/R$attr.imeExtractEnterAnimation,16843368,,,, +I,0,android/R$attr.imeExtractExitAnimation,16843369,,,, +I,0,android/R$attr.imeFullscreenBackground,16843308,,,, +I,0,android/R$attr.imeOptions,16843364,,,, +I,15,android/R$attr.imeSubtypeExtraValue,16843502,,,, +I,15,android/R$attr.imeSubtypeLocale,16843500,,,, +I,15,android/R$attr.imeSubtypeMode,16843501,,,, +I,15,android/R$attr.immersive,16843456,,,, +I,16,android/R$attr.importantForAccessibility,16843690,,,, +I,26,android/R$attr.importantForAutofill,16844120,,,, +I,30,android/R$attr.importantForContentCapture,16844295,,,, +I,0,android/R$attr.inAnimation,16843127,,,, +I,0,android/R$attr.includeFontPadding,16843103,,,, +I,0,android/R$attr.includeInGlobalSearch,16843374,,,, +I,0,android/R$attr.indeterminate,16843065,,,, +I,0,android/R$attr.indeterminateBehavior,16843070,,,, +I,0,android/R$attr.indeterminateDrawable,16843067,,,, +I,0,android/R$attr.indeterminateDuration,16843069,,,, +I,0,android/R$attr.indeterminateOnly,16843066,,,, +I,15,android/R$attr.indeterminateProgressStyle,16843544,,,, +I,21,android/R$attr.indeterminateTint,16843881,,,, +I,21,android/R$attr.indeterminateTintMode,16843882,,,, +I,18,android/R$attr.indicatorEnd,16843730,,,, +I,0,android/R$attr.indicatorLeft,16843021,,,, +I,0,android/R$attr.indicatorRight,16843022,,,, +I,18,android/R$attr.indicatorStart,16843729,,,, +I,0,android/R$attr.inflatedId,16842995,,,, +I,29,android/R$attr.inheritShowWhenLocked,16844188,,,, +I,17,android/R$attr.initialKeyguardLayout,16843714,,,, +I,0,android/R$attr.initialLayout,16843345,,,, +I,0,android/R$attr.initOrder,16842778,,,, +I,0,android/R$attr.innerRadius,16843359,,,, +I,0,android/R$attr.innerRadiusRatio,16843163,,,, +I,0,android/R$attr.inputMethod,16843112,,,, +I,0,android/R$attr.inputType,16843296,,,, +I,21,android/R$attr.inset,16843957,,,, +I,0,android/R$attr.insetBottom,16843194,,,, +I,0,android/R$attr.insetLeft,16843191,,,, +I,0,android/R$attr.insetRight,16843192,,,, +I,0,android/R$attr.insetTop,16843193,,,, +I,0,android/R$attr.installLocation,16843447,,,, +I,29,android/R$attr.interactiveUiTimeout,16844181,,,, +I,0,android/R$attr.interpolator,16843073,,,, +I,31,android/R$attr.isAccessibilityTool,16844353,,,, +I,15,android/R$attr.isAlwaysSyncable,16843571,,,, +I,19,android/R$attr.isAsciiCapable,16843753,,,, +I,15,android/R$attr.isAuxiliary,16843647,,,, +I,0,android/R$attr.isDefault,16843297,,,, +I,26,android/R$attr.isFeatureSplit,16844123,,,, +I,21,android/R$attr.isGame,16843764,,,, +I,0,android/R$attr.isIndicator,16843079,,,, +I,29,android/R$attr.isLightTheme,16844176,,,, +I,0,android/R$attr.isModifier,16843334,,,, +I,16,android/R$attr.isolatedProcess,16843689,,,, +I,26,android/R$attr.isolatedSplits,16844107,,,, +I,0,android/R$attr.isRepeatable,16843336,,,, +I,0,android/R$attr.isScrollContainer,16843342,,,, +I,29,android/R$attr.isSplitRequired,16844177,,,, +I,26,android/R$attr.isStatic,16844122,,,, +I,0,android/R$attr.isSticky,16843335,,,, +I,0,android/R$attr.itemBackground,16843056,,,, +I,0,android/R$attr.itemIconDisabledAlpha,16843057,,,, +I,15,android/R$attr.itemPadding,16843565,,,, +I,0,android/R$attr.itemTextAppearance,16843052,,,, +I,26,android/R$attr.justificationMode,16844135,,,, +I,0,android/R$attr.keepScreenOn,16843286,,,, +I,0,android/R$attr.key,16843240,,,, +I,0,android/R$attr.keyBackground,16843315,,,, +I,16,android/R$attr.keyboardLayout,16843691,,,, +I,0,android/R$attr.keyboardMode,16843341,,,, +I,26,android/R$attr.keyboardNavigationCluster,16844096,,,, +I,0,android/R$attr.keycode,16842949,,,, +I,0,android/R$attr.keyEdgeFlags,16843333,,,, +I,0,android/R$attr.keyHeight,16843326,,,, +I,0,android/R$attr.keyIcon,16843340,,,, +I,0,android/R$attr.keyLabel,16843339,,,, +I,0,android/R$attr.keyOutputText,16843338,,,, +I,0,android/R$attr.keyPreviewHeight,16843321,,,, +I,0,android/R$attr.keyPreviewLayout,16843319,,,, +I,0,android/R$attr.keyPreviewOffset,16843320,,,, +I,19,android/R$attr.keySet,16843739,,,, +I,0,android/R$attr.keyTextColor,16843318,,,, +I,0,android/R$attr.keyTextSize,16843316,,,, +I,0,android/R$attr.keyWidth,16843325,,,, +I,0,android/R$attr.killAfterRestore,16843420,,,, +I,31,android/R$attr.knownCerts,16844330,,,, +I,0,android/R$attr.label,16842753,,,, +I,17,android/R$attr.labelFor,16843718,,,, +I,0,android/R$attr.labelTextSize,16843317,,,, +I,24,android/R$attr.languageTag,16844040,,,, +I,15,android/R$attr.largeHeap,16843610,,,, +I,0,android/R$attr.largeScreens,16843398,,,, +I,15,android/R$attr.largestWidthLimitDp,16843622,,,, +I,28,android/R$attr.lastBaselineToBottomHeight,16844158,,,, +I,0,android/R$attr.launchMode,16842781,,,, +I,21,android/R$attr.launchTaskBehindSourceAnimation,16843922,,,, +I,21,android/R$attr.launchTaskBehindTargetAnimation,16843921,,,, +I,15,android/R$attr.layerType,16843604,,,, +I,0,android/R$attr.layout,16842994,,,, +I,0,android/R$attr.layout_above,16843140,,,, +I,0,android/R$attr.layout_alignBaseline,16843142,,,, +I,0,android/R$attr.layout_alignBottom,16843146,,,, +I,17,android/R$attr.layout_alignEnd,16843706,,,, +I,0,android/R$attr.layout_alignLeft,16843143,,,, +I,0,android/R$attr.layout_alignParentBottom,16843150,,,, +I,17,android/R$attr.layout_alignParentEnd,16843708,,,, +I,0,android/R$attr.layout_alignParentLeft,16843147,,,, +I,0,android/R$attr.layout_alignParentRight,16843149,,,, +I,17,android/R$attr.layout_alignParentStart,16843707,,,, +I,0,android/R$attr.layout_alignParentTop,16843148,,,, +I,0,android/R$attr.layout_alignRight,16843145,,,, +I,17,android/R$attr.layout_alignStart,16843705,,,, +I,0,android/R$attr.layout_alignTop,16843144,,,, +I,0,android/R$attr.layout_alignWithParentIfMissing,16843154,,,, +I,0,android/R$attr.layout_below,16843141,,,, +I,0,android/R$attr.layout_centerHorizontal,16843152,,,, +I,0,android/R$attr.layout_centerInParent,16843151,,,, +I,0,android/R$attr.layout_centerVertical,16843153,,,, +I,0,android/R$attr.layout_column,16843084,,,, +I,15,android/R$attr.layout_columnSpan,16843645,,,, +I,21,android/R$attr.layout_columnWeight,16843865,,,, +I,0,android/R$attr.layout_gravity,16842931,,,, +I,0,android/R$attr.layout_height,16842997,,,, +I,0,android/R$attr.layout_margin,16842998,,,, +I,0,android/R$attr.layout_marginBottom,16843002,,,, +I,17,android/R$attr.layout_marginEnd,16843702,,,, +I,26,android/R$attr.layout_marginHorizontal,16844091,,,, +I,0,android/R$attr.layout_marginLeft,16842999,,,, +I,0,android/R$attr.layout_marginRight,16843001,,,, +I,17,android/R$attr.layout_marginStart,16843701,,,, +I,0,android/R$attr.layout_marginTop,16843000,,,, +I,26,android/R$attr.layout_marginVertical,16844092,,,, +I,15,android/R$attr.layout_row,16843643,,,, +I,15,android/R$attr.layout_rowSpan,16843644,,,, +I,21,android/R$attr.layout_rowWeight,16843864,,,, +I,0,android/R$attr.layout_scale,16843155,,,, +I,0,android/R$attr.layout_span,16843085,,,, +I,17,android/R$attr.layout_toEndOf,16843704,,,, +I,0,android/R$attr.layout_toLeftOf,16843138,,,, +I,0,android/R$attr.layout_toRightOf,16843139,,,, +I,17,android/R$attr.layout_toStartOf,16843703,,,, +I,0,android/R$attr.layout_weight,16843137,,,, +I,0,android/R$attr.layout_width,16842996,,,, +I,0,android/R$attr.layout_x,16843135,,,, +I,0,android/R$attr.layout_y,16843136,,,, +I,0,android/R$attr.layoutAnimation,16842988,,,, +I,17,android/R$attr.layoutDirection,16843698,,,, +I,18,android/R$attr.layoutMode,16843738,,,, +I,0,android/R$attr.left,16843181,,,, +I,21,android/R$attr.letterSpacing,16843958,,,, +I,24,android/R$attr.level,16844032,,,, +I,28,android/R$attr.lineHeight,16844159,,,, +I,0,android/R$attr.lines,16843092,,,, +I,0,android/R$attr.lineSpacingExtra,16843287,,,, +I,0,android/R$attr.lineSpacingMultiplier,16843288,,,, +I,0,android/R$attr.linksClickable,16842929,,,, +I,15,android/R$attr.listChoiceBackgroundIndicator,16843504,,,, +I,0,android/R$attr.listChoiceIndicatorMultiple,16843290,,,, +I,0,android/R$attr.listChoiceIndicatorSingle,16843289,,,, +I,0,android/R$attr.listDivider,16843284,,,, +I,15,android/R$attr.listDividerAlertDialog,16843525,,,, +I,24,android/R$attr.listMenuViewStyle,16844018,,,, +I,15,android/R$attr.listPopupWindowStyle,16843519,,,, +I,0,android/R$attr.listPreferredItemHeight,16842829,,,, +I,15,android/R$attr.listPreferredItemHeightLarge,16843654,,,, +I,15,android/R$attr.listPreferredItemHeightSmall,16843655,,,, +I,17,android/R$attr.listPreferredItemPaddingEnd,16843710,,,, +I,15,android/R$attr.listPreferredItemPaddingLeft,16843683,,,, +I,15,android/R$attr.listPreferredItemPaddingRight,16843684,,,, +I,17,android/R$attr.listPreferredItemPaddingStart,16843709,,,, +I,0,android/R$attr.listSelector,16843003,,,, +I,0,android/R$attr.listSeparatorTextViewStyle,16843272,,,, +I,0,android/R$attr.listViewStyle,16842868,,,, +I,0,android/R$attr.listViewWhiteStyle,16842869,,,, +I,23,android/R$attr.lockTaskMode,16844013,,,, +I,15,android/R$attr.logo,16843454,,,, +I,23,android/R$attr.logoDescription,16844009,,,, +I,0,android/R$attr.longClickable,16842982,,,, +I,15,android/R$attr.loopViews,16843527,,,, +I,31,android/R$attr.lStar,16844359,,,, +I,0,android/R$attr.manageSpaceActivity,16842756,,,, +I,0,android/R$attr.mapViewStyle,16842890,,,, +I,0,android/R$attr.marqueeRepeatLimit,16843293,,,, +I,21,android/R$attr.matchOrder,16843855,,,, +I,0,android/R$attr.max,16843062,,,, +I,26,android/R$attr.maxAspectRatio,16844128,,,, +I,24,android/R$attr.maxButtonHeight,16844029,,,, +I,15,android/R$attr.maxDate,16843584,,,, +I,0,android/R$attr.maxEms,16843095,,,, +I,0,android/R$attr.maxHeight,16843040,,,, +I,21,android/R$attr.maximumAngle,16843903,,,, +I,0,android/R$attr.maxItemsPerRow,16843060,,,, +I,0,android/R$attr.maxLength,16843104,,,, +I,0,android/R$attr.maxLevel,16843186,,,, +I,0,android/R$attr.maxLines,16843091,,,, +I,28,android/R$attr.maxLongVersionCode,16844163,,,, +I,21,android/R$attr.maxRecents,16843846,,,, +I,31,android/R$attr.maxResizeHeight,16844339,,,, +I,31,android/R$attr.maxResizeWidth,16844338,,,, +I,0,android/R$attr.maxRows,16843059,,,, +I,0,android/R$attr.maxSdkVersion,16843377,,,, +I,0,android/R$attr.maxWidth,16843039,,,, +I,0,android/R$attr.measureAllChildren,16843018,,,, +I,15,android/R$attr.measureWithLargestChild,16843476,,,, +I,16,android/R$attr.mediaRouteButtonStyle,16843693,,,, +I,16,android/R$attr.mediaRouteTypes,16843694,,,, +I,31,android/R$attr.memtagMode,16844324,,,, +I,0,android/R$attr.menuCategory,16843230,,,, +I,30,android/R$attr.mimeGroup,16844311,,,, +I,0,android/R$attr.mimeType,16842790,,,, +I,26,android/R$attr.min,16844089,,,, +I,29,android/R$attr.minAspectRatio,16844187,,,, +I,15,android/R$attr.minDate,16843583,,,, +I,0,android/R$attr.minEms,16843098,,,, +I,0,android/R$attr.minHeight,16843072,,,, +I,21,android/R$attr.minimumHorizontalAngle,16843901,,,, +I,21,android/R$attr.minimumVerticalAngle,16843902,,,, +I,0,android/R$attr.minLevel,16843185,,,, +I,0,android/R$attr.minLines,16843094,,,, +I,15,android/R$attr.minResizeHeight,16843670,,,, +I,15,android/R$attr.minResizeWidth,16843669,,,, +I,0,android/R$attr.minSdkVersion,16843276,,,, +I,0,android/R$attr.minWidth,16843071,,,, +I,18,android/R$attr.mipMap,16843725,,,, +I,18,android/R$attr.mirrorForRtl,16843726,,,, +I,0,android/R$attr.mode,16843134,,,, +I,0,android/R$attr.moreIcon,16843061,,,, +I,21,android/R$attr.multiArch,16843918,,,, +I,0,android/R$attr.multiprocess,16842771,,,, +I,0,android/R$attr.name,16842755,,,, +I,31,android/R$attr.nativeHeapZeroInitialized,16844325,,,, +I,21,android/R$attr.navigationBarColor,16843858,,,, +I,27,android/R$attr.navigationBarDividerColor,16844141,,,, +I,21,android/R$attr.navigationContentDescription,16843969,,,, +I,21,android/R$attr.navigationIcon,16843968,,,, +I,15,android/R$attr.navigationMode,16843471,,,, +I,0,android/R$attr.negativeButtonText,16843254,,,, +I,21,android/R$attr.nestedScrollingEnabled,16843830,,,, +I,24,android/R$attr.networkSecurityConfig,16844071,,,, +I,26,android/R$attr.nextClusterForward,16844098,,,, +I,0,android/R$attr.nextFocusDown,16842980,,,, +I,15,android/R$attr.nextFocusForward,16843580,,,, +I,0,android/R$attr.nextFocusLeft,16842977,,,, +I,0,android/R$attr.nextFocusRight,16842978,,,, +I,0,android/R$attr.nextFocusUp,16842979,,,, +I,0,android/R$attr.noHistory,16843309,,,, +I,29,android/R$attr.nonInteractiveUiTimeout,16844175,,,, +I,0,android/R$attr.normalScreens,16843397,,,, +I,15,android/R$attr.notificationTimeout,16843651,,,, +I,24,android/R$attr.numberPickerStyle,16844068,,,, +I,21,android/R$attr.numbersBackgroundColor,16843938,,,, +I,23,android/R$attr.numbersInnerTextColor,16844001,,,, +I,21,android/R$attr.numbersSelectorColor,16843939,,,, +I,21,android/R$attr.numbersTextColor,16843937,,,, +I,0,android/R$attr.numColumns,16843032,,,, +I,0,android/R$attr.numeric,16843109,,,, +I,26,android/R$attr.numericModifiers,16844111,,,, +I,0,android/R$attr.numericShortcut,16843236,,,, +I,0,android/R$attr.numStars,16843076,,,, +I,24,android/R$attr.offset,16844052,,,, +I,0,android/R$attr.onClick,16843375,,,, +I,0,android/R$attr.oneshot,16843159,,,, +I,15,android/R$attr.opacity,16843550,,,, +I,29,android/R$attr.opticalInsetBottom,16844171,,,, +I,29,android/R$attr.opticalInsetLeft,16844168,,,, +I,29,android/R$attr.opticalInsetRight,16844170,,,, +I,29,android/R$attr.opticalInsetTop,16844169,,,, +I,0,android/R$attr.order,16843242,,,, +I,0,android/R$attr.orderInCategory,16843231,,,, +I,15,android/R$attr.ordering,16843490,,,, +I,0,android/R$attr.orderingFromXml,16843239,,,, +I,0,android/R$attr.orientation,16842948,,,, +I,0,android/R$attr.outAnimation,16843128,,,, +I,28,android/R$attr.outlineAmbientShadowColor,16844162,,,, +I,21,android/R$attr.outlineProvider,16843960,,,, +I,28,android/R$attr.outlineSpotShadowColor,16844161,,,, +I,21,android/R$attr.overlapAnchor,16843874,,,, +I,15,android/R$attr.overridesImplicitlyEnabledSubtype,16843682,,,, +I,0,android/R$attr.overScrollFooter,16843459,,,, +I,0,android/R$attr.overScrollHeader,16843458,,,, +I,0,android/R$attr.overScrollMode,16843457,,,, +I,15,android/R$attr.packageNames,16843649,,,, +I,29,android/R$attr.packageType,16844167,,,, +I,0,android/R$attr.padding,16842965,,,, +I,0,android/R$attr.paddingBottom,16842969,,,, +I,17,android/R$attr.paddingEnd,16843700,,,, +I,26,android/R$attr.paddingHorizontal,16844093,,,, +I,0,android/R$attr.paddingLeft,16842966,,,, +I,21,android/R$attr.paddingMode,16843863,,,, +I,0,android/R$attr.paddingRight,16842968,,,, +I,17,android/R$attr.paddingStart,16843699,,,, +I,0,android/R$attr.paddingTop,16842967,,,, +I,26,android/R$attr.paddingVertical,16844094,,,, +I,0,android/R$attr.panelBackground,16842846,,,, +I,0,android/R$attr.panelColorBackground,16842849,,,, +I,0,android/R$attr.panelColorForeground,16842848,,,, +I,0,android/R$attr.panelFullBackground,16842847,,,, +I,0,android/R$attr.panelTextAppearance,16842850,,,, +I,16,android/R$attr.parentActivityName,16843687,,,, +I,0,android/R$attr.password,16843100,,,, +I,31,android/R$attr.passwordsActivity,16844351,,,, +I,0,android/R$attr.path,16842794,,,, +I,31,android/R$attr.pathAdvancedPattern,16844320,,,, +I,21,android/R$attr.pathData,16843781,,,, +I,0,android/R$attr.pathPattern,16842796,,,, +I,0,android/R$attr.pathPrefix,16842795,,,, +I,31,android/R$attr.pathSuffix,16844318,,,, +I,21,android/R$attr.patternPathData,16843978,,,, +I,0,android/R$attr.permission,16842758,,,, +I,17,android/R$attr.permissionFlags,16843719,,,, +I,0,android/R$attr.permissionGroup,16842762,,,, +I,17,android/R$attr.permissionGroupFlags,16843717,,,, +I,21,android/R$attr.persistableMode,16843821,,,, +I,0,android/R$attr.persistent,16842765,,,, +I,0,android/R$attr.persistentDrawingCache,16842990,,,, +I,26,android/R$attr.persistentWhenFeatureAvailable,16844131,,,, +I,0,android/R$attr.phoneNumber,16843111,,,, +I,0,android/R$attr.pivotX,16843189,,,, +I,0,android/R$attr.pivotY,16843190,,,, +I,24,android/R$attr.pointerIcon,16844041,,,, +I,0,android/R$attr.popupAnimationStyle,16843465,,,, +I,0,android/R$attr.popupBackground,16843126,,,, +I,0,android/R$attr.popupCharacters,16843332,,,, +I,21,android/R$attr.popupElevation,16843916,,,, +I,24,android/R$attr.popupEnterTransition,16844063,,,, +I,24,android/R$attr.popupExitTransition,16844064,,,, +I,0,android/R$attr.popupKeyboard,16843331,,,, +I,0,android/R$attr.popupLayout,16843323,,,, +I,15,android/R$attr.popupMenuStyle,16843520,,,, +I,21,android/R$attr.popupTheme,16843945,,,, +I,0,android/R$attr.popupWindowStyle,16842870,,,, +I,0,android/R$attr.port,16842793,,,, +I,0,android/R$attr.positiveButtonText,16843253,,,, +I,0,android/R$attr.preferenceCategoryStyle,16842892,,,, +I,24,android/R$attr.preferenceFragmentStyle,16844038,,,, +I,0,android/R$attr.preferenceInformationStyle,16842893,,,, +I,0,android/R$attr.preferenceLayoutChild,16842900,,,, +I,0,android/R$attr.preferenceScreenStyle,16842891,,,, +I,0,android/R$attr.preferenceStyle,16842894,,,, +I,30,android/R$attr.preferMinimalPostProcessing,16844300,,,, +I,17,android/R$attr.presentationTheme,16843712,,,, +I,30,android/R$attr.preserveLegacyExternalStorage,16844310,,,, +I,15,android/R$attr.previewImage,16843482,,,, +I,31,android/R$attr.previewLayout,16844327,,,, +I,26,android/R$attr.primaryContentAlpha,16844114,,,, +I,0,android/R$attr.priority,16842780,,,, +I,0,android/R$attr.privateImeOptions,16843299,,,, +I,0,android/R$attr.process,16842769,,,, +I,0,android/R$attr.progress,16843063,,,, +I,21,android/R$attr.progressBackgroundTint,16843877,,,, +I,21,android/R$attr.progressBackgroundTintMode,16843878,,,, +I,15,android/R$attr.progressBarPadding,16843545,,,, +I,0,android/R$attr.progressBarStyle,16842871,,,, +I,0,android/R$attr.progressBarStyleHorizontal,16842872,,,, +I,0,android/R$attr.progressBarStyleInverse,16843399,,,, +I,0,android/R$attr.progressBarStyleLarge,16842874,,,, +I,0,android/R$attr.progressBarStyleLargeInverse,16843401,,,, +I,0,android/R$attr.progressBarStyleSmall,16842873,,,, +I,0,android/R$attr.progressBarStyleSmallInverse,16843400,,,, +I,0,android/R$attr.progressBarStyleSmallTitle,16843279,,,, +I,0,android/R$attr.progressDrawable,16843068,,,, +I,21,android/R$attr.progressTint,16843875,,,, +I,21,android/R$attr.progressTintMode,16843876,,,, +I,0,android/R$attr.prompt,16843131,,,, +I,15,android/R$attr.propertyName,16843489,,,, +I,21,android/R$attr.propertyXName,16843892,,,, +I,21,android/R$attr.propertyYName,16843893,,,, +I,0,android/R$attr.protectionLevel,16842761,,,, +I,15,android/R$attr.publicKey,16843686,,,, +I,0,android/R$attr.queryActionMsg,16843227,,,, +I,0,android/R$attr.queryAfterZeroResults,16843394,,,, +I,21,android/R$attr.queryBackground,16843911,,,, +I,15,android/R$attr.queryHint,16843608,,,, +I,0,android/R$attr.quickContactBadgeStyleSmallWindowLarge,16843443,,,, +I,0,android/R$attr.quickContactBadgeStyleSmallWindowMedium,16843442,,,, +I,0,android/R$attr.quickContactBadgeStyleSmallWindowSmall,16843441,,,, +I,0,android/R$attr.quickContactBadgeStyleWindowLarge,16843440,,,, +I,0,android/R$attr.quickContactBadgeStyleWindowMedium,16843439,,,, +I,0,android/R$attr.quickContactBadgeStyleWindowSmall,16843438,,,, +I,0,android/R$attr.radioButtonStyle,16842878,,,, +I,0,android/R$attr.radius,16843176,,,, +I,0,android/R$attr.rating,16843077,,,, +I,0,android/R$attr.ratingBarStyle,16842876,,,, +I,0,android/R$attr.ratingBarStyleIndicator,16843280,,,, +I,0,android/R$attr.ratingBarStyleSmall,16842877,,,, +I,0,android/R$attr.readPermission,16842759,,,, +I,21,android/R$attr.recognitionService,16843932,,,, +I,26,android/R$attr.recreateOnConfigChanges,16844103,,,, +I,26,android/R$attr.recycleEnabled,16844121,,,, +I,21,android/R$attr.relinquishTaskIdentity,16843894,,,, +I,21,android/R$attr.reparent,16843964,,,, +I,21,android/R$attr.reparentWithOverlay,16843965,,,, +I,0,android/R$attr.repeatCount,16843199,,,, +I,0,android/R$attr.repeatMode,16843200,,,, +I,0,android/R$attr.reqFiveWayNav,16843314,,,, +I,0,android/R$attr.reqHardKeyboard,16843305,,,, +I,0,android/R$attr.reqKeyboardType,16843304,,,, +I,0,android/R$attr.reqNavigation,16843306,,,, +I,0,android/R$attr.reqTouchScreen,16843303,,,, +I,29,android/R$attr.requestLegacyExternalStorage,16844291,,,, +I,31,android/R$attr.requestRawExternalStorageAccess,16844357,,,, +I,0,android/R$attr.required,16843406,,,, +I,18,android/R$attr.requiredAccountType,16843734,,,, +I,31,android/R$attr.requireDeviceScreenOn,16844317,,,, +I,19,android/R$attr.requireDeviceUnlock,16843756,,,, +I,26,android/R$attr.requiredFeature,16844116,,,, +I,18,android/R$attr.requiredForAllUsers,16843728,,,, +I,26,android/R$attr.requiredNotFeature,16844117,,,, +I,15,android/R$attr.requiresFadingEdge,16843685,,,, +I,15,android/R$attr.requiresSmallestWidthDp,16843620,,,, +I,0,android/R$attr.resizeable,16843405,,,, +I,24,android/R$attr.resizeableActivity,16844022,,,, +I,22,android/R$attr.resizeClip,16843983,,,, +I,15,android/R$attr.resizeMode,16843619,,,, +I,0,android/R$attr.resource,16842789,,,, +I,30,android/R$attr.resourcesMap,16844297,,,, +I,0,android/R$attr.restoreAnyVersion,16843450,,,, +I,0,android/R$attr.restoreNeedsApplication,16843421,,,, +I,18,android/R$attr.restrictedAccountType,16843733,,,, +I,21,android/R$attr.restrictionType,16843923,,,, +I,21,android/R$attr.resumeWhilePausing,16843954,,,, +I,21,android/R$attr.reversible,16843851,,,, +I,22,android/R$attr.revisionCode,16843989,,,, +I,0,android/R$attr.right,16843183,,,, +I,0,android/R$attr.ringtonePreferenceStyle,16842899,,,, +I,0,android/R$attr.ringtoneType,16843257,,,, +I,31,android/R$attr.rollbackDataPolicy,16844311,,,, +I,15,android/R$attr.rotation,16843558,,,, +I,26,android/R$attr.rotationAnimation,16844090,,,, +I,15,android/R$attr.rotationX,16843559,,,, +I,15,android/R$attr.rotationY,16843560,,,, +I,25,android/R$attr.roundIcon,16844076,,,, +I,15,android/R$attr.rowCount,16843637,,,, +I,0,android/R$attr.rowDelay,16843216,,,, +I,0,android/R$attr.rowEdgeFlags,16843329,,,, +I,0,android/R$attr.rowHeight,16843058,,,, +I,15,android/R$attr.rowOrderPreserved,16843638,,,, +I,0,android/R$attr.saveEnabled,16842983,,,, +I,0,android/R$attr.scaleGravity,16843262,,,, +I,0,android/R$attr.scaleHeight,16843261,,,, +I,0,android/R$attr.scaleType,16843037,,,, +I,0,android/R$attr.scaleWidth,16843260,,,, +I,15,android/R$attr.scaleX,16843556,,,, +I,15,android/R$attr.scaleY,16843557,,,, +I,0,android/R$attr.scheme,16842791,,,, +I,0,android/R$attr.screenDensity,16843467,,,, +I,0,android/R$attr.screenOrientation,16842782,,,, +I,28,android/R$attr.screenReaderFocusable,16844148,,,, +I,0,android/R$attr.screenSize,16843466,,,, +I,0,android/R$attr.scrollbarAlwaysDrawHorizontalTrack,16842856,,,, +I,0,android/R$attr.scrollbarAlwaysDrawVerticalTrack,16842857,,,, +I,0,android/R$attr.scrollbarDefaultDelayBeforeFade,16843433,,,, +I,0,android/R$attr.scrollbarFadeDuration,16843432,,,, +I,0,android/R$attr.scrollbars,16842974,,,, +I,0,android/R$attr.scrollbarSize,16842851,,,, +I,0,android/R$attr.scrollbarStyle,16842879,,,, +I,0,android/R$attr.scrollbarThumbHorizontal,16842852,,,, +I,0,android/R$attr.scrollbarThumbVertical,16842853,,,, +I,0,android/R$attr.scrollbarTrackHorizontal,16842854,,,, +I,0,android/R$attr.scrollbarTrackVertical,16842855,,,, +I,0,android/R$attr.scrollHorizontally,16843099,,,, +I,23,android/R$attr.scrollIndicators,16844006,,,, +I,0,android/R$attr.scrollingCache,16843006,,,, +I,0,android/R$attr.scrollViewStyle,16842880,,,, +I,0,android/R$attr.scrollX,16842962,,,, +I,0,android/R$attr.scrollY,16842963,,,, +I,0,android/R$attr.searchButtonText,16843269,,,, +I,22,android/R$attr.searchHintIcon,16843988,,,, +I,21,android/R$attr.searchIcon,16843907,,,, +I,0,android/R$attr.searchMode,16843221,,,, +I,0,android/R$attr.searchSettingsDescription,16843402,,,, +I,0,android/R$attr.searchSuggestAuthority,16843222,,,, +I,0,android/R$attr.searchSuggestIntentAction,16843225,,,, +I,0,android/R$attr.searchSuggestIntentData,16843226,,,, +I,0,android/R$attr.searchSuggestPath,16843223,,,, +I,0,android/R$attr.searchSuggestSelection,16843224,,,, +I,0,android/R$attr.searchSuggestThreshold,16843373,,,, +I,21,android/R$attr.searchViewStyle,16843904,,,, +I,26,android/R$attr.secondaryContentAlpha,16844115,,,, +I,0,android/R$attr.secondaryProgress,16843064,,,, +I,21,android/R$attr.secondaryProgressTint,16843879,,,, +I,21,android/R$attr.secondaryProgressTintMode,16843880,,,, +I,29,android/R$attr.secureElementName,16844290,,,, +I,0,android/R$attr.seekBarStyle,16842875,,,, +I,15,android/R$attr.segmentedButtonStyle,16843568,,,, +I,0,android/R$attr.selectable,16843238,,,, +I,31,android/R$attr.selectableAsDefault,16844352,,,, +I,15,android/R$attr.selectableItemBackground,16843534,,,, +I,21,android/R$attr.selectableItemBackgroundBorderless,16843868,,,, +I,0,android/R$attr.selectAllOnFocus,16843102,,,, +I,15,android/R$attr.selectedDateVerticalBar,16843591,,,, +I,15,android/R$attr.selectedWeekBackgroundColor,16843586,,,, +I,29,android/R$attr.selectionDividerHeight,16844184,,,, +I,21,android/R$attr.sessionService,16843837,,,, +I,0,android/R$attr.settingsActivity,16843301,,,, +I,29,android/R$attr.settingsSliceUri,16844179,,,, +I,21,android/R$attr.setupActivity,16843766,,,, +I,0,android/R$attr.shadowColor,16843105,,,, +I,0,android/R$attr.shadowDx,16843106,,,, +I,0,android/R$attr.shadowDy,16843107,,,, +I,0,android/R$attr.shadowRadius,16843108,,,, +I,0,android/R$attr.shape,16843162,,,, +I,0,android/R$attr.sharedUserId,16842763,,,, +I,0,android/R$attr.sharedUserLabel,16843361,,,, +I,0,android/R$attr.shareInterpolator,16843195,,,, +I,29,android/R$attr.shell,16844180,,,, +I,25,android/R$attr.shortcutDisabledMessage,16844075,,,, +I,25,android/R$attr.shortcutId,16844072,,,, +I,25,android/R$attr.shortcutLongLabel,16844074,,,, +I,25,android/R$attr.shortcutShortLabel,16844073,,,, +I,0,android/R$attr.shouldDisableView,16843246,,,, +I,15,android/R$attr.showAsAction,16843481,,,, +I,0,android/R$attr.showDefault,16843258,,,, +I,15,android/R$attr.showDividers,16843561,,,, +I,23,android/R$attr.showForAllUsers,16844015,,,, +I,31,android/R$attr.showInInputMethodPicker,16844360,,,, +I,25,android/R$attr.showMetadataInPreview,16844079,,,, +I,15,android/R$attr.shownWeekCount,16843585,,,, +I,17,android/R$attr.showOnLockScreen,16843721,,,, +I,0,android/R$attr.showSilent,16843259,,,, +I,21,android/R$attr.showText,16843949,,,, +I,15,android/R$attr.showWeekNumber,16843582,,,, +I,27,android/R$attr.showWhenLocked,16844137,,,, +I,0,android/R$attr.shrinkColumns,16843082,,,, +I,0,android/R$attr.singleLine,16843101,,,, +I,26,android/R$attr.singleLineTitle,16844124,,,, +I,17,android/R$attr.singleUser,16843711,,,, +I,21,android/R$attr.slideEdge,16843824,,,, +I,0,android/R$attr.smallIcon,16843422,,,, +I,0,android/R$attr.smallScreens,16843396,,,, +I,0,android/R$attr.smoothScrollbar,16843313,,,, +I,0,android/R$attr.soundEffectsEnabled,16843285,,,, +I,0,android/R$attr.spacing,16843027,,,, +I,0,android/R$attr.spinnerDropDownItemStyle,16842887,,,, +I,0,android/R$attr.spinnerItemStyle,16842889,,,, +I,15,android/R$attr.spinnerMode,16843505,,,, +I,15,android/R$attr.spinnersShown,16843595,,,, +I,0,android/R$attr.spinnerStyle,16842881,,,, +I,31,android/R$attr.splashScreenTheme,16844337,,,, +I,15,android/R$attr.splitMotionEvents,16843503,,,, +I,26,android/R$attr.splitName,16844105,,,, +I,21,android/R$attr.splitTrack,16843852,,,, +I,21,android/R$attr.spotShadowAlpha,16843967,,,, +I,0,android/R$attr.src,16843033,,,, +I,19,android/R$attr.ssp,16843747,,,, +I,31,android/R$attr.sspAdvancedPattern,16844321,,,, +I,19,android/R$attr.sspPattern,16843749,,,, +I,19,android/R$attr.sspPrefix,16843748,,,, +I,31,android/R$attr.sspSuffix,16844319,,,, +I,0,android/R$attr.stackFromBottom,16843005,,,, +I,21,android/R$attr.stackViewStyle,16843838,,,, +I,0,android/R$attr.starStyle,16842882,,,, +I,23,android/R$attr.start,16843995,,,, +I,0,android/R$attr.startColor,16843165,,,, +I,19,android/R$attr.startDelay,16843746,,,, +I,0,android/R$attr.startOffset,16843198,,,, +I,24,android/R$attr.startX,16844048,,,, +I,24,android/R$attr.startY,16844049,,,, +I,0,android/R$attr.startYear,16843132,,,, +I,0,android/R$attr.state_above_anchor,16842922,,,, +I,15,android/R$attr.state_accelerated,16843547,,,, +I,15,android/R$attr.state_activated,16843518,,,, +I,0,android/R$attr.state_active,16842914,,,, +I,0,android/R$attr.state_checkable,16842911,,,, +I,0,android/R$attr.state_checked,16842912,,,, +I,15,android/R$attr.state_drag_can_accept,16843624,,,, +I,15,android/R$attr.state_drag_hovered,16843625,,,, +I,0,android/R$attr.state_empty,16842921,,,, +I,0,android/R$attr.state_enabled,16842910,,,, +I,0,android/R$attr.state_expanded,16842920,,,, +I,0,android/R$attr.state_first,16842916,,,, +I,0,android/R$attr.state_focused,16842908,,,, +I,15,android/R$attr.state_hovered,16843623,,,, +I,0,android/R$attr.state_last,16842918,,,, +I,0,android/R$attr.state_long_pressable,16843324,,,, +I,0,android/R$attr.state_middle,16842917,,,, +I,15,android/R$attr.state_multiline,16843597,,,, +I,0,android/R$attr.state_pressed,16842919,,,, +I,0,android/R$attr.state_selected,16842913,,,, +I,0,android/R$attr.state_single,16842915,,,, +I,0,android/R$attr.state_window_focused,16842909,,,, +I,21,android/R$attr.stateListAnimator,16843848,,,, +I,0,android/R$attr.stateNotNeeded,16842774,,,, +I,15,android/R$attr.staticWallpaperPreview,16843569,,,, +I,21,android/R$attr.statusBarColor,16843857,,,, +I,0,android/R$attr.stepSize,16843078,,,, +I,15,android/R$attr.stopWithTask,16843626,,,, +I,0,android/R$attr.streamType,16843273,,,, +I,0,android/R$attr.stretchColumns,16843081,,,, +I,0,android/R$attr.stretchMode,16843030,,,, +I,21,android/R$attr.strokeAlpha,16843979,,,, +I,21,android/R$attr.strokeColor,16843782,,,, +I,21,android/R$attr.strokeLineCap,16843787,,,, +I,21,android/R$attr.strokeLineJoin,16843788,,,, +I,21,android/R$attr.strokeMiterLimit,16843789,,,, +I,21,android/R$attr.strokeWidth,16843783,,,, +I,24,android/R$attr.subMenuArrow,16844019,,,, +I,21,android/R$attr.submitBackground,16843912,,,, +I,15,android/R$attr.subtitle,16843473,,,, +I,21,android/R$attr.subtitleTextAppearance,16843823,,,, +I,23,android/R$attr.subtitleTextColor,16844004,,,, +I,15,android/R$attr.subtitleTextStyle,16843513,,,, +I,15,android/R$attr.subtypeExtraValue,16843674,,,, +I,17,android/R$attr.subtypeId,16843713,,,, +I,15,android/R$attr.subtypeLocale,16843673,,,, +I,0,android/R$attr.suggestActionMsg,16843228,,,, +I,0,android/R$attr.suggestActionMsgColumn,16843229,,,, +I,21,android/R$attr.suggestionRowLayout,16843910,,,, +I,0,android/R$attr.summary,16843241,,,, +I,0,android/R$attr.summaryColumn,16843426,,,, +I,0,android/R$attr.summaryOff,16843248,,,, +I,0,android/R$attr.summaryOn,16843247,,,, +I,23,android/R$attr.supportsAssist,16844016,,,, +I,30,android/R$attr.supportsInlineSuggestions,16844302,,,, +I,23,android/R$attr.supportsLaunchVoiceAssistFromKeyguard,16844017,,,, +I,24,android/R$attr.supportsLocalInteraction,16844047,,,, +I,29,android/R$attr.supportsMultipleDisplays,16844182,,,, +I,24,android/R$attr.supportsPictureInPicture,16844023,,,, +I,17,android/R$attr.supportsRtl,16843695,,,, +I,19,android/R$attr.supportsSwitchingToNextInputMethod,16843755,,,, +I,0,android/R$attr.supportsUploading,16843419,,,, +I,31,android/R$attr.suppressesSpellChecker,16844355,,,, +I,15,android/R$attr.switchMinWidth,16843632,,,, +I,15,android/R$attr.switchPadding,16843633,,,, +I,15,android/R$attr.switchPreferenceStyle,16843629,,,, +I,21,android/R$attr.switchStyle,16843839,,,, +I,15,android/R$attr.switchTextAppearance,16843630,,,, +I,15,android/R$attr.switchTextOff,16843628,,,, +I,15,android/R$attr.switchTextOn,16843627,,,, +I,0,android/R$attr.syncable,16842777,,,, +I,0,android/R$attr.tabStripEnabled,16843453,,,, +I,0,android/R$attr.tabStripLeft,16843451,,,, +I,0,android/R$attr.tabStripRight,16843452,,,, +I,0,android/R$attr.tabWidgetStyle,16842883,,,, +I,0,android/R$attr.tag,16842961,,,, +I,0,android/R$attr.targetActivity,16843266,,,, +I,31,android/R$attr.targetCellHeight,16844341,,,, +I,31,android/R$attr.targetCellWidth,16844340,,,, +I,0,android/R$attr.targetClass,16842799,,,, +I,15,android/R$attr.targetDescriptions,16843680,,,, +I,19,android/R$attr.targetId,16843740,,,, +I,21,android/R$attr.targetName,16843853,,,, +I,0,android/R$attr.targetPackage,16842785,,,, +I,26,android/R$attr.targetProcesses,16844097,,,, +I,26,android/R$attr.targetSandboxVersion,16844108,,,, +I,0,android/R$attr.targetSdkVersion,16843376,,,, +I,0,android/R$attr.taskAffinity,16842770,,,, +I,0,android/R$attr.taskCloseEnterAnimation,16842942,,,, +I,0,android/R$attr.taskCloseExitAnimation,16842943,,,, +I,0,android/R$attr.taskOpenEnterAnimation,16842940,,,, +I,0,android/R$attr.taskOpenExitAnimation,16842941,,,, +I,0,android/R$attr.taskToBackEnterAnimation,16842946,,,, +I,0,android/R$attr.taskToBackExitAnimation,16842947,,,, +I,0,android/R$attr.taskToFrontEnterAnimation,16842944,,,, +I,0,android/R$attr.taskToFrontExitAnimation,16842945,,,, +I,0,android/R$attr.tension,16843370,,,, +I,0,android/R$attr.testOnly,16843378,,,, +I,0,android/R$attr.text,16843087,,,, +I,17,android/R$attr.textAlignment,16843697,,,, +I,15,android/R$attr.textAllCaps,16843660,,,, +I,0,android/R$attr.textAppearance,16842804,,,, +I,0,android/R$attr.textAppearanceButton,16843271,,,, +I,0,android/R$attr.textAppearanceInverse,16842805,,,, +I,0,android/R$attr.textAppearanceLarge,16842816,,,, +I,0,android/R$attr.textAppearanceLargeInverse,16842819,,,, +I,15,android/R$attr.textAppearanceLargePopupMenu,16843521,,,, +I,15,android/R$attr.textAppearanceListItem,16843678,,,, +I,21,android/R$attr.textAppearanceListItemSecondary,16843826,,,, +I,15,android/R$attr.textAppearanceListItemSmall,16843679,,,, +I,0,android/R$attr.textAppearanceMedium,16842817,,,, +I,0,android/R$attr.textAppearanceMediumInverse,16842820,,,, +I,24,android/R$attr.textAppearancePopupMenuHeader,16844034,,,, +I,0,android/R$attr.textAppearanceSearchResultSubtitle,16843424,,,, +I,0,android/R$attr.textAppearanceSearchResultTitle,16843425,,,, +I,0,android/R$attr.textAppearanceSmall,16842818,,,, +I,0,android/R$attr.textAppearanceSmallInverse,16842821,,,, +I,15,android/R$attr.textAppearanceSmallPopupMenu,16843522,,,, +I,0,android/R$attr.textCheckMark,16842822,,,, +I,0,android/R$attr.textCheckMarkInverse,16842823,,,, +I,0,android/R$attr.textColor,16842904,,,, +I,15,android/R$attr.textColorAlertDialogListItem,16843526,,,, +I,0,android/R$attr.textColorHighlight,16842905,,,, +I,15,android/R$attr.textColorHighlightInverse,16843599,,,, +I,0,android/R$attr.textColorHint,16842906,,,, +I,0,android/R$attr.textColorHintInverse,16842815,,,, +I,0,android/R$attr.textColorLink,16842907,,,, +I,15,android/R$attr.textColorLinkInverse,16843600,,,, +I,0,android/R$attr.textColorPrimary,16842806,,,, +I,0,android/R$attr.textColorPrimaryDisableOnly,16842807,,,, +I,0,android/R$attr.textColorPrimaryInverse,16842809,,,, +I,0,android/R$attr.textColorPrimaryInverseDisableOnly,16843403,,,, +I,0,android/R$attr.textColorPrimaryInverseNoDisable,16842813,,,, +I,0,android/R$attr.textColorPrimaryNoDisable,16842811,,,, +I,0,android/R$attr.textColorSecondary,16842808,,,, +I,0,android/R$attr.textColorSecondaryInverse,16842810,,,, +I,0,android/R$attr.textColorSecondaryInverseNoDisable,16842814,,,, +I,0,android/R$attr.textColorSecondaryNoDisable,16842812,,,, +I,0,android/R$attr.textColorTertiary,16843282,,,, +I,0,android/R$attr.textColorTertiaryInverse,16843283,,,, +I,15,android/R$attr.textCursorDrawable,16843618,,,, +I,17,android/R$attr.textDirection,16843696,,,, +I,15,android/R$attr.textEditNoPasteWindowLayout,16843541,,,, +I,15,android/R$attr.textEditPasteWindowLayout,16843540,,,, +I,15,android/R$attr.textEditSideNoPasteWindowLayout,16843615,,,, +I,15,android/R$attr.textEditSidePasteWindowLayout,16843614,,,, +I,15,android/R$attr.textEditSuggestionItemLayout,16843636,,,, +I,0,android/R$attr.textFilterEnabled,16843007,,,, +I,28,android/R$attr.textFontWeight,16844165,,,, +I,15,android/R$attr.textIsSelectable,16843542,,,, +I,29,android/R$attr.textLocale,16844178,,,, +I,0,android/R$attr.textOff,16843045,,,, +I,0,android/R$attr.textOn,16843044,,,, +I,0,android/R$attr.textScaleX,16843089,,,, +I,0,android/R$attr.textSelectHandle,16843463,,,, +I,0,android/R$attr.textSelectHandleLeft,16843461,,,, +I,0,android/R$attr.textSelectHandleRight,16843462,,,, +I,0,android/R$attr.textSelectHandleWindowStyle,16843464,,,, +I,0,android/R$attr.textSize,16842901,,,, +I,0,android/R$attr.textStyle,16842903,,,, +I,15,android/R$attr.textSuggestionsWindowStyle,16843635,,,, +I,0,android/R$attr.textViewStyle,16842884,,,, +I,0,android/R$attr.theme,16842752,,,, +I,0,android/R$attr.thickness,16843360,,,, +I,0,android/R$attr.thicknessRatio,16843164,,,, +I,0,android/R$attr.thumb,16843074,,,, +I,0,android/R$attr.thumbnail,16843429,,,, +I,0,android/R$attr.thumbOffset,16843075,,,, +I,23,android/R$attr.thumbPosition,16844005,,,, +I,15,android/R$attr.thumbTextPadding,16843634,,,, +I,21,android/R$attr.thumbTint,16843889,,,, +I,21,android/R$attr.thumbTintMode,16843890,,,, +I,24,android/R$attr.tickMark,16844042,,,, +I,24,android/R$attr.tickMarkTint,16844043,,,, +I,24,android/R$attr.tickMarkTintMode,16844044,,,, +I,0,android/R$attr.tileMode,16843265,,,, +I,21,android/R$attr.tileModeX,16843895,,,, +I,21,android/R$attr.tileModeY,16843896,,,, +I,21,android/R$attr.timePickerDialogTheme,16843934,,,, +I,21,android/R$attr.timePickerMode,16843956,,,, +I,21,android/R$attr.timePickerStyle,16843933,,,, +I,17,android/R$attr.timeZone,16843724,,,, +I,0,android/R$attr.tint,16843041,,,, +I,21,android/R$attr.tintMode,16843771,,,, +I,0,android/R$attr.title,16843233,,,, +I,0,android/R$attr.titleCondensed,16843234,,,, +I,24,android/R$attr.titleMargin,16844024,,,, +I,24,android/R$attr.titleMarginBottom,16844028,,,, +I,24,android/R$attr.titleMarginEnd,16844026,,,, +I,24,android/R$attr.titleMarginStart,16844025,,,, +I,24,android/R$attr.titleMarginTop,16844027,,,, +I,21,android/R$attr.titleTextAppearance,16843822,,,, +I,23,android/R$attr.titleTextColor,16844003,,,, +I,15,android/R$attr.titleTextStyle,16843512,,,, +I,0,android/R$attr.toAlpha,16843211,,,, +I,0,android/R$attr.toDegrees,16843188,,,, +I,21,android/R$attr.toId,16843849,,,, +I,21,android/R$attr.toolbarStyle,16843946,,,, +I,26,android/R$attr.tooltipText,16844084,,,, +I,0,android/R$attr.top,16843182,,,, +I,0,android/R$attr.topBright,16842955,,,, +I,0,android/R$attr.topDark,16842951,,,, +I,0,android/R$attr.topLeftRadius,16843177,,,, +I,0,android/R$attr.topOffset,16843352,,,, +I,0,android/R$attr.topRightRadius,16843178,,,, +I,19,android/R$attr.toScene,16843742,,,, +I,21,android/R$attr.touchscreenBlocksFocus,16843919,,,, +I,0,android/R$attr.toXDelta,16843207,,,, +I,0,android/R$attr.toXScale,16843203,,,, +I,0,android/R$attr.toYDelta,16843209,,,, +I,0,android/R$attr.toYScale,16843205,,,, +I,15,android/R$attr.track,16843631,,,, +I,23,android/R$attr.trackTint,16843993,,,, +I,23,android/R$attr.trackTintMode,16843994,,,, +I,0,android/R$attr.transcriptMode,16843008,,,, +I,15,android/R$attr.transformPivotX,16843552,,,, +I,15,android/R$attr.transformPivotY,16843553,,,, +I,19,android/R$attr.transition,16843743,,,, +I,21,android/R$attr.transitionGroup,16843777,,,, +I,21,android/R$attr.transitionName,16843776,,,, +I,19,android/R$attr.transitionOrdering,16843744,,,, +I,21,android/R$attr.transitionVisibilityMode,16843900,,,, +I,21,android/R$attr.translateX,16843866,,,, +I,21,android/R$attr.translateY,16843867,,,, +I,15,android/R$attr.translationX,16843554,,,, +I,15,android/R$attr.translationY,16843555,,,, +I,21,android/R$attr.translationZ,16843770,,,, +I,21,android/R$attr.trimPathEnd,16843785,,,, +I,21,android/R$attr.trimPathOffset,16843786,,,, +I,21,android/R$attr.trimPathStart,16843784,,,, +I,28,android/R$attr.ttcIndex,16844143,,,, +I,24,android/R$attr.tunerCount,16844061,,,, +I,27,android/R$attr.turnScreenOn,16844138,,,, +I,0,android/R$attr.type,16843169,,,, +I,0,android/R$attr.typeface,16842902,,,, +I,15,android/R$attr.uiOptions,16843672,,,, +I,0,android/R$attr.uncertainGestureColor,16843382,,,, +I,15,android/R$attr.unfocusedMonthDateColor,16843588,,,, +I,0,android/R$attr.unselectedAlpha,16843278,,,, +I,0,android/R$attr.updatePeriodMillis,16843344,,,, +I,24,android/R$attr.use32bitAbi,16844053,,,, +I,29,android/R$attr.useAppZygote,16844183,,,, +I,15,android/R$attr.useDefaultMargins,16843641,,,, +I,29,android/R$attr.useEmbeddedDex,16844190,,,, +I,15,android/R$attr.useIntrinsicSizeAsMinimum,16843536,,,, +I,0,android/R$attr.useLevel,16843167,,,, +I,0,android/R$attr.userVisible,16843409,,,, +I,23,android/R$attr.usesCleartextTraffic,16844012,,,, +I,31,android/R$attr.usesPermissionFlags,16844356,,,, +I,0,android/R$attr.value,16842788,,,, +I,15,android/R$attr.valueFrom,16843486,,,, +I,15,android/R$attr.valueTo,16843487,,,, +I,15,android/R$attr.valueType,16843488,,,, +I,0,android/R$attr.variablePadding,16843157,,,, +I,19,android/R$attr.vendor,16843751,,,, +I,24,android/R$attr.version,16844057,,,, +I,0,android/R$attr.versionCode,16843291,,,, +I,28,android/R$attr.versionCodeMajor,16844150,,,, +I,28,android/R$attr.versionMajor,16844151,,,, +I,0,android/R$attr.versionName,16843292,,,, +I,0,android/R$attr.verticalCorrection,16843322,,,, +I,0,android/R$attr.verticalDivider,16843054,,,, +I,0,android/R$attr.verticalGap,16843328,,,, +I,15,android/R$attr.verticalScrollbarPosition,16843572,,,, +I,0,android/R$attr.verticalSpacing,16843029,,,, +I,21,android/R$attr.viewportHeight,16843779,,,, +I,21,android/R$attr.viewportWidth,16843778,,,, +I,0,android/R$attr.visibility,16842972,,,, +I,0,android/R$attr.visible,16843156,,,, +I,26,android/R$attr.visibleToInstantApps,16844081,,,, +I,0,android/R$attr.vmSafeMode,16843448,,,, +I,21,android/R$attr.voiceIcon,16843908,,,, +I,0,android/R$attr.voiceLanguage,16843349,,,, +I,0,android/R$attr.voiceLanguageModel,16843347,,,, +I,0,android/R$attr.voiceMaxResults,16843350,,,, +I,0,android/R$attr.voicePromptText,16843348,,,, +I,0,android/R$attr.voiceSearchMode,16843346,,,, +I,0,android/R$attr.wallpaperCloseEnterAnimation,16843413,,,, +I,0,android/R$attr.wallpaperCloseExitAnimation,16843414,,,, +I,0,android/R$attr.wallpaperIntraCloseEnterAnimation,16843417,,,, +I,0,android/R$attr.wallpaperIntraCloseExitAnimation,16843418,,,, +I,0,android/R$attr.wallpaperIntraOpenEnterAnimation,16843415,,,, +I,0,android/R$attr.wallpaperIntraOpenExitAnimation,16843416,,,, +I,0,android/R$attr.wallpaperOpenEnterAnimation,16843411,,,, +I,0,android/R$attr.wallpaperOpenExitAnimation,16843412,,,, +I,0,android/R$attr.webTextViewStyle,16843449,,,, +I,0,android/R$attr.webViewStyle,16842885,,,, +I,15,android/R$attr.weekDayTextAppearance,16843592,,,, +I,15,android/R$attr.weekNumberColor,16843589,,,, +I,15,android/R$attr.weekSeparatorLineColor,16843590,,,, +I,0,android/R$attr.weightSum,16843048,,,, +I,17,android/R$attr.widgetCategory,16843716,,,, +I,28,android/R$attr.widgetFeatures,16844153,,,, +I,0,android/R$attr.widgetLayout,16843243,,,, +I,0,android/R$attr.width,16843097,,,, +I,15,android/R$attr.windowActionBar,16843469,,,, +I,15,android/R$attr.windowActionBarOverlay,16843492,,,, +I,15,android/R$attr.windowActionModeOverlay,16843485,,,, +I,21,android/R$attr.windowActivityTransitions,16843981,,,, +I,21,android/R$attr.windowAllowEnterTransitionOverlap,16843836,,,, +I,21,android/R$attr.windowAllowReturnTransitionOverlap,16843835,,,, +I,0,android/R$attr.windowAnimationStyle,16842926,,,, +I,0,android/R$attr.windowBackground,16842836,,,, +I,31,android/R$attr.windowBackgroundBlurRadius,16844331,,,, +I,24,android/R$attr.windowBackgroundFallback,16844035,,,, +I,31,android/R$attr.windowBlurBehindEnabled,16844316,,,, +I,31,android/R$attr.windowBlurBehindRadius,16844315,,,, +I,21,android/R$attr.windowClipToOutline,16843947,,,, +I,15,android/R$attr.windowCloseOnTouchOutside,16843611,,,, +I,0,android/R$attr.windowContentOverlay,16842841,,,, +I,21,android/R$attr.windowContentTransitionManager,16843769,,,, +I,21,android/R$attr.windowContentTransitions,16843768,,,, +I,0,android/R$attr.windowDisablePreview,16843298,,,, +I,21,android/R$attr.windowDrawsSystemBarBackgrounds,16843856,,,, +I,21,android/R$attr.windowElevation,16843920,,,, +I,15,android/R$attr.windowEnableSplitTouch,16843543,,,, +I,0,android/R$attr.windowEnterAnimation,16842932,,,, +I,21,android/R$attr.windowEnterTransition,16843831,,,, +I,0,android/R$attr.windowExitAnimation,16842933,,,, +I,21,android/R$attr.windowExitTransition,16843832,,,, +I,0,android/R$attr.windowFrame,16842837,,,, +I,0,android/R$attr.windowFullscreen,16843277,,,, +I,0,android/R$attr.windowHideAnimation,16842935,,,, +I,0,android/R$attr.windowIsFloating,16842839,,,, +I,0,android/R$attr.windowIsTranslucent,16842840,,,, +I,31,android/R$attr.windowLayoutAffinity,16844313,,,, +I,27,android/R$attr.windowLayoutInDisplayCutoutMode,16844166,,,, +I,27,android/R$attr.windowLightNavigationBar,16844140,,,, +I,23,android/R$attr.windowLightStatusBar,16844000,,,, +I,15,android/R$attr.windowMinWidthMajor,16843606,,,, +I,15,android/R$attr.windowMinWidthMinor,16843607,,,, +I,0,android/R$attr.windowNoDisplay,16843294,,,, +I,0,android/R$attr.windowNoTitle,16842838,,,, +I,18,android/R$attr.windowOverscan,16843727,,,, +I,21,android/R$attr.windowReenterTransition,16843951,,,, +I,21,android/R$attr.windowReturnTransition,16843950,,,, +I,21,android/R$attr.windowSharedElementEnterTransition,16843833,,,, +I,21,android/R$attr.windowSharedElementExitTransition,16843834,,,, +I,21,android/R$attr.windowSharedElementReenterTransition,16843953,,,, +I,21,android/R$attr.windowSharedElementReturnTransition,16843952,,,, +I,21,android/R$attr.windowSharedElementsUseOverlay,16843963,,,, +I,0,android/R$attr.windowShowAnimation,16842934,,,, +I,0,android/R$attr.windowShowWallpaper,16843410,,,, +I,0,android/R$attr.windowSoftInputMode,16843307,,,, +I,31,android/R$attr.windowSplashScreenAnimatedIcon,16844333,,,, +I,31,android/R$attr.windowSplashScreenAnimationDuration,16844334,,,, +I,31,android/R$attr.windowSplashScreenBackground,16844332,,,, +I,31,android/R$attr.windowSplashScreenBrandingImage,16844335,,,, +I,26,android/R$attr.windowSplashscreenContent,16844132,,,, +I,31,android/R$attr.windowSplashScreenIconBackgroundColor,16844336,,,, +I,20,android/R$attr.windowSwipeToDismiss,16843763,,,, +I,0,android/R$attr.windowTitleBackgroundStyle,16842844,,,, +I,0,android/R$attr.windowTitleSize,16842842,,,, +I,0,android/R$attr.windowTitleStyle,16842843,,,, +I,21,android/R$attr.windowTransitionBackgroundFadeDuration,16843873,,,, +I,19,android/R$attr.windowTranslucentNavigation,16843760,,,, +I,19,android/R$attr.windowTranslucentStatus,16843759,,,, +I,0,android/R$attr.writePermission,16842760,,,, +I,0,android/R$attr.x,16842924,,,, +I,0,android/R$attr.xlargeScreens,16843455,,,, +I,0,android/R$attr.y,16842925,,,, +I,21,android/R$attr.yearListItemTextAppearance,16843929,,,, +I,21,android/R$attr.yearListSelectorColor,16843930,,,, +I,0,android/R$attr.yesNoPreferenceStyle,16842896,,,, +I,0,android/R$attr.zAdjustment,16843201,,,, +I,29,android/R$attr.zygotePreloadName,16844189,,,, +I,0,android/R$color.background_dark,17170446,,,, +I,0,android/R$color.background_light,17170447,,,, +I,0,android/R$color.black,17170444,,,, +I,0,android/R$color.darker_gray,17170432,,,, +I,15,android/R$color.holo_blue_bright,17170459,,,, +I,15,android/R$color.holo_blue_dark,17170451,,,, +I,15,android/R$color.holo_blue_light,17170450,,,, +I,15,android/R$color.holo_green_dark,17170453,,,, +I,15,android/R$color.holo_green_light,17170452,,,, +I,15,android/R$color.holo_orange_dark,17170457,,,, +I,15,android/R$color.holo_orange_light,17170456,,,, +I,15,android/R$color.holo_purple,17170458,,,, +I,15,android/R$color.holo_red_dark,17170455,,,, +I,15,android/R$color.holo_red_light,17170454,,,, +I,0,android/R$color.primary_text_dark,17170433,,,, +I,0,android/R$color.primary_text_dark_nodisable,17170434,,,, +I,0,android/R$color.primary_text_light,17170435,,,, +I,0,android/R$color.primary_text_light_nodisable,17170436,,,, +I,0,android/R$color.secondary_text_dark,17170437,,,, +I,0,android/R$color.secondary_text_dark_nodisable,17170438,,,, +I,0,android/R$color.secondary_text_light,17170439,,,, +I,0,android/R$color.secondary_text_light_nodisable,17170440,,,, +I,31,android/R$color.system_accent1_0,17170487,,,, +I,31,android/R$color.system_accent1_10,17170488,,,, +I,31,android/R$color.system_accent1_100,17170490,,,, +I,31,android/R$color.system_accent1_1000,17170499,,,, +I,31,android/R$color.system_accent1_200,17170491,,,, +I,31,android/R$color.system_accent1_300,17170492,,,, +I,31,android/R$color.system_accent1_400,17170493,,,, +I,31,android/R$color.system_accent1_50,17170489,,,, +I,31,android/R$color.system_accent1_500,17170494,,,, +I,31,android/R$color.system_accent1_600,17170495,,,, +I,31,android/R$color.system_accent1_700,17170496,,,, +I,31,android/R$color.system_accent1_800,17170497,,,, +I,31,android/R$color.system_accent1_900,17170498,,,, +I,31,android/R$color.system_accent2_0,17170500,,,, +I,31,android/R$color.system_accent2_10,17170501,,,, +I,31,android/R$color.system_accent2_100,17170503,,,, +I,31,android/R$color.system_accent2_1000,17170512,,,, +I,31,android/R$color.system_accent2_200,17170504,,,, +I,31,android/R$color.system_accent2_300,17170505,,,, +I,31,android/R$color.system_accent2_400,17170506,,,, +I,31,android/R$color.system_accent2_50,17170502,,,, +I,31,android/R$color.system_accent2_500,17170507,,,, +I,31,android/R$color.system_accent2_600,17170508,,,, +I,31,android/R$color.system_accent2_700,17170509,,,, +I,31,android/R$color.system_accent2_800,17170510,,,, +I,31,android/R$color.system_accent2_900,17170511,,,, +I,31,android/R$color.system_accent3_0,17170513,,,, +I,31,android/R$color.system_accent3_10,17170514,,,, +I,31,android/R$color.system_accent3_100,17170516,,,, +I,31,android/R$color.system_accent3_1000,17170525,,,, +I,31,android/R$color.system_accent3_200,17170517,,,, +I,31,android/R$color.system_accent3_300,17170518,,,, +I,31,android/R$color.system_accent3_400,17170519,,,, +I,31,android/R$color.system_accent3_50,17170515,,,, +I,31,android/R$color.system_accent3_500,17170520,,,, +I,31,android/R$color.system_accent3_600,17170521,,,, +I,31,android/R$color.system_accent3_700,17170522,,,, +I,31,android/R$color.system_accent3_800,17170523,,,, +I,31,android/R$color.system_accent3_900,17170524,,,, +I,31,android/R$color.system_neutral1_0,17170461,,,, +I,31,android/R$color.system_neutral1_10,17170462,,,, +I,31,android/R$color.system_neutral1_100,17170464,,,, +I,31,android/R$color.system_neutral1_1000,17170473,,,, +I,31,android/R$color.system_neutral1_200,17170465,,,, +I,31,android/R$color.system_neutral1_300,17170466,,,, +I,31,android/R$color.system_neutral1_400,17170467,,,, +I,31,android/R$color.system_neutral1_50,17170463,,,, +I,31,android/R$color.system_neutral1_500,17170468,,,, +I,31,android/R$color.system_neutral1_600,17170469,,,, +I,31,android/R$color.system_neutral1_700,17170470,,,, +I,31,android/R$color.system_neutral1_800,17170471,,,, +I,31,android/R$color.system_neutral1_900,17170472,,,, +I,31,android/R$color.system_neutral2_0,17170474,,,, +I,31,android/R$color.system_neutral2_10,17170475,,,, +I,31,android/R$color.system_neutral2_100,17170477,,,, +I,31,android/R$color.system_neutral2_1000,17170486,,,, +I,31,android/R$color.system_neutral2_200,17170478,,,, +I,31,android/R$color.system_neutral2_300,17170479,,,, +I,31,android/R$color.system_neutral2_400,17170480,,,, +I,31,android/R$color.system_neutral2_50,17170476,,,, +I,31,android/R$color.system_neutral2_500,17170481,,,, +I,31,android/R$color.system_neutral2_600,17170482,,,, +I,31,android/R$color.system_neutral2_700,17170483,,,, +I,31,android/R$color.system_neutral2_800,17170484,,,, +I,31,android/R$color.system_neutral2_900,17170485,,,, +I,0,android/R$color.tab_indicator_text,17170441,,,, +I,0,android/R$color.tertiary_text_dark,17170448,,,, +I,0,android/R$color.tertiary_text_light,17170449,,,, +I,0,android/R$color.transparent,17170445,,,, +I,0,android/R$color.white,17170443,,,, +I,0,android/R$color.widget_edittext_dark,17170442,,,, +I,0,android/R$dimen.app_icon_size,17104896,,,, +I,15,android/R$dimen.dialog_min_width_major,17104899,,,, +I,15,android/R$dimen.dialog_min_width_minor,17104900,,,, +I,15,android/R$dimen.notification_large_icon_height,17104902,,,, +I,15,android/R$dimen.notification_large_icon_width,17104901,,,, +I,31,android/R$dimen.system_app_widget_background_radius,17104904,,,, +I,31,android/R$dimen.system_app_widget_inner_radius,17104905,,,, +I,0,android/R$dimen.thumbnail_height,17104897,,,, +I,0,android/R$dimen.thumbnail_width,17104898,,,, +I,0,android/R$drawable.alert_dark_frame,17301504,,,, +I,0,android/R$drawable.alert_light_frame,17301505,,,, +I,0,android/R$drawable.arrow_down_float,17301506,,,, +I,0,android/R$drawable.arrow_up_float,17301507,,,, +I,0,android/R$drawable.bottom_bar,17301658,,,, +I,0,android/R$drawable.btn_default,17301508,,,, +I,0,android/R$drawable.btn_default_small,17301509,,,, +I,0,android/R$drawable.btn_dialog,17301527,,,, +I,0,android/R$drawable.btn_dropdown,17301510,,,, +I,0,android/R$drawable.btn_minus,17301511,,,, +I,0,android/R$drawable.btn_plus,17301512,,,, +I,0,android/R$drawable.btn_radio,17301513,,,, +I,0,android/R$drawable.btn_star,17301514,,,, +I,0,android/R$drawable.btn_star_big_off,17301515,,,, +I,0,android/R$drawable.btn_star_big_on,17301516,,,, +I,0,android/R$drawable.button_onoff_indicator_off,17301518,,,, +I,0,android/R$drawable.button_onoff_indicator_on,17301517,,,, +I,0,android/R$drawable.checkbox_off_background,17301519,,,, +I,0,android/R$drawable.checkbox_on_background,17301520,,,, +I,0,android/R$drawable.dark_header,17301669,,,, +I,0,android/R$drawable.dialog_frame,17301521,,,, +I,15,android/R$drawable.dialog_holo_dark_frame,17301682,,,, +I,15,android/R$drawable.dialog_holo_light_frame,17301683,,,, +I,0,android/R$drawable.divider_horizontal_bright,17301522,,,, +I,0,android/R$drawable.divider_horizontal_dark,17301524,,,, +I,0,android/R$drawable.divider_horizontal_dim_dark,17301525,,,, +I,0,android/R$drawable.divider_horizontal_textfield,17301523,,,, +I,0,android/R$drawable.edit_text,17301526,,,, +I,0,android/R$drawable.editbox_background,17301528,,,, +I,0,android/R$drawable.editbox_background_normal,17301529,,,, +I,0,android/R$drawable.editbox_dropdown_dark_frame,17301530,,,, +I,0,android/R$drawable.editbox_dropdown_light_frame,17301531,,,, +I,0,android/R$drawable.gallery_thumb,17301532,,,, +I,0,android/R$drawable.ic_btn_speak_now,17301668,,,, +I,0,android/R$drawable.ic_delete,17301533,,,, +I,0,android/R$drawable.ic_dialog_alert,17301543,,,, +I,0,android/R$drawable.ic_dialog_dialer,17301544,,,, +I,0,android/R$drawable.ic_dialog_email,17301545,,,, +I,0,android/R$drawable.ic_dialog_info,17301659,,,, +I,0,android/R$drawable.ic_dialog_map,17301546,,,, +I,0,android/R$drawable.ic_input_add,17301547,,,, +I,0,android/R$drawable.ic_input_delete,17301548,,,, +I,0,android/R$drawable.ic_input_get,17301549,,,, +I,0,android/R$drawable.ic_lock_idle_alarm,17301550,,,, +I,0,android/R$drawable.ic_lock_idle_charging,17301534,,,, +I,0,android/R$drawable.ic_lock_idle_lock,17301535,,,, +I,0,android/R$drawable.ic_lock_idle_low_battery,17301536,,,, +I,0,android/R$drawable.ic_lock_lock,17301551,,,, +I,0,android/R$drawable.ic_lock_power_off,17301552,,,, +I,0,android/R$drawable.ic_lock_silent_mode,17301553,,,, +I,0,android/R$drawable.ic_lock_silent_mode_off,17301554,,,, +I,0,android/R$drawable.ic_media_ff,17301537,,,, +I,0,android/R$drawable.ic_media_next,17301538,,,, +I,0,android/R$drawable.ic_media_pause,17301539,,,, +I,0,android/R$drawable.ic_media_play,17301540,,,, +I,0,android/R$drawable.ic_media_previous,17301541,,,, +I,0,android/R$drawable.ic_media_rew,17301542,,,, +I,0,android/R$drawable.ic_menu_add,17301555,,,, +I,0,android/R$drawable.ic_menu_agenda,17301556,,,, +I,0,android/R$drawable.ic_menu_always_landscape_portrait,17301557,,,, +I,0,android/R$drawable.ic_menu_call,17301558,,,, +I,0,android/R$drawable.ic_menu_camera,17301559,,,, +I,0,android/R$drawable.ic_menu_close_clear_cancel,17301560,,,, +I,0,android/R$drawable.ic_menu_compass,17301561,,,, +I,0,android/R$drawable.ic_menu_crop,17301562,,,, +I,0,android/R$drawable.ic_menu_day,17301563,,,, +I,0,android/R$drawable.ic_menu_delete,17301564,,,, +I,0,android/R$drawable.ic_menu_directions,17301565,,,, +I,0,android/R$drawable.ic_menu_edit,17301566,,,, +I,0,android/R$drawable.ic_menu_gallery,17301567,,,, +I,0,android/R$drawable.ic_menu_help,17301568,,,, +I,0,android/R$drawable.ic_menu_info_details,17301569,,,, +I,0,android/R$drawable.ic_menu_manage,17301570,,,, +I,0,android/R$drawable.ic_menu_mapmode,17301571,,,, +I,0,android/R$drawable.ic_menu_month,17301572,,,, +I,0,android/R$drawable.ic_menu_more,17301573,,,, +I,0,android/R$drawable.ic_menu_my_calendar,17301574,,,, +I,0,android/R$drawable.ic_menu_mylocation,17301575,,,, +I,0,android/R$drawable.ic_menu_myplaces,17301576,,,, +I,0,android/R$drawable.ic_menu_preferences,17301577,,,, +I,0,android/R$drawable.ic_menu_recent_history,17301578,,,, +I,0,android/R$drawable.ic_menu_report_image,17301579,,,, +I,0,android/R$drawable.ic_menu_revert,17301580,,,, +I,0,android/R$drawable.ic_menu_rotate,17301581,,,, +I,0,android/R$drawable.ic_menu_save,17301582,,,, +I,0,android/R$drawable.ic_menu_search,17301583,,,, +I,0,android/R$drawable.ic_menu_send,17301584,,,, +I,0,android/R$drawable.ic_menu_set_as,17301585,,,, +I,0,android/R$drawable.ic_menu_share,17301586,,,, +I,0,android/R$drawable.ic_menu_slideshow,17301587,,,, +I,0,android/R$drawable.ic_menu_sort_alphabetically,17301660,,,, +I,0,android/R$drawable.ic_menu_sort_by_size,17301661,,,, +I,0,android/R$drawable.ic_menu_today,17301588,,,, +I,0,android/R$drawable.ic_menu_upload,17301589,,,, +I,0,android/R$drawable.ic_menu_upload_you_tube,17301590,,,, +I,0,android/R$drawable.ic_menu_view,17301591,,,, +I,0,android/R$drawable.ic_menu_week,17301592,,,, +I,0,android/R$drawable.ic_menu_zoom,17301593,,,, +I,0,android/R$drawable.ic_notification_clear_all,17301594,,,, +I,0,android/R$drawable.ic_notification_overlay,17301595,,,, +I,0,android/R$drawable.ic_partial_secure,17301596,,,, +I,0,android/R$drawable.ic_popup_disk_full,17301597,,,, +I,0,android/R$drawable.ic_popup_reminder,17301598,,,, +I,0,android/R$drawable.ic_popup_sync,17301599,,,, +I,0,android/R$drawable.ic_search_category_default,17301600,,,, +I,0,android/R$drawable.ic_secure,17301601,,,, +I,0,android/R$drawable.list_selector_background,17301602,,,, +I,0,android/R$drawable.menu_frame,17301603,,,, +I,0,android/R$drawable.menu_full_frame,17301604,,,, +I,0,android/R$drawable.menuitem_background,17301605,,,, +I,0,android/R$drawable.picture_frame,17301606,,,, +I,0,android/R$drawable.presence_audio_away,17301679,,,, +I,0,android/R$drawable.presence_audio_busy,17301680,,,, +I,0,android/R$drawable.presence_audio_online,17301681,,,, +I,0,android/R$drawable.presence_away,17301607,,,, +I,0,android/R$drawable.presence_busy,17301608,,,, +I,0,android/R$drawable.presence_invisible,17301609,,,, +I,0,android/R$drawable.presence_offline,17301610,,,, +I,0,android/R$drawable.presence_online,17301611,,,, +I,0,android/R$drawable.presence_video_away,17301676,,,, +I,0,android/R$drawable.presence_video_busy,17301677,,,, +I,0,android/R$drawable.presence_video_online,17301678,,,, +I,0,android/R$drawable.progress_horizontal,17301612,,,, +I,0,android/R$drawable.progress_indeterminate_horizontal,17301613,,,, +I,0,android/R$drawable.radiobutton_off_background,17301614,,,, +I,0,android/R$drawable.radiobutton_on_background,17301615,,,, +I,0,android/R$drawable.screen_background_dark,17301656,,,, +I,0,android/R$drawable.screen_background_dark_transparent,17301673,,,, +I,0,android/R$drawable.screen_background_light,17301657,,,, +I,0,android/R$drawable.screen_background_light_transparent,17301674,,,, +I,0,android/R$drawable.spinner_background,17301616,,,, +I,0,android/R$drawable.spinner_dropdown_background,17301617,,,, +I,0,android/R$drawable.star_big_off,17301619,,,, +I,0,android/R$drawable.star_big_on,17301618,,,, +I,0,android/R$drawable.star_off,17301621,,,, +I,0,android/R$drawable.star_on,17301620,,,, +I,0,android/R$drawable.stat_notify_call_mute,17301622,,,, +I,0,android/R$drawable.stat_notify_chat,17301623,,,, +I,0,android/R$drawable.stat_notify_error,17301624,,,, +I,0,android/R$drawable.stat_notify_missed_call,17301631,,,, +I,0,android/R$drawable.stat_notify_more,17301625,,,, +I,0,android/R$drawable.stat_notify_sdcard,17301626,,,, +I,0,android/R$drawable.stat_notify_sdcard_prepare,17301675,,,, +I,0,android/R$drawable.stat_notify_sdcard_usb,17301627,,,, +I,0,android/R$drawable.stat_notify_sync,17301628,,,, +I,0,android/R$drawable.stat_notify_sync_noanim,17301629,,,, +I,0,android/R$drawable.stat_notify_voicemail,17301630,,,, +I,0,android/R$drawable.stat_sys_data_bluetooth,17301632,,,, +I,0,android/R$drawable.stat_sys_download,17301633,,,, +I,0,android/R$drawable.stat_sys_download_done,17301634,,,, +I,0,android/R$drawable.stat_sys_headset,17301635,,,, +I,0,android/R$drawable.stat_sys_phone_call,17301636,,,, +I,0,android/R$drawable.stat_sys_phone_call_forward,17301637,,,, +I,0,android/R$drawable.stat_sys_phone_call_on_hold,17301638,,,, +I,0,android/R$drawable.stat_sys_speakerphone,17301639,,,, +I,0,android/R$drawable.stat_sys_upload,17301640,,,, +I,0,android/R$drawable.stat_sys_upload_done,17301641,,,, +I,0,android/R$drawable.stat_sys_vp_phone_call,17301671,,,, +I,0,android/R$drawable.stat_sys_vp_phone_call_on_hold,17301672,,,, +I,0,android/R$drawable.stat_sys_warning,17301642,,,, +I,0,android/R$drawable.status_bar_item_app_background,17301643,,,, +I,0,android/R$drawable.status_bar_item_background,17301644,,,, +I,0,android/R$drawable.sym_action_call,17301645,,,, +I,0,android/R$drawable.sym_action_chat,17301646,,,, +I,0,android/R$drawable.sym_action_email,17301647,,,, +I,0,android/R$drawable.sym_call_incoming,17301648,,,, +I,0,android/R$drawable.sym_call_missed,17301649,,,, +I,0,android/R$drawable.sym_call_outgoing,17301650,,,, +I,0,android/R$drawable.sym_contact_card,17301652,,,, +I,0,android/R$drawable.sym_def_app_icon,17301651,,,, +I,0,android/R$drawable.title_bar,17301653,,,, +I,0,android/R$drawable.title_bar_tall,17301670,,,, +I,0,android/R$drawable.toast_frame,17301654,,,, +I,0,android/R$drawable.zoom_plate,17301655,,,, +I,23,android/R$id.accessibilityActionContextClick,16908348,,,, +I,28,android/R$id.accessibilityActionHideTooltip,16908357,,,, +I,30,android/R$id.accessibilityActionImeEnter,16908372,,,, +I,26,android/R$id.accessibilityActionMoveWindow,16908354,,,, +I,29,android/R$id.accessibilityActionPageDown,16908359,,,, +I,29,android/R$id.accessibilityActionPageLeft,16908360,,,, +I,29,android/R$id.accessibilityActionPageRight,16908361,,,, +I,29,android/R$id.accessibilityActionPageUp,16908358,,,, +I,30,android/R$id.accessibilityActionPressAndHold,16908362,,,, +I,23,android/R$id.accessibilityActionScrollDown,16908346,,,, +I,23,android/R$id.accessibilityActionScrollLeft,16908345,,,, +I,23,android/R$id.accessibilityActionScrollRight,16908347,,,, +I,23,android/R$id.accessibilityActionScrollToPosition,16908343,,,, +I,23,android/R$id.accessibilityActionScrollUp,16908344,,,, +I,24,android/R$id.accessibilityActionSetProgress,16908349,,,, +I,23,android/R$id.accessibilityActionShowOnScreen,16908342,,,, +I,28,android/R$id.accessibilityActionShowTooltip,16908356,,,, +I,30,android/R$id.accessibilitySystemActionBack,16908363,,,, +I,30,android/R$id.accessibilitySystemActionHome,16908364,,,, +I,30,android/R$id.accessibilitySystemActionLockScreen,16908370,,,, +I,30,android/R$id.accessibilitySystemActionNotifications,16908366,,,, +I,30,android/R$id.accessibilitySystemActionPowerDialog,16908368,,,, +I,30,android/R$id.accessibilitySystemActionQuickSettings,16908367,,,, +I,30,android/R$id.accessibilitySystemActionRecents,16908365,,,, +I,30,android/R$id.accessibilitySystemActionTakeScreenshot,16908371,,,, +I,30,android/R$id.accessibilitySystemActionToggleSplitScreen,16908369,,,, +I,0,android/R$id.addToDictionary,16908330,,,, +I,26,android/R$id.autofill,16908355,,,, +I,0,android/R$id.background,16908288,,,, +I,0,android/R$id.button1,16908313,,,, +I,0,android/R$id.button2,16908314,,,, +I,0,android/R$id.button3,16908315,,,, +I,0,android/R$id.candidatesArea,16908317,,,, +I,0,android/R$id.checkbox,16908289,,,, +I,0,android/R$id.closeButton,16908327,,,, +I,0,android/R$id.content,16908290,,,, +I,0,android/R$id.copy,16908321,,,, +I,0,android/R$id.copyUrl,16908323,,,, +I,0,android/R$id.custom,16908331,,,, +I,0,android/R$id.cut,16908320,,,, +I,0,android/R$id.edit,16908291,,,, +I,0,android/R$id.empty,16908292,,,, +I,0,android/R$id.extractArea,16908316,,,, +I,0,android/R$id.hint,16908293,,,, +I,15,android/R$id.home,16908332,,,, +I,0,android/R$id.icon,16908294,,,, +I,24,android/R$id.icon_frame,16908350,,,, +I,0,android/R$id.icon1,16908295,,,, +I,0,android/R$id.icon2,16908296,,,, +I,0,android/R$id.input,16908297,,,, +I,0,android/R$id.inputArea,16908318,,,, +I,0,android/R$id.inputExtractEditText,16908325,,,, +I,0,android/R$id.keyboardView,16908326,,,, +I,0,android/R$id.list,16908298,,,, +I,24,android/R$id.list_container,16908351,,,, +I,21,android/R$id.mask,16908334,,,, +I,0,android/R$id.message,16908299,,,, +I,21,android/R$id.navigationBarBackground,16908336,,,, +I,0,android/R$id.paste,16908322,,,, +I,23,android/R$id.pasteAsPlainText,16908337,,,, +I,0,android/R$id.primary,16908300,,,, +I,0,android/R$id.progress,16908301,,,, +I,23,android/R$id.redo,16908339,,,, +I,23,android/R$id.replaceText,16908340,,,, +I,0,android/R$id.secondaryProgress,16908303,,,, +I,0,android/R$id.selectAll,16908319,,,, +I,0,android/R$id.selectedIcon,16908302,,,, +I,15,android/R$id.selectTextMode,16908333,,,, +I,23,android/R$id.shareText,16908341,,,, +I,0,android/R$id.startSelectingText,16908328,,,, +I,21,android/R$id.statusBarBackground,16908335,,,, +I,0,android/R$id.stopSelectingText,16908329,,,, +I,0,android/R$id.summary,16908304,,,, +I,24,android/R$id.switch_widget,16908352,,,, +I,0,android/R$id.switchInputMethod,16908324,,,, +I,0,android/R$id.tabcontent,16908305,,,, +I,0,android/R$id.tabhost,16908306,,,, +I,0,android/R$id.tabs,16908307,,,, +I,0,android/R$id.text1,16908308,,,, +I,0,android/R$id.text2,16908309,,,, +I,26,android/R$id.textAssist,16908353,,,, +I,0,android/R$id.title,16908310,,,, +I,0,android/R$id.toggle,16908311,,,, +I,23,android/R$id.undo,16908338,,,, +I,0,android/R$id.widget_frame,16908312,,,, +I,0,android/R$integer.config_longAnimTime,17694722,,,, +I,0,android/R$integer.config_mediumAnimTime,17694721,,,, +I,0,android/R$integer.config_shortAnimTime,17694720,,,, +I,15,android/R$integer.status_bar_notification_info_maxnum,17694723,,,, +I,15,android/R$interpolator.accelerate_cubic,17563650,,,, +I,15,android/R$interpolator.accelerate_decelerate,17563654,,,, +I,15,android/R$interpolator.accelerate_quad,17563648,,,, +I,15,android/R$interpolator.accelerate_quint,17563652,,,, +I,15,android/R$interpolator.anticipate,17563655,,,, +I,15,android/R$interpolator.anticipate_overshoot,17563657,,,, +I,15,android/R$interpolator.bounce,17563658,,,, +I,15,android/R$interpolator.cycle,17563660,,,, +I,15,android/R$interpolator.decelerate_cubic,17563651,,,, +I,15,android/R$interpolator.decelerate_quad,17563649,,,, +I,15,android/R$interpolator.decelerate_quint,17563653,,,, +I,28,android/R$interpolator.fast_out_extra_slow_in,17563674,,,, +I,21,android/R$interpolator.fast_out_linear_in,17563663,,,, +I,21,android/R$interpolator.fast_out_slow_in,17563661,,,, +I,15,android/R$interpolator.linear,17563659,,,, +I,21,android/R$interpolator.linear_out_slow_in,17563662,,,, +I,15,android/R$interpolator.overshoot,17563656,,,, +I,0,android/R$layout.activity_list_item,17367040,,,, +I,0,android/R$layout.browser_link_context_header,17367054,,,, +I,0,android/R$layout.expandable_list_content,17367041,,,, +I,15,android/R$layout.list_content,17367060,,,, +I,0,android/R$layout.preference_category,17367042,,,, +I,0,android/R$layout.select_dialog_item,17367057,,,, +I,0,android/R$layout.select_dialog_multichoice,17367059,,,, +I,0,android/R$layout.select_dialog_singlechoice,17367058,,,, +I,0,android/R$layout.simple_dropdown_item_1line,17367050,,,, +I,0,android/R$layout.simple_expandable_list_item_1,17367046,,,, +I,0,android/R$layout.simple_expandable_list_item_2,17367047,,,, +I,0,android/R$layout.simple_gallery_item,17367051,,,, +I,0,android/R$layout.simple_list_item_1,17367043,,,, +I,0,android/R$layout.simple_list_item_2,17367044,,,, +I,15,android/R$layout.simple_list_item_activated_1,17367062,,,, +I,15,android/R$layout.simple_list_item_activated_2,17367063,,,, +I,0,android/R$layout.simple_list_item_checked,17367045,,,, +I,0,android/R$layout.simple_list_item_multiple_choice,17367056,,,, +I,0,android/R$layout.simple_list_item_single_choice,17367055,,,, +I,15,android/R$layout.simple_selectable_list_item,17367061,,,, +I,0,android/R$layout.simple_spinner_dropdown_item,17367049,,,, +I,0,android/R$layout.simple_spinner_item,17367048,,,, +I,0,android/R$layout.test_list_item,17367052,,,, +I,0,android/R$layout.two_line_list_item,17367053,,,, +I,15,android/R$mipmap.sym_def_app_icon,17629184,,,, +I,27,android/R$string.autofill,17039386,,,, +I,0,android/R$string.cancel,17039360,,,, +I,0,android/R$string.copy,17039361,,,, +I,0,android/R$string.copyUrl,17039362,,,, +I,0,android/R$string.cut,17039363,,,, +I,0,android/R$string.defaultMsisdnAlphaTag,17039365,,,, +I,0,android/R$string.defaultVoiceMailAlphaTag,17039364,,,, +I,0,android/R$string.dialog_alert_title,17039380,,,, +I,0,android/R$string.emptyPhoneNumber,17039366,,,, +I,23,android/R$string.fingerprint_icon_content_description,17039384,,,, +I,0,android/R$string.httpErrorBadUrl,17039367,,,, +I,0,android/R$string.httpErrorUnsupportedScheme,17039368,,,, +I,0,android/R$string.no,17039369,,,, +I,0,android/R$string.ok,17039370,,,, +I,0,android/R$string.paste,17039371,,,, +I,26,android/R$string.paste_as_plain_text,17039385,,,, +I,0,android/R$string.search_go,17039372,,,, +I,0,android/R$string.selectAll,17039373,,,, +I,15,android/R$string.selectTextMode,17039382,,,, +I,15,android/R$string.status_bar_notification_info_overflow,17039383,,,, +I,0,android/R$string.unknownName,17039374,,,, +I,0,android/R$string.untitled,17039375,,,, +I,0,android/R$string.VideoView_error_button,17039376,,,, +I,0,android/R$string.VideoView_error_text_invalid_progressive_playback,17039381,,,, +I,0,android/R$string.VideoView_error_text_unknown,17039377,,,, +I,0,android/R$string.VideoView_error_title,17039378,,,, +I,0,android/R$string.yes,17039379,,,, +I,0,android/R$style.Animation,16973824,,,, +I,0,android/R$style.Animation_Activity,16973825,,,, +I,0,android/R$style.Animation_Dialog,16973826,,,, +I,0,android/R$style.Animation_InputMethod,16973910,,,, +I,0,android/R$style.Animation_Toast,16973828,,,, +I,0,android/R$style.Animation_Translucent,16973827,,,, +I,15,android/R$style.DeviceDefault_ButtonBar,16974287,,,, +I,15,android/R$style.DeviceDefault_ButtonBar_AlertDialog,16974288,,,, +I,15,android/R$style.DeviceDefault_Light_ButtonBar,16974290,,,, +I,15,android/R$style.DeviceDefault_Light_ButtonBar_AlertDialog,16974291,,,, +I,15,android/R$style.DeviceDefault_Light_SegmentedButton,16974292,,,, +I,15,android/R$style.DeviceDefault_SegmentedButton,16974289,,,, +I,15,android/R$style.Holo_ButtonBar,16974053,,,, +I,15,android/R$style.Holo_ButtonBar_AlertDialog,16974055,,,, +I,15,android/R$style.Holo_Light_ButtonBar,16974054,,,, +I,15,android/R$style.Holo_Light_ButtonBar_AlertDialog,16974056,,,, +I,15,android/R$style.Holo_Light_SegmentedButton,16974058,,,, +I,15,android/R$style.Holo_SegmentedButton,16974057,,,, +I,0,android/R$style.MediaButton,16973879,,,, +I,0,android/R$style.MediaButton_Ffwd,16973883,,,, +I,0,android/R$style.MediaButton_Next,16973881,,,, +I,0,android/R$style.MediaButton_Pause,16973885,,,, +I,0,android/R$style.MediaButton_Play,16973882,,,, +I,0,android/R$style.MediaButton_Previous,16973880,,,, +I,0,android/R$style.MediaButton_Rew,16973884,,,, +I,0,android/R$style.TextAppearance,16973886,,,, +I,15,android/R$style.TextAppearance_DeviceDefault,16974253,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_DialogWindowTitle,16974264,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Inverse,16974254,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Large,16974255,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Large_Inverse,16974256,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Medium,16974257,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Medium_Inverse,16974258,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_SearchResult_Subtitle,16974262,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_SearchResult_Title,16974261,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Small,16974259,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Small_Inverse,16974260,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget,16974265,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Menu,16974286,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle,16974279,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse,16974283,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Title,16974278,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse,16974282,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle,16974281,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse,16974285,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Title,16974280,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse,16974284,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_Button,16974266,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_DropDownHint,16974271,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_DropDownItem,16974272,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_EditText,16974274,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_IconMenu_Item,16974267,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu,16974275,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu_Large,16974276,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_PopupMenu_Small,16974277,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_TabWidget,16974268,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView,16974269,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView_PopupMenu,16974270,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_Widget_TextView_SpinnerItem,16974273,,,, +I,15,android/R$style.TextAppearance_DeviceDefault_WindowTitle,16974263,,,, +I,0,android/R$style.TextAppearance_DialogWindowTitle,16973889,,,, +I,15,android/R$style.TextAppearance_Holo,16974075,,,, +I,15,android/R$style.TextAppearance_Holo_DialogWindowTitle,16974103,,,, +I,15,android/R$style.TextAppearance_Holo_Inverse,16974076,,,, +I,15,android/R$style.TextAppearance_Holo_Large,16974077,,,, +I,15,android/R$style.TextAppearance_Holo_Large_Inverse,16974078,,,, +I,15,android/R$style.TextAppearance_Holo_Medium,16974079,,,, +I,15,android/R$style.TextAppearance_Holo_Medium_Inverse,16974080,,,, +I,15,android/R$style.TextAppearance_Holo_SearchResult_Subtitle,16974084,,,, +I,15,android/R$style.TextAppearance_Holo_SearchResult_Title,16974083,,,, +I,15,android/R$style.TextAppearance_Holo_Small,16974081,,,, +I,15,android/R$style.TextAppearance_Holo_Small_Inverse,16974082,,,, +I,15,android/R$style.TextAppearance_Holo_Widget,16974085,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Menu,16974112,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Subtitle,16974099,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Subtitle_Inverse,16974109,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Title,16974098,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionBar_Title_Inverse,16974108,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Subtitle,16974101,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Subtitle_Inverse,16974111,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Title,16974100,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_ActionMode_Title_Inverse,16974110,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_Button,16974086,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_DropDownHint,16974091,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_DropDownItem,16974092,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_EditText,16974094,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_IconMenu_Item,16974087,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu,16974095,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu_Large,16974096,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_PopupMenu_Small,16974097,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_TabWidget,16974088,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_TextView,16974089,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_TextView_PopupMenu,16974090,,,, +I,15,android/R$style.TextAppearance_Holo_Widget_TextView_SpinnerItem,16974093,,,, +I,15,android/R$style.TextAppearance_Holo_WindowTitle,16974102,,,, +I,0,android/R$style.TextAppearance_Inverse,16973887,,,, +I,0,android/R$style.TextAppearance_Large,16973890,,,, +I,0,android/R$style.TextAppearance_Large_Inverse,16973891,,,, +I,21,android/R$style.TextAppearance_Material,16974317,,,, +I,21,android/R$style.TextAppearance_Material_Body1,16974320,,,, +I,21,android/R$style.TextAppearance_Material_Body2,16974319,,,, +I,21,android/R$style.TextAppearance_Material_Button,16974318,,,, +I,21,android/R$style.TextAppearance_Material_Caption,16974321,,,, +I,21,android/R$style.TextAppearance_Material_DialogWindowTitle,16974322,,,, +I,21,android/R$style.TextAppearance_Material_Display1,16974326,,,, +I,21,android/R$style.TextAppearance_Material_Display2,16974325,,,, +I,21,android/R$style.TextAppearance_Material_Display3,16974324,,,, +I,21,android/R$style.TextAppearance_Material_Display4,16974323,,,, +I,21,android/R$style.TextAppearance_Material_Headline,16974327,,,, +I,21,android/R$style.TextAppearance_Material_Inverse,16974328,,,, +I,21,android/R$style.TextAppearance_Material_Large,16974329,,,, +I,21,android/R$style.TextAppearance_Material_Large_Inverse,16974330,,,, +I,21,android/R$style.TextAppearance_Material_Medium,16974331,,,, +I,21,android/R$style.TextAppearance_Material_Medium_Inverse,16974332,,,, +I,21,android/R$style.TextAppearance_Material_Menu,16974333,,,, +I,21,android/R$style.TextAppearance_Material_Notification,16974334,,,, +I,21,android/R$style.TextAppearance_Material_Notification_Emphasis,16974335,,,, +I,21,android/R$style.TextAppearance_Material_Notification_Info,16974336,,,, +I,21,android/R$style.TextAppearance_Material_Notification_Line2,16974337,,,, +I,21,android/R$style.TextAppearance_Material_Notification_Time,16974338,,,, +I,21,android/R$style.TextAppearance_Material_Notification_Title,16974339,,,, +I,21,android/R$style.TextAppearance_Material_SearchResult_Subtitle,16974340,,,, +I,21,android/R$style.TextAppearance_Material_SearchResult_Title,16974341,,,, +I,21,android/R$style.TextAppearance_Material_Small,16974342,,,, +I,21,android/R$style.TextAppearance_Material_Small_Inverse,16974343,,,, +I,21,android/R$style.TextAppearance_Material_Subhead,16974344,,,, +I,21,android/R$style.TextAppearance_Material_Title,16974345,,,, +I,21,android/R$style.TextAppearance_Material_Widget,16974347,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Menu,16974348,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Subtitle,16974349,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse,16974350,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Title,16974351,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionBar_Title_Inverse,16974352,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Subtitle,16974353,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse,16974354,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Title,16974355,,,, +I,21,android/R$style.TextAppearance_Material_Widget_ActionMode_Title_Inverse,16974356,,,, +I,21,android/R$style.TextAppearance_Material_Widget_Button,16974357,,,, +I,24,android/R$style.TextAppearance_Material_Widget_Button_Borderless_Colored,16974559,,,, +I,24,android/R$style.TextAppearance_Material_Widget_Button_Colored,16974558,,,, +I,23,android/R$style.TextAppearance_Material_Widget_Button_Inverse,16974548,,,, +I,21,android/R$style.TextAppearance_Material_Widget_DropDownHint,16974358,,,, +I,21,android/R$style.TextAppearance_Material_Widget_DropDownItem,16974359,,,, +I,21,android/R$style.TextAppearance_Material_Widget_EditText,16974360,,,, +I,21,android/R$style.TextAppearance_Material_Widget_IconMenu_Item,16974361,,,, +I,21,android/R$style.TextAppearance_Material_Widget_PopupMenu,16974362,,,, +I,21,android/R$style.TextAppearance_Material_Widget_PopupMenu_Large,16974363,,,, +I,21,android/R$style.TextAppearance_Material_Widget_PopupMenu_Small,16974364,,,, +I,21,android/R$style.TextAppearance_Material_Widget_TabWidget,16974365,,,, +I,21,android/R$style.TextAppearance_Material_Widget_TextView,16974366,,,, +I,21,android/R$style.TextAppearance_Material_Widget_TextView_PopupMenu,16974367,,,, +I,21,android/R$style.TextAppearance_Material_Widget_TextView_SpinnerItem,16974368,,,, +I,21,android/R$style.TextAppearance_Material_Widget_Toolbar_Subtitle,16974369,,,, +I,21,android/R$style.TextAppearance_Material_Widget_Toolbar_Title,16974370,,,, +I,21,android/R$style.TextAppearance_Material_WindowTitle,16974346,,,, +I,0,android/R$style.TextAppearance_Medium,16973892,,,, +I,0,android/R$style.TextAppearance_Medium_Inverse,16973893,,,, +I,0,android/R$style.TextAppearance_Small,16973894,,,, +I,0,android/R$style.TextAppearance_Small_Inverse,16973895,,,, +I,0,android/R$style.TextAppearance_StatusBar_EventContent,16973927,,,, +I,0,android/R$style.TextAppearance_StatusBar_EventContent_Title,16973928,,,, +I,0,android/R$style.TextAppearance_StatusBar_Icon,16973926,,,, +I,0,android/R$style.TextAppearance_StatusBar_Title,16973925,,,, +I,15,android/R$style.TextAppearance_SuggestionHighlight,16974104,,,, +I,0,android/R$style.TextAppearance_Theme,16973888,,,, +I,0,android/R$style.TextAppearance_Theme_Dialog,16973896,,,, +I,0,android/R$style.TextAppearance_Widget,16973897,,,, +I,0,android/R$style.TextAppearance_Widget_Button,16973898,,,, +I,0,android/R$style.TextAppearance_Widget_DropDownHint,16973904,,,, +I,0,android/R$style.TextAppearance_Widget_DropDownItem,16973905,,,, +I,0,android/R$style.TextAppearance_Widget_EditText,16973900,,,, +I,0,android/R$style.TextAppearance_Widget_IconMenu_Item,16973899,,,, +I,15,android/R$style.TextAppearance_Widget_PopupMenu_Large,16973952,,,, +I,15,android/R$style.TextAppearance_Widget_PopupMenu_Small,16973953,,,, +I,0,android/R$style.TextAppearance_Widget_TabWidget,16973901,,,, +I,0,android/R$style.TextAppearance_Widget_TextView,16973902,,,, +I,0,android/R$style.TextAppearance_Widget_TextView_PopupMenu,16973903,,,, +I,0,android/R$style.TextAppearance_Widget_TextView_SpinnerItem,16973906,,,, +I,0,android/R$style.TextAppearance_WindowTitle,16973907,,,, +I,0,android/R$style.Theme,16973829,,,, +I,0,android/R$style.Theme_Black,16973832,,,, +I,0,android/R$style.Theme_Black_NoTitleBar,16973833,,,, +I,0,android/R$style.Theme_Black_NoTitleBar_Fullscreen,16973834,,,, +I,15,android/R$style.Theme_DeviceDefault,16974120,,,, +I,29,android/R$style.Theme_DeviceDefault_DayNight,16974563,,,, +I,15,android/R$style.Theme_DeviceDefault_Dialog,16974126,,,, +I,22,android/R$style.Theme_DeviceDefault_Dialog_Alert,16974545,,,, +I,15,android/R$style.Theme_DeviceDefault_Dialog_MinWidth,16974127,,,, +I,15,android/R$style.Theme_DeviceDefault_Dialog_NoActionBar,16974128,,,, +I,15,android/R$style.Theme_DeviceDefault_Dialog_NoActionBar_MinWidth,16974129,,,, +I,15,android/R$style.Theme_DeviceDefault_DialogWhenLarge,16974134,,,, +I,15,android/R$style.Theme_DeviceDefault_DialogWhenLarge_NoActionBar,16974135,,,, +I,15,android/R$style.Theme_DeviceDefault_InputMethod,16974142,,,, +I,15,android/R$style.Theme_DeviceDefault_Light,16974123,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_DarkActionBar,16974143,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_Dialog,16974130,,,, +I,22,android/R$style.Theme_DeviceDefault_Light_Dialog_Alert,16974546,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_Dialog_MinWidth,16974131,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_Dialog_NoActionBar,16974132,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_Dialog_NoActionBar_MinWidth,16974133,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_DialogWhenLarge,16974136,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_DialogWhenLarge_NoActionBar,16974137,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_NoActionBar,16974124,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_NoActionBar_Fullscreen,16974125,,,, +I,18,android/R$style.Theme_DeviceDefault_Light_NoActionBar_Overscan,16974304,,,, +I,19,android/R$style.Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor,16974308,,,, +I,15,android/R$style.Theme_DeviceDefault_Light_Panel,16974139,,,, +I,15,android/R$style.Theme_DeviceDefault_NoActionBar,16974121,,,, +I,15,android/R$style.Theme_DeviceDefault_NoActionBar_Fullscreen,16974122,,,, +I,18,android/R$style.Theme_DeviceDefault_NoActionBar_Overscan,16974303,,,, +I,19,android/R$style.Theme_DeviceDefault_NoActionBar_TranslucentDecor,16974307,,,, +I,15,android/R$style.Theme_DeviceDefault_Panel,16974138,,,, +I,21,android/R$style.Theme_DeviceDefault_Settings,16974371,,,, +I,15,android/R$style.Theme_DeviceDefault_Wallpaper,16974140,,,, +I,15,android/R$style.Theme_DeviceDefault_Wallpaper_NoTitleBar,16974141,,,, +I,0,android/R$style.Theme_Dialog,16973835,,,, +I,15,android/R$style.Theme_Holo,16973931,,,, +I,15,android/R$style.Theme_Holo_Dialog,16973935,,,, +I,15,android/R$style.Theme_Holo_Dialog_MinWidth,16973936,,,, +I,15,android/R$style.Theme_Holo_Dialog_NoActionBar,16973937,,,, +I,15,android/R$style.Theme_Holo_Dialog_NoActionBar_MinWidth,16973938,,,, +I,15,android/R$style.Theme_Holo_DialogWhenLarge,16973943,,,, +I,15,android/R$style.Theme_Holo_DialogWhenLarge_NoActionBar,16973944,,,, +I,15,android/R$style.Theme_Holo_InputMethod,16973951,,,, +I,15,android/R$style.Theme_Holo_Light,16973934,,,, +I,15,android/R$style.Theme_Holo_Light_DarkActionBar,16974105,,,, +I,15,android/R$style.Theme_Holo_Light_Dialog,16973939,,,, +I,15,android/R$style.Theme_Holo_Light_Dialog_MinWidth,16973940,,,, +I,15,android/R$style.Theme_Holo_Light_Dialog_NoActionBar,16973941,,,, +I,15,android/R$style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,16973942,,,, +I,15,android/R$style.Theme_Holo_Light_DialogWhenLarge,16973945,,,, +I,15,android/R$style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,16973946,,,, +I,15,android/R$style.Theme_Holo_Light_NoActionBar,16974064,,,, +I,15,android/R$style.Theme_Holo_Light_NoActionBar_Fullscreen,16974065,,,, +I,18,android/R$style.Theme_Holo_Light_NoActionBar_Overscan,16974302,,,, +I,19,android/R$style.Theme_Holo_Light_NoActionBar_TranslucentDecor,16974306,,,, +I,15,android/R$style.Theme_Holo_Light_Panel,16973948,,,, +I,15,android/R$style.Theme_Holo_NoActionBar,16973932,,,, +I,15,android/R$style.Theme_Holo_NoActionBar_Fullscreen,16973933,,,, +I,18,android/R$style.Theme_Holo_NoActionBar_Overscan,16974301,,,, +I,19,android/R$style.Theme_Holo_NoActionBar_TranslucentDecor,16974305,,,, +I,15,android/R$style.Theme_Holo_Panel,16973947,,,, +I,15,android/R$style.Theme_Holo_Wallpaper,16973949,,,, +I,15,android/R$style.Theme_Holo_Wallpaper_NoTitleBar,16973950,,,, +I,0,android/R$style.Theme_InputMethod,16973908,,,, +I,0,android/R$style.Theme_Light,16973836,,,, +I,0,android/R$style.Theme_Light_NoTitleBar,16973837,,,, +I,0,android/R$style.Theme_Light_NoTitleBar_Fullscreen,16973838,,,, +I,0,android/R$style.Theme_Light_Panel,16973914,,,, +I,0,android/R$style.Theme_Light_WallpaperSettings,16973922,,,, +I,21,android/R$style.Theme_Material,16974372,,,, +I,21,android/R$style.Theme_Material_Dialog,16974373,,,, +I,21,android/R$style.Theme_Material_Dialog_Alert,16974374,,,, +I,21,android/R$style.Theme_Material_Dialog_MinWidth,16974375,,,, +I,21,android/R$style.Theme_Material_Dialog_NoActionBar,16974376,,,, +I,21,android/R$style.Theme_Material_Dialog_NoActionBar_MinWidth,16974377,,,, +I,21,android/R$style.Theme_Material_Dialog_Presentation,16974378,,,, +I,21,android/R$style.Theme_Material_DialogWhenLarge,16974379,,,, +I,21,android/R$style.Theme_Material_DialogWhenLarge_NoActionBar,16974380,,,, +I,21,android/R$style.Theme_Material_InputMethod,16974381,,,, +I,21,android/R$style.Theme_Material_Light,16974391,,,, +I,21,android/R$style.Theme_Material_Light_DarkActionBar,16974392,,,, +I,21,android/R$style.Theme_Material_Light_Dialog,16974393,,,, +I,21,android/R$style.Theme_Material_Light_Dialog_Alert,16974394,,,, +I,21,android/R$style.Theme_Material_Light_Dialog_MinWidth,16974395,,,, +I,21,android/R$style.Theme_Material_Light_Dialog_NoActionBar,16974396,,,, +I,21,android/R$style.Theme_Material_Light_Dialog_NoActionBar_MinWidth,16974397,,,, +I,21,android/R$style.Theme_Material_Light_Dialog_Presentation,16974398,,,, +I,21,android/R$style.Theme_Material_Light_DialogWhenLarge,16974399,,,, +I,24,android/R$style.Theme_Material_Light_DialogWhenLarge_DarkActionBar,16974552,,,, +I,21,android/R$style.Theme_Material_Light_DialogWhenLarge_NoActionBar,16974400,,,, +I,23,android/R$style.Theme_Material_Light_LightStatusBar,16974549,,,, +I,21,android/R$style.Theme_Material_Light_NoActionBar,16974401,,,, +I,21,android/R$style.Theme_Material_Light_NoActionBar_Fullscreen,16974402,,,, +I,21,android/R$style.Theme_Material_Light_NoActionBar_Overscan,16974403,,,, +I,21,android/R$style.Theme_Material_Light_NoActionBar_TranslucentDecor,16974404,,,, +I,21,android/R$style.Theme_Material_Light_Panel,16974405,,,, +I,21,android/R$style.Theme_Material_Light_Voice,16974406,,,, +I,21,android/R$style.Theme_Material_NoActionBar,16974382,,,, +I,21,android/R$style.Theme_Material_NoActionBar_Fullscreen,16974383,,,, +I,21,android/R$style.Theme_Material_NoActionBar_Overscan,16974384,,,, +I,21,android/R$style.Theme_Material_NoActionBar_TranslucentDecor,16974385,,,, +I,21,android/R$style.Theme_Material_Panel,16974386,,,, +I,21,android/R$style.Theme_Material_Settings,16974387,,,, +I,21,android/R$style.Theme_Material_Voice,16974388,,,, +I,21,android/R$style.Theme_Material_Wallpaper,16974389,,,, +I,21,android/R$style.Theme_Material_Wallpaper_NoTitleBar,16974390,,,, +I,0,android/R$style.Theme_NoDisplay,16973909,,,, +I,0,android/R$style.Theme_NoTitleBar,16973830,,,, +I,0,android/R$style.Theme_NoTitleBar_Fullscreen,16973831,,,, +I,15,android/R$style.Theme_NoTitleBar_OverlayActionModes,16973930,,,, +I,0,android/R$style.Theme_Panel,16973913,,,, +I,0,android/R$style.Theme_Translucent,16973839,,,, +I,0,android/R$style.Theme_Translucent_NoTitleBar,16973840,,,, +I,0,android/R$style.Theme_Translucent_NoTitleBar_Fullscreen,16973841,,,, +I,0,android/R$style.Theme_Wallpaper,16973918,,,, +I,0,android/R$style.Theme_Wallpaper_NoTitleBar,16973919,,,, +I,0,android/R$style.Theme_Wallpaper_NoTitleBar_Fullscreen,16973920,,,, +I,0,android/R$style.Theme_WallpaperSettings,16973921,,,, +I,15,android/R$style.Theme_WithActionBar,16973929,,,, +I,21,android/R$style.ThemeOverlay,16974407,,,, +I,29,android/R$style.ThemeOverlay_DeviceDefault_Accent_DayNight,16974564,,,, +I,21,android/R$style.ThemeOverlay_Material,16974408,,,, +I,21,android/R$style.ThemeOverlay_Material_ActionBar,16974409,,,, +I,21,android/R$style.ThemeOverlay_Material_Dark,16974411,,,, +I,21,android/R$style.ThemeOverlay_Material_Dark_ActionBar,16974412,,,, +I,23,android/R$style.ThemeOverlay_Material_Dialog,16974550,,,, +I,23,android/R$style.ThemeOverlay_Material_Dialog_Alert,16974551,,,, +I,21,android/R$style.ThemeOverlay_Material_Light,16974410,,,, +I,0,android/R$style.Widget,16973842,,,, +I,0,android/R$style.Widget_AbsListView,16973843,,,, +I,15,android/R$style.Widget_ActionBar,16973954,,,, +I,15,android/R$style.Widget_ActionBar_TabBar,16974068,,,, +I,15,android/R$style.Widget_ActionBar_TabText,16974067,,,, +I,15,android/R$style.Widget_ActionBar_TabView,16974066,,,, +I,15,android/R$style.Widget_ActionButton,16973956,,,, +I,15,android/R$style.Widget_ActionButton_CloseMode,16973960,,,, +I,15,android/R$style.Widget_ActionButton_Overflow,16973959,,,, +I,0,android/R$style.Widget_AutoCompleteTextView,16973863,,,, +I,0,android/R$style.Widget_Button,16973844,,,, +I,0,android/R$style.Widget_Button_Inset,16973845,,,, +I,0,android/R$style.Widget_Button_Small,16973846,,,, +I,0,android/R$style.Widget_Button_Toggle,16973847,,,, +I,15,android/R$style.Widget_CalendarView,16974059,,,, +I,0,android/R$style.Widget_CompoundButton,16973848,,,, +I,0,android/R$style.Widget_CompoundButton_CheckBox,16973849,,,, +I,0,android/R$style.Widget_CompoundButton_RadioButton,16973850,,,, +I,0,android/R$style.Widget_CompoundButton_Star,16973851,,,, +I,15,android/R$style.Widget_DatePicker,16974062,,,, +I,15,android/R$style.Widget_DeviceDefault,16974144,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionBar,16974187,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionBar_Solid,16974195,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionBar_TabBar,16974194,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionBar_TabText,16974193,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionBar_TabView,16974192,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionButton,16974182,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionButton_CloseMode,16974186,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionButton_Overflow,16974183,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionButton_TextButton,16974184,,,, +I,15,android/R$style.Widget_DeviceDefault_ActionMode,16974185,,,, +I,15,android/R$style.Widget_DeviceDefault_AutoCompleteTextView,16974151,,,, +I,15,android/R$style.Widget_DeviceDefault_Button,16974145,,,, +I,15,android/R$style.Widget_DeviceDefault_Button_Borderless,16974188,,,, +I,28,android/R$style.Widget_DeviceDefault_Button_Borderless_Colored,16974561,,,, +I,15,android/R$style.Widget_DeviceDefault_Button_Borderless_Small,16974149,,,, +I,28,android/R$style.Widget_DeviceDefault_Button_Colored,16974560,,,, +I,15,android/R$style.Widget_DeviceDefault_Button_Inset,16974147,,,, +I,15,android/R$style.Widget_DeviceDefault_Button_Small,16974146,,,, +I,15,android/R$style.Widget_DeviceDefault_Button_Toggle,16974148,,,, +I,15,android/R$style.Widget_DeviceDefault_CalendarView,16974190,,,, +I,17,android/R$style.Widget_DeviceDefault_CheckedTextView,16974299,,,, +I,15,android/R$style.Widget_DeviceDefault_CompoundButton_CheckBox,16974152,,,, +I,15,android/R$style.Widget_DeviceDefault_CompoundButton_RadioButton,16974169,,,, +I,15,android/R$style.Widget_DeviceDefault_CompoundButton_Star,16974173,,,, +I,15,android/R$style.Widget_DeviceDefault_DatePicker,16974191,,,, +I,15,android/R$style.Widget_DeviceDefault_DropDownItem,16974177,,,, +I,15,android/R$style.Widget_DeviceDefault_DropDownItem_Spinner,16974178,,,, +I,15,android/R$style.Widget_DeviceDefault_EditText,16974154,,,, +I,15,android/R$style.Widget_DeviceDefault_ExpandableListView,16974155,,,, +I,21,android/R$style.Widget_DeviceDefault_FastScroll,16974313,,,, +I,15,android/R$style.Widget_DeviceDefault_GridView,16974156,,,, +I,15,android/R$style.Widget_DeviceDefault_HorizontalScrollView,16974171,,,, +I,15,android/R$style.Widget_DeviceDefault_ImageButton,16974157,,,, +I,15,android/R$style.Widget_DeviceDefault_Light,16974196,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar,16974243,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_Solid,16974247,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse,16974248,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabBar,16974246,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse,16974249,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabText,16974245,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse,16974251,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabView,16974244,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse,16974250,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionButton,16974239,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionButton_CloseMode,16974242,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionButton_Overflow,16974240,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionMode,16974241,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ActionMode_Inverse,16974252,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_AutoCompleteTextView,16974203,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Button,16974197,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Button_Borderless_Small,16974201,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Button_Inset,16974199,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Button_Small,16974198,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Button_Toggle,16974200,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_CalendarView,16974238,,,, +I,17,android/R$style.Widget_DeviceDefault_Light_CheckedTextView,16974300,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_CheckBox,16974204,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_RadioButton,16974224,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_CompoundButton_Star,16974228,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_DropDownItem,16974232,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_DropDownItem_Spinner,16974233,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_EditText,16974206,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ExpandableListView,16974207,,,, +I,21,android/R$style.Widget_DeviceDefault_Light_FastScroll,16974315,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_GridView,16974208,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_HorizontalScrollView,16974226,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ImageButton,16974209,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ListPopupWindow,16974235,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ListView,16974210,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ListView_DropDown,16974205,,,, +I,16,android/R$style.Widget_DeviceDefault_Light_MediaRouteButton,16974296,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_PopupMenu,16974236,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_PopupWindow,16974211,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar,16974212,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Horizontal,16974213,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Inverse,16974217,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Large,16974216,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Large_Inverse,16974219,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small,16974214,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small_Inverse,16974218,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ProgressBar_Small_Title,16974215,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_RatingBar,16974221,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_RatingBar_Indicator,16974222,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_RatingBar_Small,16974223,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_ScrollView,16974225,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_SeekBar,16974220,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Spinner,16974227,,,, +I,21,android/R$style.Widget_DeviceDefault_Light_StackView,16974316,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_Tab,16974237,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_TabWidget,16974229,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_TextView,16974202,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_TextView_SpinnerItem,16974234,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_WebTextView,16974230,,,, +I,15,android/R$style.Widget_DeviceDefault_Light_WebView,16974231,,,, +I,15,android/R$style.Widget_DeviceDefault_ListPopupWindow,16974180,,,, +I,15,android/R$style.Widget_DeviceDefault_ListView,16974158,,,, +I,15,android/R$style.Widget_DeviceDefault_ListView_DropDown,16974153,,,, +I,16,android/R$style.Widget_DeviceDefault_MediaRouteButton,16974295,,,, +I,15,android/R$style.Widget_DeviceDefault_PopupMenu,16974181,,,, +I,15,android/R$style.Widget_DeviceDefault_PopupWindow,16974159,,,, +I,15,android/R$style.Widget_DeviceDefault_ProgressBar,16974160,,,, +I,15,android/R$style.Widget_DeviceDefault_ProgressBar_Horizontal,16974161,,,, +I,15,android/R$style.Widget_DeviceDefault_ProgressBar_Large,16974164,,,, +I,15,android/R$style.Widget_DeviceDefault_ProgressBar_Small,16974162,,,, +I,15,android/R$style.Widget_DeviceDefault_ProgressBar_Small_Title,16974163,,,, +I,15,android/R$style.Widget_DeviceDefault_RatingBar,16974166,,,, +I,15,android/R$style.Widget_DeviceDefault_RatingBar_Indicator,16974167,,,, +I,15,android/R$style.Widget_DeviceDefault_RatingBar_Small,16974168,,,, +I,15,android/R$style.Widget_DeviceDefault_ScrollView,16974170,,,, +I,15,android/R$style.Widget_DeviceDefault_SeekBar,16974165,,,, +I,15,android/R$style.Widget_DeviceDefault_Spinner,16974172,,,, +I,21,android/R$style.Widget_DeviceDefault_StackView,16974314,,,, +I,15,android/R$style.Widget_DeviceDefault_Tab,16974189,,,, +I,15,android/R$style.Widget_DeviceDefault_TabWidget,16974174,,,, +I,15,android/R$style.Widget_DeviceDefault_TextView,16974150,,,, +I,15,android/R$style.Widget_DeviceDefault_TextView_SpinnerItem,16974179,,,, +I,15,android/R$style.Widget_DeviceDefault_WebTextView,16974175,,,, +I,15,android/R$style.Widget_DeviceDefault_WebView,16974176,,,, +I,0,android/R$style.Widget_DropDownItem,16973867,,,, +I,0,android/R$style.Widget_DropDownItem_Spinner,16973868,,,, +I,0,android/R$style.Widget_EditText,16973859,,,, +I,0,android/R$style.Widget_ExpandableListView,16973860,,,, +I,21,android/R$style.Widget_FastScroll,16974309,,,, +I,15,android/R$style.Widget_FragmentBreadCrumbs,16973961,,,, +I,0,android/R$style.Widget_Gallery,16973877,,,, +I,0,android/R$style.Widget_GridView,16973874,,,, +I,15,android/R$style.Widget_Holo,16973962,,,, +I,15,android/R$style.Widget_Holo_ActionBar,16974004,,,, +I,15,android/R$style.Widget_Holo_ActionBar_Solid,16974113,,,, +I,15,android/R$style.Widget_Holo_ActionBar_TabBar,16974071,,,, +I,15,android/R$style.Widget_Holo_ActionBar_TabText,16974070,,,, +I,15,android/R$style.Widget_Holo_ActionBar_TabView,16974069,,,, +I,15,android/R$style.Widget_Holo_ActionButton,16973999,,,, +I,15,android/R$style.Widget_Holo_ActionButton_CloseMode,16974003,,,, +I,15,android/R$style.Widget_Holo_ActionButton_Overflow,16974000,,,, +I,15,android/R$style.Widget_Holo_ActionButton_TextButton,16974001,,,, +I,15,android/R$style.Widget_Holo_ActionMode,16974002,,,, +I,15,android/R$style.Widget_Holo_AutoCompleteTextView,16973968,,,, +I,15,android/R$style.Widget_Holo_Button,16973963,,,, +I,15,android/R$style.Widget_Holo_Button_Borderless,16974050,,,, +I,15,android/R$style.Widget_Holo_Button_Borderless_Small,16974106,,,, +I,15,android/R$style.Widget_Holo_Button_Inset,16973965,,,, +I,15,android/R$style.Widget_Holo_Button_Small,16973964,,,, +I,15,android/R$style.Widget_Holo_Button_Toggle,16973966,,,, +I,15,android/R$style.Widget_Holo_CalendarView,16974060,,,, +I,17,android/R$style.Widget_Holo_CheckedTextView,16974297,,,, +I,15,android/R$style.Widget_Holo_CompoundButton_CheckBox,16973969,,,, +I,15,android/R$style.Widget_Holo_CompoundButton_RadioButton,16973986,,,, +I,15,android/R$style.Widget_Holo_CompoundButton_Star,16973990,,,, +I,15,android/R$style.Widget_Holo_DatePicker,16974063,,,, +I,15,android/R$style.Widget_Holo_DropDownItem,16973994,,,, +I,15,android/R$style.Widget_Holo_DropDownItem_Spinner,16973995,,,, +I,15,android/R$style.Widget_Holo_EditText,16973971,,,, +I,15,android/R$style.Widget_Holo_ExpandableListView,16973972,,,, +I,15,android/R$style.Widget_Holo_GridView,16973973,,,, +I,15,android/R$style.Widget_Holo_HorizontalScrollView,16973988,,,, +I,15,android/R$style.Widget_Holo_ImageButton,16973974,,,, +I,15,android/R$style.Widget_Holo_Light,16974005,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar,16974049,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_Solid,16974114,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_Solid_Inverse,16974115,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabBar,16974074,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabBar_Inverse,16974116,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabText,16974073,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabText_Inverse,16974118,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabView,16974072,,,, +I,15,android/R$style.Widget_Holo_Light_ActionBar_TabView_Inverse,16974117,,,, +I,15,android/R$style.Widget_Holo_Light_ActionButton,16974045,,,, +I,15,android/R$style.Widget_Holo_Light_ActionButton_CloseMode,16974048,,,, +I,15,android/R$style.Widget_Holo_Light_ActionButton_Overflow,16974046,,,, +I,15,android/R$style.Widget_Holo_Light_ActionMode,16974047,,,, +I,15,android/R$style.Widget_Holo_Light_ActionMode_Inverse,16974119,,,, +I,15,android/R$style.Widget_Holo_Light_AutoCompleteTextView,16974011,,,, +I,15,android/R$style.Widget_Holo_Light_Button,16974006,,,, +I,15,android/R$style.Widget_Holo_Light_Button_Borderless_Small,16974107,,,, +I,15,android/R$style.Widget_Holo_Light_Button_Inset,16974008,,,, +I,15,android/R$style.Widget_Holo_Light_Button_Small,16974007,,,, +I,15,android/R$style.Widget_Holo_Light_Button_Toggle,16974009,,,, +I,15,android/R$style.Widget_Holo_Light_CalendarView,16974061,,,, +I,17,android/R$style.Widget_Holo_Light_CheckedTextView,16974298,,,, +I,15,android/R$style.Widget_Holo_Light_CompoundButton_CheckBox,16974012,,,, +I,15,android/R$style.Widget_Holo_Light_CompoundButton_RadioButton,16974032,,,, +I,15,android/R$style.Widget_Holo_Light_CompoundButton_Star,16974036,,,, +I,15,android/R$style.Widget_Holo_Light_DropDownItem,16974040,,,, +I,15,android/R$style.Widget_Holo_Light_DropDownItem_Spinner,16974041,,,, +I,15,android/R$style.Widget_Holo_Light_EditText,16974014,,,, +I,15,android/R$style.Widget_Holo_Light_ExpandableListView,16974015,,,, +I,15,android/R$style.Widget_Holo_Light_GridView,16974016,,,, +I,15,android/R$style.Widget_Holo_Light_HorizontalScrollView,16974034,,,, +I,15,android/R$style.Widget_Holo_Light_ImageButton,16974017,,,, +I,15,android/R$style.Widget_Holo_Light_ListPopupWindow,16974043,,,, +I,15,android/R$style.Widget_Holo_Light_ListView,16974018,,,, +I,15,android/R$style.Widget_Holo_Light_ListView_DropDown,16974013,,,, +I,16,android/R$style.Widget_Holo_Light_MediaRouteButton,16974294,,,, +I,15,android/R$style.Widget_Holo_Light_PopupMenu,16974044,,,, +I,15,android/R$style.Widget_Holo_Light_PopupWindow,16974019,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar,16974020,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Horizontal,16974021,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Inverse,16974025,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Large,16974024,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Large_Inverse,16974027,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Small,16974022,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Small_Inverse,16974026,,,, +I,15,android/R$style.Widget_Holo_Light_ProgressBar_Small_Title,16974023,,,, +I,15,android/R$style.Widget_Holo_Light_RatingBar,16974029,,,, +I,15,android/R$style.Widget_Holo_Light_RatingBar_Indicator,16974030,,,, +I,15,android/R$style.Widget_Holo_Light_RatingBar_Small,16974031,,,, +I,15,android/R$style.Widget_Holo_Light_ScrollView,16974033,,,, +I,15,android/R$style.Widget_Holo_Light_SeekBar,16974028,,,, +I,15,android/R$style.Widget_Holo_Light_Spinner,16974035,,,, +I,15,android/R$style.Widget_Holo_Light_Tab,16974052,,,, +I,15,android/R$style.Widget_Holo_Light_TabWidget,16974037,,,, +I,15,android/R$style.Widget_Holo_Light_TextView,16974010,,,, +I,15,android/R$style.Widget_Holo_Light_TextView_SpinnerItem,16974042,,,, +I,15,android/R$style.Widget_Holo_Light_WebTextView,16974038,,,, +I,15,android/R$style.Widget_Holo_Light_WebView,16974039,,,, +I,15,android/R$style.Widget_Holo_ListPopupWindow,16973997,,,, +I,15,android/R$style.Widget_Holo_ListView,16973975,,,, +I,15,android/R$style.Widget_Holo_ListView_DropDown,16973970,,,, +I,16,android/R$style.Widget_Holo_MediaRouteButton,16974293,,,, +I,15,android/R$style.Widget_Holo_PopupMenu,16973998,,,, +I,15,android/R$style.Widget_Holo_PopupWindow,16973976,,,, +I,15,android/R$style.Widget_Holo_ProgressBar,16973977,,,, +I,15,android/R$style.Widget_Holo_ProgressBar_Horizontal,16973978,,,, +I,15,android/R$style.Widget_Holo_ProgressBar_Large,16973981,,,, +I,15,android/R$style.Widget_Holo_ProgressBar_Small,16973979,,,, +I,15,android/R$style.Widget_Holo_ProgressBar_Small_Title,16973980,,,, +I,15,android/R$style.Widget_Holo_RatingBar,16973983,,,, +I,15,android/R$style.Widget_Holo_RatingBar_Indicator,16973984,,,, +I,15,android/R$style.Widget_Holo_RatingBar_Small,16973985,,,, +I,15,android/R$style.Widget_Holo_ScrollView,16973987,,,, +I,15,android/R$style.Widget_Holo_SeekBar,16973982,,,, +I,15,android/R$style.Widget_Holo_Spinner,16973989,,,, +I,15,android/R$style.Widget_Holo_Tab,16974051,,,, +I,15,android/R$style.Widget_Holo_TabWidget,16973991,,,, +I,15,android/R$style.Widget_Holo_TextView,16973967,,,, +I,15,android/R$style.Widget_Holo_TextView_SpinnerItem,16973996,,,, +I,15,android/R$style.Widget_Holo_WebTextView,16973992,,,, +I,15,android/R$style.Widget_Holo_WebView,16973993,,,, +I,0,android/R$style.Widget_ImageButton,16973862,,,, +I,0,android/R$style.Widget_ImageWell,16973861,,,, +I,0,android/R$style.Widget_KeyboardView,16973911,,,, +I,15,android/R$style.Widget_ListPopupWindow,16973957,,,, +I,0,android/R$style.Widget_ListView,16973870,,,, +I,0,android/R$style.Widget_ListView_DropDown,16973872,,,, +I,0,android/R$style.Widget_ListView_Menu,16973873,,,, +I,0,android/R$style.Widget_ListView_White,16973871,,,, +I,21,android/R$style.Widget_Material,16974413,,,, +I,21,android/R$style.Widget_Material_ActionBar,16974414,,,, +I,21,android/R$style.Widget_Material_ActionBar_Solid,16974415,,,, +I,21,android/R$style.Widget_Material_ActionBar_TabBar,16974416,,,, +I,21,android/R$style.Widget_Material_ActionBar_TabText,16974417,,,, +I,21,android/R$style.Widget_Material_ActionBar_TabView,16974418,,,, +I,21,android/R$style.Widget_Material_ActionButton,16974419,,,, +I,21,android/R$style.Widget_Material_ActionButton_CloseMode,16974420,,,, +I,21,android/R$style.Widget_Material_ActionButton_Overflow,16974421,,,, +I,21,android/R$style.Widget_Material_ActionMode,16974422,,,, +I,21,android/R$style.Widget_Material_AutoCompleteTextView,16974423,,,, +I,21,android/R$style.Widget_Material_Button,16974424,,,, +I,21,android/R$style.Widget_Material_Button_Borderless,16974425,,,, +I,21,android/R$style.Widget_Material_Button_Borderless_Colored,16974426,,,, +I,21,android/R$style.Widget_Material_Button_Borderless_Small,16974427,,,, +I,23,android/R$style.Widget_Material_Button_Colored,16974547,,,, +I,21,android/R$style.Widget_Material_Button_Inset,16974428,,,, +I,21,android/R$style.Widget_Material_Button_Small,16974429,,,, +I,21,android/R$style.Widget_Material_Button_Toggle,16974430,,,, +I,21,android/R$style.Widget_Material_ButtonBar,16974431,,,, +I,21,android/R$style.Widget_Material_ButtonBar_AlertDialog,16974432,,,, +I,21,android/R$style.Widget_Material_CalendarView,16974433,,,, +I,21,android/R$style.Widget_Material_CheckedTextView,16974434,,,, +I,21,android/R$style.Widget_Material_CompoundButton_CheckBox,16974435,,,, +I,21,android/R$style.Widget_Material_CompoundButton_RadioButton,16974436,,,, +I,21,android/R$style.Widget_Material_CompoundButton_Star,16974437,,,, +I,24,android/R$style.Widget_Material_CompoundButton_Switch,16974554,,,, +I,21,android/R$style.Widget_Material_DatePicker,16974438,,,, +I,21,android/R$style.Widget_Material_DropDownItem,16974439,,,, +I,21,android/R$style.Widget_Material_DropDownItem_Spinner,16974440,,,, +I,21,android/R$style.Widget_Material_EditText,16974441,,,, +I,21,android/R$style.Widget_Material_ExpandableListView,16974442,,,, +I,21,android/R$style.Widget_Material_FastScroll,16974443,,,, +I,21,android/R$style.Widget_Material_GridView,16974444,,,, +I,21,android/R$style.Widget_Material_HorizontalScrollView,16974445,,,, +I,21,android/R$style.Widget_Material_ImageButton,16974446,,,, +I,21,android/R$style.Widget_Material_Light,16974478,,,, +I,21,android/R$style.Widget_Material_Light_ActionBar,16974479,,,, +I,21,android/R$style.Widget_Material_Light_ActionBar_Solid,16974480,,,, +I,21,android/R$style.Widget_Material_Light_ActionBar_TabBar,16974481,,,, +I,21,android/R$style.Widget_Material_Light_ActionBar_TabText,16974482,,,, +I,21,android/R$style.Widget_Material_Light_ActionBar_TabView,16974483,,,, +I,21,android/R$style.Widget_Material_Light_ActionButton,16974484,,,, +I,21,android/R$style.Widget_Material_Light_ActionButton_CloseMode,16974485,,,, +I,21,android/R$style.Widget_Material_Light_ActionButton_Overflow,16974486,,,, +I,21,android/R$style.Widget_Material_Light_ActionMode,16974487,,,, +I,21,android/R$style.Widget_Material_Light_AutoCompleteTextView,16974488,,,, +I,21,android/R$style.Widget_Material_Light_Button,16974489,,,, +I,21,android/R$style.Widget_Material_Light_Button_Borderless,16974490,,,, +I,21,android/R$style.Widget_Material_Light_Button_Borderless_Colored,16974491,,,, +I,21,android/R$style.Widget_Material_Light_Button_Borderless_Small,16974492,,,, +I,21,android/R$style.Widget_Material_Light_Button_Inset,16974493,,,, +I,21,android/R$style.Widget_Material_Light_Button_Small,16974494,,,, +I,21,android/R$style.Widget_Material_Light_Button_Toggle,16974495,,,, +I,21,android/R$style.Widget_Material_Light_ButtonBar,16974496,,,, +I,21,android/R$style.Widget_Material_Light_ButtonBar_AlertDialog,16974497,,,, +I,21,android/R$style.Widget_Material_Light_CalendarView,16974498,,,, +I,21,android/R$style.Widget_Material_Light_CheckedTextView,16974499,,,, +I,21,android/R$style.Widget_Material_Light_CompoundButton_CheckBox,16974500,,,, +I,21,android/R$style.Widget_Material_Light_CompoundButton_RadioButton,16974501,,,, +I,21,android/R$style.Widget_Material_Light_CompoundButton_Star,16974502,,,, +I,24,android/R$style.Widget_Material_Light_CompoundButton_Switch,16974555,,,, +I,21,android/R$style.Widget_Material_Light_DatePicker,16974503,,,, +I,21,android/R$style.Widget_Material_Light_DropDownItem,16974504,,,, +I,21,android/R$style.Widget_Material_Light_DropDownItem_Spinner,16974505,,,, +I,21,android/R$style.Widget_Material_Light_EditText,16974506,,,, +I,21,android/R$style.Widget_Material_Light_ExpandableListView,16974507,,,, +I,21,android/R$style.Widget_Material_Light_FastScroll,16974508,,,, +I,21,android/R$style.Widget_Material_Light_GridView,16974509,,,, +I,21,android/R$style.Widget_Material_Light_HorizontalScrollView,16974510,,,, +I,21,android/R$style.Widget_Material_Light_ImageButton,16974511,,,, +I,21,android/R$style.Widget_Material_Light_ListPopupWindow,16974512,,,, +I,21,android/R$style.Widget_Material_Light_ListView,16974513,,,, +I,21,android/R$style.Widget_Material_Light_ListView_DropDown,16974514,,,, +I,21,android/R$style.Widget_Material_Light_MediaRouteButton,16974515,,,, +I,24,android/R$style.Widget_Material_Light_NumberPicker,16974557,,,, +I,21,android/R$style.Widget_Material_Light_PopupMenu,16974516,,,, +I,21,android/R$style.Widget_Material_Light_PopupMenu_Overflow,16974517,,,, +I,21,android/R$style.Widget_Material_Light_PopupWindow,16974518,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar,16974519,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Horizontal,16974520,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Inverse,16974521,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Large,16974522,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Large_Inverse,16974523,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Small,16974524,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Small_Inverse,16974525,,,, +I,21,android/R$style.Widget_Material_Light_ProgressBar_Small_Title,16974526,,,, +I,21,android/R$style.Widget_Material_Light_RatingBar,16974527,,,, +I,21,android/R$style.Widget_Material_Light_RatingBar_Indicator,16974528,,,, +I,21,android/R$style.Widget_Material_Light_RatingBar_Small,16974529,,,, +I,21,android/R$style.Widget_Material_Light_ScrollView,16974530,,,, +I,21,android/R$style.Widget_Material_Light_SearchView,16974531,,,, +I,21,android/R$style.Widget_Material_Light_SeekBar,16974532,,,, +I,21,android/R$style.Widget_Material_Light_SegmentedButton,16974533,,,, +I,21,android/R$style.Widget_Material_Light_Spinner,16974535,,,, +I,21,android/R$style.Widget_Material_Light_Spinner_Underlined,16974536,,,, +I,21,android/R$style.Widget_Material_Light_StackView,16974534,,,, +I,21,android/R$style.Widget_Material_Light_Tab,16974537,,,, +I,21,android/R$style.Widget_Material_Light_TabWidget,16974538,,,, +I,21,android/R$style.Widget_Material_Light_TextView,16974539,,,, +I,21,android/R$style.Widget_Material_Light_TextView_SpinnerItem,16974540,,,, +I,21,android/R$style.Widget_Material_Light_TimePicker,16974541,,,, +I,21,android/R$style.Widget_Material_Light_WebTextView,16974542,,,, +I,21,android/R$style.Widget_Material_Light_WebView,16974543,,,, +I,21,android/R$style.Widget_Material_ListPopupWindow,16974447,,,, +I,21,android/R$style.Widget_Material_ListView,16974448,,,, +I,21,android/R$style.Widget_Material_ListView_DropDown,16974449,,,, +I,21,android/R$style.Widget_Material_MediaRouteButton,16974450,,,, +I,24,android/R$style.Widget_Material_NumberPicker,16974556,,,, +I,21,android/R$style.Widget_Material_PopupMenu,16974451,,,, +I,21,android/R$style.Widget_Material_PopupMenu_Overflow,16974452,,,, +I,21,android/R$style.Widget_Material_PopupWindow,16974453,,,, +I,21,android/R$style.Widget_Material_ProgressBar,16974454,,,, +I,21,android/R$style.Widget_Material_ProgressBar_Horizontal,16974455,,,, +I,21,android/R$style.Widget_Material_ProgressBar_Large,16974456,,,, +I,21,android/R$style.Widget_Material_ProgressBar_Small,16974457,,,, +I,21,android/R$style.Widget_Material_ProgressBar_Small_Title,16974458,,,, +I,21,android/R$style.Widget_Material_RatingBar,16974459,,,, +I,21,android/R$style.Widget_Material_RatingBar_Indicator,16974460,,,, +I,21,android/R$style.Widget_Material_RatingBar_Small,16974461,,,, +I,21,android/R$style.Widget_Material_ScrollView,16974462,,,, +I,21,android/R$style.Widget_Material_SearchView,16974463,,,, +I,21,android/R$style.Widget_Material_SeekBar,16974464,,,, +I,24,android/R$style.Widget_Material_SeekBar_Discrete,16974553,,,, +I,21,android/R$style.Widget_Material_SegmentedButton,16974465,,,, +I,21,android/R$style.Widget_Material_Spinner,16974467,,,, +I,21,android/R$style.Widget_Material_Spinner_Underlined,16974468,,,, +I,21,android/R$style.Widget_Material_StackView,16974466,,,, +I,21,android/R$style.Widget_Material_Tab,16974469,,,, +I,21,android/R$style.Widget_Material_TabWidget,16974470,,,, +I,21,android/R$style.Widget_Material_TextView,16974471,,,, +I,21,android/R$style.Widget_Material_TextView_SpinnerItem,16974472,,,, +I,21,android/R$style.Widget_Material_TimePicker,16974473,,,, +I,21,android/R$style.Widget_Material_Toolbar,16974474,,,, +I,21,android/R$style.Widget_Material_Toolbar_Button_Navigation,16974475,,,, +I,21,android/R$style.Widget_Material_WebTextView,16974476,,,, +I,21,android/R$style.Widget_Material_WebView,16974477,,,, +I,15,android/R$style.Widget_PopupMenu,16973958,,,, +I,0,android/R$style.Widget_PopupWindow,16973878,,,, +I,0,android/R$style.Widget_ProgressBar,16973852,,,, +I,0,android/R$style.Widget_ProgressBar_Horizontal,16973855,,,, +I,0,android/R$style.Widget_ProgressBar_Inverse,16973915,,,, +I,0,android/R$style.Widget_ProgressBar_Large,16973853,,,, +I,0,android/R$style.Widget_ProgressBar_Large_Inverse,16973916,,,, +I,0,android/R$style.Widget_ProgressBar_Small,16973854,,,, +I,0,android/R$style.Widget_ProgressBar_Small_Inverse,16973917,,,, +I,0,android/R$style.Widget_RatingBar,16973857,,,, +I,0,android/R$style.Widget_ScrollView,16973869,,,, +I,0,android/R$style.Widget_SeekBar,16973856,,,, +I,0,android/R$style.Widget_Spinner,16973864,,,, +I,15,android/R$style.Widget_Spinner_DropDown,16973955,,,, +I,21,android/R$style.Widget_StackView,16974310,,,, +I,0,android/R$style.Widget_TabWidget,16973876,,,, +I,0,android/R$style.Widget_TextView,16973858,,,, +I,0,android/R$style.Widget_TextView_PopupMenu,16973865,,,, +I,0,android/R$style.Widget_TextView_SpinnerItem,16973866,,,, +I,21,android/R$style.Widget_Toolbar,16974311,,,, +I,21,android/R$style.Widget_Toolbar_Button_Navigation,16974312,,,, +I,0,android/R$style.Widget_WebView,16973875,,,, +I,21,android/R$transition.explode,17760259,,,, +I,21,android/R$transition.fade,17760258,,,, +I,21,android/R$transition.move,17760257,,,, +I,21,android/R$transition.no_transition,17760256,,,, +I,21,android/R$transition.slide_bottom,17760260,,,, +I,21,android/R$transition.slide_left,17760263,,,, +I,21,android/R$transition.slide_right,17760262,,,, +I,21,android/R$transition.slide_top,17760261,,,, E,15,android/renderscript/Allocation.USAGE_GRAPHICS_CONSTANTS,8,Android.Renderscripts.AllocationUsage,GraphicsConstants,keep, E,15,android/renderscript/Allocation.USAGE_GRAPHICS_RENDER_TARGET,16,Android.Renderscripts.AllocationUsage,GraphicsRenderTarget,keep, E,15,android/renderscript/Allocation.USAGE_GRAPHICS_TEXTURE,2,Android.Renderscripts.AllocationUsage,GraphicsTexture,keep, @@ -9885,19 +10510,19 @@ E,18,android/renderscript/Allocation.USAGE_SHARED,128,Android.Renderscripts.Allo E,15,android/renderscript/Mesh$TriangleMeshBuilder.COLOR,1,Android.Renderscripts.TriangleFlags,Color,keep,flags E,15,android/renderscript/Mesh$TriangleMeshBuilder.NORMAL,2,Android.Renderscripts.TriangleFlags,Normal,keep,flags E,15,android/renderscript/Mesh$TriangleMeshBuilder.TEXTURE_0,256,Android.Renderscripts.TriangleFlags,Texture0,keep,flags -?,15,android/renderscript/ProgramFragmentFixedFunction$Builder.MAX_TEXTURE,2,,,, +I,15,android/renderscript/ProgramFragmentFixedFunction$Builder.MAX_TEXTURE,2,,,, E,21,android/renderscript/RenderScript.CREATE_FLAG_LOW_LATENCY,2,Android.Renderscripts.CreateFlag,LowLatency,keep, E,21,android/renderscript/RenderScript.CREATE_FLAG_LOW_POWER,4,Android.Renderscripts.CreateFlag,LowPower,keep, E,21,android/renderscript/RenderScript.CREATE_FLAG_NONE,0,Android.Renderscripts.CreateFlag,None,keep, -?,23,android/renderscript/ScriptIntrinsicBLAS.CONJ_TRANSPOSE,113,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.LEFT,141,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.LOWER,122,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.NO_TRANSPOSE,111,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.NON_UNIT,131,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.RIGHT,142,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.TRANSPOSE,112,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.UNIT,132,,,, -?,23,android/renderscript/ScriptIntrinsicBLAS.UPPER,121,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.CONJ_TRANSPOSE,113,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.LEFT,141,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.LOWER,122,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.NO_TRANSPOSE,111,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.NON_UNIT,131,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.RIGHT,142,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.TRANSPOSE,112,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.UNIT,132,,,, +I,23,android/renderscript/ScriptIntrinsicBLAS.UPPER,121,,,, E,30,android/security/identity/IdentityCredentialStore.CIPHERSUITE_ECDHE_HKDF_ECDSA_WITH_AES_256_GCM_SHA256,1,Android.Security.Identity.CredentialStoreCipherSuite,EcdheHkdfEcdsaWithAes256GcmSha256,remove, E,30,android/security/identity/ResultData.STATUS_NO_ACCESS_CONTROL_PROFILES,6,Android.Security.Identity.ResultDataStatus,NoAccessControlProfiles,remove, E,30,android/security/identity/ResultData.STATUS_NO_SUCH_ENTRY,1,Android.Security.Identity.ResultDataStatus,NoSuchEntry,remove, @@ -9913,19 +10538,34 @@ E,23,android/security/keystore/KeyProperties.ORIGIN_GENERATED,1,Android.Security E,23,android/security/keystore/KeyProperties.ORIGIN_IMPORTED,2,Android.Security.Keystore.KeyStoreOrigin,Imported,keep, E,28,android/security/keystore/KeyProperties.ORIGIN_SECURELY_IMPORTED,8,Android.Security.Keystore.KeyStoreOrigin,SecurelyImported,keep, E,23,android/security/keystore/KeyProperties.ORIGIN_UNKNOWN,4,Android.Security.Keystore.KeyStoreOrigin,Unknown,keep, +E,31,android/security/keystore/KeyProperties.PURPOSE_AGREE_KEY,64,Android.Security.Keystore.KeyStorePurpose,AgreeKey,remove,flags +E,31,android/security/keystore/KeyProperties.PURPOSE_ATTEST_KEY,128,Android.Security.Keystore.KeyStorePurpose,AttestKey,remove,flags E,23,android/security/keystore/KeyProperties.PURPOSE_DECRYPT,2,Android.Security.Keystore.KeyStorePurpose,Decrypt,keep,flags E,23,android/security/keystore/KeyProperties.PURPOSE_ENCRYPT,1,Android.Security.Keystore.KeyStorePurpose,Encrypt,keep,flags E,23,android/security/keystore/KeyProperties.PURPOSE_SIGN,4,Android.Security.Keystore.KeyStorePurpose,Sign,keep,flags E,23,android/security/keystore/KeyProperties.PURPOSE_VERIFY,8,Android.Security.Keystore.KeyStorePurpose,Verify,keep,flags E,28,android/security/keystore/KeyProperties.PURPOSE_WRAP_KEY,32,Android.Security.Keystore.KeyStorePurpose,WrapKey,keep,flags +E,31,android/security/keystore/KeyProperties.SECURITY_LEVEL_SOFTWARE,0,Android.Security.Keystore.KeyStoreSecurityLevel,Software,remove, +E,31,android/security/keystore/KeyProperties.SECURITY_LEVEL_STRONGBOX,2,Android.Security.Keystore.KeyStoreSecurityLevel,Strongbox,remove, +E,31,android/security/keystore/KeyProperties.SECURITY_LEVEL_TRUSTED_ENVIRONMENT,1,Android.Security.Keystore.KeyStoreSecurityLevel,TrustedEnvironment,remove, +E,31,android/security/keystore/KeyProperties.SECURITY_LEVEL_UNKNOWN,-2,Android.Security.Keystore.KeyStoreSecurityLevel,Unknown,remove, +E,31,android/security/keystore/KeyProperties.SECURITY_LEVEL_UNKNOWN_SECURE,-1,Android.Security.Keystore.KeyStoreSecurityLevel,UnknownSecure,remove, +I,31,android/security/keystore/KeyProperties.UNRESTRICTED_USAGE_COUNT,-1,,,, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_DATASET_MATCH,6,Android.Service.Autofill.EventNoSaveUiReason,DatasetMatch,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_FIELD_VALIDATION_FAILED,5,Android.Service.Autofill.EventNoSaveUiReason,FieldValidationFailed,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_HAS_EMPTY_REQUIRED,3,Android.Service.Autofill.EventNoSaveUiReason,HasEmptyRequired,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_NO_SAVE_INFO,1,Android.Service.Autofill.EventNoSaveUiReason,NoSaveInfo,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_NO_VALUE_CHANGED,4,Android.Service.Autofill.EventNoSaveUiReason,NoValueChanged,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_NONE,0,Android.Service.Autofill.EventNoSaveUiReason,None,remove, +E,31,android/service/autofill/FillEventHistory$Event.NO_SAVE_UI_REASON_WITH_DELAY_SAVE_FLAG,2,Android.Service.Autofill.EventNoSaveUiReason,WithDelaySaveFlag,remove, E,26,android/service/autofill/FillEventHistory$Event.TYPE_AUTHENTICATION_SELECTED,2,Android.Service.Autofill.EventType,AuthenticationSelected,keep, E,28,android/service/autofill/FillEventHistory$Event.TYPE_CONTEXT_COMMITTED,4,Android.Service.Autofill.EventType,ContextCommitted,keep, E,26,android/service/autofill/FillEventHistory$Event.TYPE_DATASET_AUTHENTICATION_SELECTED,1,Android.Service.Autofill.EventType,DatasetAuthenticationSelected,keep, E,26,android/service/autofill/FillEventHistory$Event.TYPE_DATASET_SELECTED,0,Android.Service.Autofill.EventType,DatasetSelected,keep, E,30,android/service/autofill/FillEventHistory$Event.TYPE_DATASETS_SHOWN,5,Android.Service.Autofill.EventType,DatasetsShown,remove, E,26,android/service/autofill/FillEventHistory$Event.TYPE_SAVE_SHOWN,3,Android.Service.Autofill.EventType,SaveShown,keep, -?,29,android/service/autofill/FillRequest.FLAG_COMPATIBILITY_MODE_REQUEST,2,,,, -?,26,android/service/autofill/FillRequest.FLAG_MANUAL_REQUEST,1,,,, +I,29,android/service/autofill/FillRequest.FLAG_COMPATIBILITY_MODE_REQUEST,2,,,, +I,26,android/service/autofill/FillRequest.FLAG_MANUAL_REQUEST,1,,,, E,28,android/service/autofill/FillResponse.FLAG_DISABLE_ACTIVITY_ONLY,2,Android.Service.Autofill.AutofillResponseFlags,DisableActivityOnly,remove, E,28,android/service/autofill/FillResponse.FLAG_TRACK_CONTEXT_COMMITED,1,Android.Service.Autofill.AutofillResponseFlags,TrackContextCommited,remove, A,0,,0,Android.Service.Autofill.SaveFlags,None,, @@ -9952,7 +10592,7 @@ E,22,android/service/carrier/CarrierMessagingService.DOWNLOAD_STATUS_RETRY_ON_CA E,24,android/service/carrier/CarrierMessagingService.RECEIVE_OPTIONS_DEFAULT,0,Android.Service.Carrier.ReceiveOptions,Default,remove, E,24,android/service/carrier/CarrierMessagingService.RECEIVE_OPTIONS_DROP,1,Android.Service.Carrier.ReceiveOptions,Drop,remove, E,24,android/service/carrier/CarrierMessagingService.RECEIVE_OPTIONS_SKIP_NOTIFY_WHEN_CREDENTIAL_PROTECTED_STORAGE_UNAVAILABLE,2,Android.Service.Carrier.ReceiveOptions,SkipNotifyWhenCredentialProtectedStorageUnavailable,remove, -?,23,android/service/carrier/CarrierMessagingService.SEND_FLAG_REQUEST_DELIVERY_STATUS,1,,,, +I,23,android/service/carrier/CarrierMessagingService.SEND_FLAG_REQUEST_DELIVERY_STATUS,1,,,, E,22,android/service/carrier/CarrierMessagingService.SEND_STATUS_ERROR,2,Android.Service.Carrier.MessageSendStatus,Error,keep, E,22,android/service/carrier/CarrierMessagingService.SEND_STATUS_OK,0,Android.Service.Carrier.MessageSendStatus,Ok,keep, E,22,android/service/carrier/CarrierMessagingService.SEND_STATUS_RETRY_ON_CARRIER_NETWORK,1,Android.Service.Carrier.MessageSendStatus,RetryOnCarrierNetwork,keep, @@ -10036,6 +10676,7 @@ E,30,android/service/controls/templates/ControlTemplate.TYPE_NO_TEMPLATE,0,Andro E,30,android/service/controls/templates/ControlTemplate.TYPE_RANGE,2,Android.Service.Controls.Templates.ControlTemplateType,Range,remove, E,30,android/service/controls/templates/ControlTemplate.TYPE_STATELESS,8,Android.Service.Controls.Templates.ControlTemplateType,Stateless,remove, E,30,android/service/controls/templates/ControlTemplate.TYPE_TEMPERATURE,7,Android.Service.Controls.Templates.ControlTemplateType,Temperature,remove, +E,31,android/service/controls/templates/ControlTemplate.TYPE_THUMBNAIL,3,Android.Service.Controls.Templates.ControlTemplateType,Thumbnail,remove, E,30,android/service/controls/templates/ControlTemplate.TYPE_TOGGLE,1,Android.Service.Controls.Templates.ControlTemplateType,Toggle,remove, E,30,android/service/controls/templates/ControlTemplate.TYPE_TOGGLE_RANGE,6,Android.Service.Controls.Templates.ControlTemplateType,ToggleRange,remove, A,0,,0,Android.Service.Controls.Templates.TemperatureControlTemplateFlagMode,None,remove, @@ -10057,9 +10698,10 @@ E,24,android/service/notification/Condition.STATE_ERROR,3,Android.Service.Notifi E,24,android/service/notification/Condition.STATE_FALSE,0,Android.Service.Notification.ConditionState,False,remove, E,24,android/service/notification/Condition.STATE_TRUE,1,Android.Service.Notification.ConditionState,True,remove, E,24,android/service/notification/Condition.STATE_UNKNOWN,2,Android.Service.Notification.ConditionState,Unknown,remove, -E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_NEGATIVE,-1,Android.Service.Notification.UserSentiment,Negative,remove, -E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_NEUTRAL,0,Android.Service.Notification.UserSentiment,Neutral,remove, -E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_POSITIVE,1,Android.Service.Notification.UserSentiment,Positive,remove, +E,31,android/service/notification/NotificationListenerService.FLAG_FILTER_TYPE_ALERTING,2,Android.Service.Notification.FlagFilterType,Alerting,remove,flags +E,31,android/service/notification/NotificationListenerService.FLAG_FILTER_TYPE_CONVERSATIONS,1,Android.Service.Notification.FlagFilterType,Conversations,remove,flags +E,31,android/service/notification/NotificationListenerService.FLAG_FILTER_TYPE_ONGOING,8,Android.Service.Notification.FlagFilterType,Ongoing,remove,flags +E,31,android/service/notification/NotificationListenerService.FLAG_FILTER_TYPE_SILENT,4,Android.Service.Notification.FlagFilterType,Silent,remove,flags E,24,android/service/notification/NotificationListenerService.HINT_HOST_DISABLE_CALL_EFFECTS,4,Android.Service.Notification.NotificationListenerServiceHint,HostDisableCallEffects,keep, E,21,android/service/notification/NotificationListenerService.HINT_HOST_DISABLE_EFFECTS,1,Android.Service.Notification.NotificationListenerServiceHint,HostDisableEffects,keep, E,24,android/service/notification/NotificationListenerService.HINT_HOST_DISABLE_NOTIFICATION_EFFECTS,2,Android.Service.Notification.NotificationListenerServiceHint,HostDisableNotificationEffects,keep, @@ -10076,6 +10718,8 @@ E,26,android/service/notification/NotificationListenerService.REASON_APP_CANCEL_ E,26,android/service/notification/NotificationListenerService.REASON_CANCEL,2,Android.Service.Notification.NotificationCancelReason,Cancel,keep, E,26,android/service/notification/NotificationListenerService.REASON_CANCEL_ALL,3,Android.Service.Notification.NotificationCancelReason,CancelAll,keep, E,26,android/service/notification/NotificationListenerService.REASON_CHANNEL_BANNED,17,Android.Service.Notification.NotificationCancelReason,ChannelBanned,keep, +E,31,android/service/notification/NotificationListenerService.REASON_CHANNEL_REMOVED,20,Android.Service.Notification.NotificationCancelReason,ChannelRemoved,remove, +E,31,android/service/notification/NotificationListenerService.REASON_CLEAR_DATA,21,Android.Service.Notification.NotificationCancelReason,ClearData,remove, E,26,android/service/notification/NotificationListenerService.REASON_CLICK,1,Android.Service.Notification.NotificationCancelReason,Click,keep, E,26,android/service/notification/NotificationListenerService.REASON_ERROR,4,Android.Service.Notification.NotificationCancelReason,Error,keep, E,26,android/service/notification/NotificationListenerService.REASON_GROUP_OPTIMIZATION,13,Android.Service.Notification.NotificationCancelReason,GroupOptimization,keep, @@ -10092,6 +10736,10 @@ E,26,android/service/notification/NotificationListenerService.REASON_UNAUTOBUNDL E,26,android/service/notification/NotificationListenerService.REASON_USER_STOPPED,6,Android.Service.Notification.NotificationCancelReason,UserStopped,keep, E,24,android/service/notification/NotificationListenerService.SUPPRESSED_EFFECT_SCREEN_OFF,1,Android.Service.Notification.SuppressEffect,ScreenOff,remove, E,24,android/service/notification/NotificationListenerService.SUPPRESSED_EFFECT_SCREEN_ON,2,Android.Service.Notification.SuppressEffect,ScreenOn,remove, +E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_NEGATIVE,-1,Android.Service.Notification.UserSentiment,Negative,remove, +E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_NEUTRAL,0,Android.Service.Notification.UserSentiment,Neutral,remove, +E,28,android/service/notification/NotificationListenerService$Ranking.USER_SENTIMENT_POSITIVE,1,Android.Service.Notification.UserSentiment,Positive,remove, +I,31,android/service/notification/NotificationListenerService$Ranking.VISIBILITY_NO_OVERRIDE,-1000,,,, E,30,android/service/notification/ZenPolicy.CONVERSATION_SENDERS_ANYONE,1,Android.Service.Notification.ConversationSenders,Anyone,remove, E,30,android/service/notification/ZenPolicy.CONVERSATION_SENDERS_IMPORTANT,2,Android.Service.Notification.ConversationSenders,Important,remove, E,30,android/service/notification/ZenPolicy.CONVERSATION_SENDERS_NONE,3,Android.Service.Notification.ConversationSenders,None,remove, @@ -10125,9 +10773,6 @@ E,21,android/service/voice/AlwaysOnHotwordDetector.STATE_HARDWARE_UNAVAILABLE,-2 E,21,android/service/voice/AlwaysOnHotwordDetector.STATE_KEYPHRASE_ENROLLED,2,Android.Service.Voice.HotwordDetectorState,KeyphraseEnrolled,keep, E,21,android/service/voice/AlwaysOnHotwordDetector.STATE_KEYPHRASE_UNENROLLED,1,Android.Service.Voice.HotwordDetectorState,KeyphraseUnenrolled,keep, E,21,android/service/voice/AlwaysOnHotwordDetector.STATE_KEYPHRASE_UNSUPPORTED,-1,Android.Service.Voice.HotwordDetectorState,KeyphraseUnsupported,keep, -E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_CONTENT,1,Android.Service.Voice.ToucheableInsetsType,Content,remove, -E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_FRAME,0,Android.Service.Voice.ToucheableInsetsType,Frame,remove, -E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_REGION,3,Android.Service.Voice.ToucheableInsetsType,Region,remove, E,24,android/service/voice/VoiceInteractionSession.SHOW_SOURCE_ACTIVITY,16,Android.Service.Voice.ShowFlags,SourceActivity,keep, E,23,android/service/voice/VoiceInteractionSession.SHOW_SOURCE_APPLICATION,8,Android.Service.Voice.ShowFlags,SourceApplication,keep, E,23,android/service/voice/VoiceInteractionSession.SHOW_SOURCE_ASSIST_GESTURE,4,Android.Service.Voice.ShowFlags,SourceAssistGesture,keep, @@ -10136,6 +10781,9 @@ E,29,android/service/voice/VoiceInteractionSession.SHOW_SOURCE_NOTIFICATION,64,A E,29,android/service/voice/VoiceInteractionSession.SHOW_SOURCE_PUSH_TO_TALK,32,Android.Service.Voice.ShowFlags,SourcePushToTalk,keep, E,23,android/service/voice/VoiceInteractionSession.SHOW_WITH_ASSIST,1,Android.Service.Voice.ShowFlags,WithAssist,keep, E,23,android/service/voice/VoiceInteractionSession.SHOW_WITH_SCREENSHOT,2,Android.Service.Voice.ShowFlags,WithScreenshot,keep, +E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_CONTENT,1,Android.Service.Voice.ToucheableInsetsType,Content,remove, +E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_FRAME,0,Android.Service.Voice.ToucheableInsetsType,Frame,remove, +E,23,android/service/voice/VoiceInteractionSession$Insets.TOUCHABLE_INSETS_REGION,3,Android.Service.Voice.ToucheableInsetsType,Region,remove, E,10,android/speech/RecognizerIntent.RESULT_AUDIO_ERROR,5,Android.Speech.RecognizerResult,AudioError,keep, E,10,android/speech/RecognizerIntent.RESULT_CLIENT_ERROR,2,Android.Speech.RecognizerResult,ClientError,keep, E,10,android/speech/RecognizerIntent.RESULT_NETWORK_ERROR,4,Android.Speech.RecognizerResult,NetworkError,keep, @@ -10144,18 +10792,16 @@ E,10,android/speech/RecognizerIntent.RESULT_SERVER_ERROR,3,Android.Speech.Recogn E,10,android/speech/SpeechRecognizer.ERROR_AUDIO,3,Android.Speech.SpeechRecognizerError,Audio,remove, E,10,android/speech/SpeechRecognizer.ERROR_CLIENT,5,Android.Speech.SpeechRecognizerError,Client,remove, E,10,android/speech/SpeechRecognizer.ERROR_INSUFFICIENT_PERMISSIONS,9,Android.Speech.SpeechRecognizerError,InsufficientPermissions,remove, +E,31,android/speech/SpeechRecognizer.ERROR_LANGUAGE_NOT_SUPPORTED,12,Android.Speech.SpeechRecognizerError,LanguageNotSupported,remove, +E,31,android/speech/SpeechRecognizer.ERROR_LANGUAGE_UNAVAILABLE,13,Android.Speech.SpeechRecognizerError,LanguageUnavailable,remove, E,10,android/speech/SpeechRecognizer.ERROR_NETWORK,2,Android.Speech.SpeechRecognizerError,Network,remove, E,10,android/speech/SpeechRecognizer.ERROR_NETWORK_TIMEOUT,1,Android.Speech.SpeechRecognizerError,NetworkTimeout,remove, E,10,android/speech/SpeechRecognizer.ERROR_NO_MATCH,7,Android.Speech.SpeechRecognizerError,NoMatch,remove, E,10,android/speech/SpeechRecognizer.ERROR_RECOGNIZER_BUSY,8,Android.Speech.SpeechRecognizerError,RecognizerBusy,remove, E,10,android/speech/SpeechRecognizer.ERROR_SERVER,4,Android.Speech.SpeechRecognizerError,Server,remove, +E,31,android/speech/SpeechRecognizer.ERROR_SERVER_DISCONNECTED,11,Android.Speech.SpeechRecognizerError,ServerDisconnected,remove, E,10,android/speech/SpeechRecognizer.ERROR_SPEECH_TIMEOUT,6,Android.Speech.SpeechRecognizerError,SpeechTimeout,remove, -E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_BAD_DATA,-1,Android.Speech.Tts.CheckVoiceData,BadData,keep, -E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_FAIL,0,Android.Speech.Tts.CheckVoiceData,Fail,keep, -E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_MISSING_DATA,-2,Android.Speech.Tts.CheckVoiceData,MissingData,keep, -E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_MISSING_VOLUME,-3,Android.Speech.Tts.CheckVoiceData,MissingVolume,keep, -E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_PASS,1,Android.Speech.Tts.CheckVoiceData,Pass,keep, -?,0,android/speech/tts/TextToSpeech$Engine.DEFAULT_STREAM,3,,,, +E,31,android/speech/SpeechRecognizer.ERROR_TOO_MANY_REQUESTS,10,Android.Speech.SpeechRecognizerError,TooManyRequests,remove, E,10,android/speech/tts/TextToSpeech.ERROR,-1,Android.Speech.Tts.OperationResult,Error,keep, E,21,android/speech/tts/TextToSpeech.ERROR_INVALID_REQUEST,-8,Android.Speech.Tts.TextToSpeechError,InvalidRequest,keep, E,21,android/speech/tts/TextToSpeech.ERROR_NETWORK,-6,Android.Speech.Tts.TextToSpeechError,Network,keep, @@ -10173,6 +10819,12 @@ E,10,android/speech/tts/TextToSpeech.QUEUE_ADD,1,Android.Speech.Tts.QueueMode,Ad E,10,android/speech/tts/TextToSpeech.QUEUE_FLUSH,0,Android.Speech.Tts.QueueMode,Flush,keep, E,21,android/speech/tts/TextToSpeech.STOPPED,-2,Android.Speech.Tts.OperationResult,Stopped,keep, E,10,android/speech/tts/TextToSpeech.SUCCESS,0,Android.Speech.Tts.OperationResult,Success,keep, +E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_BAD_DATA,-1,Android.Speech.Tts.CheckVoiceData,BadData,keep, +E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_FAIL,0,Android.Speech.Tts.CheckVoiceData,Fail,keep, +E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_MISSING_DATA,-2,Android.Speech.Tts.CheckVoiceData,MissingData,keep, +E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_MISSING_VOLUME,-3,Android.Speech.Tts.CheckVoiceData,MissingVolume,keep, +E,10,android/speech/tts/TextToSpeech$Engine.CHECK_VOICE_DATA_PASS,1,Android.Speech.Tts.CheckVoiceData,Pass,keep, +I,0,android/speech/tts/TextToSpeech$Engine.DEFAULT_STREAM,3,,,, E,21,android/speech/tts/Voice.LATENCY_HIGH,400,Android.Speech.Tts.VoiceLatency,High,keep, E,21,android/speech/tts/Voice.LATENCY_LOW,200,Android.Speech.Tts.VoiceLatency,Low,keep, E,21,android/speech/tts/Voice.LATENCY_NORMAL,300,Android.Speech.Tts.VoiceLatency,Normal,keep, @@ -10183,11 +10835,26 @@ E,21,android/speech/tts/Voice.QUALITY_LOW,200,Android.Speech.Tts.VoiceQuality,Lo E,21,android/speech/tts/Voice.QUALITY_NORMAL,300,Android.Speech.Tts.VoiceQuality,Normal,keep, E,21,android/speech/tts/Voice.QUALITY_VERY_HIGH,500,Android.Speech.Tts.VoiceQuality,VeryHigh,keep, E,21,android/speech/tts/Voice.QUALITY_VERY_LOW,100,Android.Speech.Tts.VoiceQuality,VeryLow,keep, +E,30,android/telecom/Call.REJECT_REASON_DECLINED,1,Android.Telecom.CallRejectReason,Declined,remove, +E,30,android/telecom/Call.REJECT_REASON_UNWANTED,2,Android.Telecom.CallRejectReason,Unwanted,remove, +E,23,android/telecom/Call.STATE_ACTIVE,4,Android.Telecom.CallState,Active,keep, +E,30,android/telecom/Call.STATE_AUDIO_PROCESSING,12,Android.Telecom.CallState,AudioProcessing,remove, +E,23,android/telecom/Call.STATE_CONNECTING,9,Android.Telecom.CallState,Connecting,keep, +E,23,android/telecom/Call.STATE_DIALING,1,Android.Telecom.CallState,Dialing,keep, +E,23,android/telecom/Call.STATE_DISCONNECTED,7,Android.Telecom.CallState,Disconnected,keep, +E,23,android/telecom/Call.STATE_DISCONNECTING,10,Android.Telecom.CallState,Disconnecting,keep, +E,23,android/telecom/Call.STATE_HOLDING,3,Android.Telecom.CallState,Holding,keep, +E,23,android/telecom/Call.STATE_NEW,0,Android.Telecom.CallState,New,keep, +E,25,android/telecom/Call.STATE_PULLING_CALL,11,Android.Telecom.CallState,PullingCall,keep, +E,23,android/telecom/Call.STATE_RINGING,2,Android.Telecom.CallState,Ringing,keep, +E,23,android/telecom/Call.STATE_SELECT_PHONE_ACCOUNT,8,Android.Telecom.CallState,SelectPhoneAccount,keep, +E,30,android/telecom/Call.STATE_SIMULATED_RINGING,13,Android.Telecom.CallState,SimulatedRinging,remove, E,28,android/telecom/Call$Callback.HANDOVER_FAILURE_DEST_APP_REJECTED,1,Android.Telecom.HandoverFailureReason,DestAppRejected,remove, E,28,android/telecom/Call$Callback.HANDOVER_FAILURE_NOT_SUPPORTED,2,Android.Telecom.HandoverFailureReason,NotSupported,remove, E,28,android/telecom/Call$Callback.HANDOVER_FAILURE_ONGOING_EMERGENCY_CALL,4,Android.Telecom.HandoverFailureReason,OngoingEmergencyCall,remove, E,28,android/telecom/Call$Callback.HANDOVER_FAILURE_UNKNOWN,5,Android.Telecom.HandoverFailureReason,Unknown,remove, E,28,android/telecom/Call$Callback.HANDOVER_FAILURE_USER_REJECTED,3,Android.Telecom.HandoverFailureReason,UserRejected,remove, +E,31,android/telecom/Call$Details.CAPABILITY_ADD_PARTICIPANT,33554432,Android.Telecom.CallCapability,AddParticipant,remove, E,23,android/telecom/Call$Details.CAPABILITY_CAN_PAUSE_VIDEO,1048576,Android.Telecom.CallCapability,CanPauseVideo,keep, E,25,android/telecom/Call$Details.CAPABILITY_CAN_PULL_CALL,8388608,Android.Telecom.CallCapability,CanPullCall,keep, E,24,android/telecom/Call$Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO,4194304,Android.Telecom.CallCapability,CannotDowngradeVideoToAudio,keep, @@ -10212,11 +10879,13 @@ E,29,android/telecom/Call$Details.DIRECTION_OUTGOING,1,Android.Telecom.CallDirec E,29,android/telecom/Call$Details.DIRECTION_UNKNOWN,-1,Android.Telecom.CallDirection,Unknown,remove, E,30,android/telecom/Call$Details.PROPERTY_ASSISTED_DIALING,512,Android.Telecom.CallProperty,AssistedDialing,remove, E,23,android/telecom/Call$Details.PROPERTY_CONFERENCE,1,Android.Telecom.CallProperty,Conference,keep, +E,31,android/telecom/Call$Details.PROPERTY_CROSS_SIM,16384,Android.Telecom.CallProperty,CrossSim,remove, E,23,android/telecom/Call$Details.PROPERTY_EMERGENCY_CALLBACK_MODE,4,Android.Telecom.CallProperty,EmergencyCallbackMode,keep, E,24,android/telecom/Call$Details.PROPERTY_ENTERPRISE_CALL,32,Android.Telecom.CallProperty,EnterpriseCall,keep, E,23,android/telecom/Call$Details.PROPERTY_GENERIC_CONFERENCE,2,Android.Telecom.CallProperty,GenericConference,keep, E,25,android/telecom/Call$Details.PROPERTY_HAS_CDMA_VOICE_PRIVACY,128,Android.Telecom.CallProperty,HasCdmaVoicePrivacy,keep, E,23,android/telecom/Call$Details.PROPERTY_HIGH_DEF_AUDIO,16,Android.Telecom.CallProperty,HighDefAudio,keep, +E,31,android/telecom/Call$Details.PROPERTY_IS_ADHOC_CONFERENCE,8192,Android.Telecom.CallProperty,IsAdhocConference,remove, E,25,android/telecom/Call$Details.PROPERTY_IS_EXTERNAL_CALL,64,Android.Telecom.CallProperty,IsExternalCall,keep, E,29,android/telecom/Call$Details.PROPERTY_NETWORK_IDENTIFIED_EMERGENCY_CALL,2048,Android.Telecom.CallProperty,NetworkIdentifiedEmergencyCall,keep, E,28,android/telecom/Call$Details.PROPERTY_RTT,1024,Android.Telecom.CallProperty,Rtt,keep, @@ -10226,42 +10895,16 @@ E,23,android/telecom/Call$Details.PROPERTY_WIFI,8,Android.Telecom.CallProperty,W E,26,android/telecom/Call$RttCall.RTT_MODE_FULL,1,Android.Telecom.RttMode,Full,keep, E,26,android/telecom/Call$RttCall.RTT_MODE_HCO,2,Android.Telecom.RttMode,Hco,keep, E,26,android/telecom/Call$RttCall.RTT_MODE_VCO,3,Android.Telecom.RttMode,Vco,keep, -E,30,android/telecom/Call.REJECT_REASON_DECLINED,1,Android.Telecom.CallRejectReason,Declined,remove, -E,30,android/telecom/Call.REJECT_REASON_UNWANTED,2,Android.Telecom.CallRejectReason,Unwanted,remove, -E,23,android/telecom/Call.STATE_ACTIVE,4,Android.Telecom.CallState,Active,keep, -E,30,android/telecom/Call.STATE_AUDIO_PROCESSING,12,Android.Telecom.CallState,AudioProcessing,remove, -E,23,android/telecom/Call.STATE_CONNECTING,9,Android.Telecom.CallState,Connecting,keep, -E,23,android/telecom/Call.STATE_DIALING,1,Android.Telecom.CallState,Dialing,keep, -E,23,android/telecom/Call.STATE_DISCONNECTED,7,Android.Telecom.CallState,Disconnected,keep, -E,23,android/telecom/Call.STATE_DISCONNECTING,10,Android.Telecom.CallState,Disconnecting,keep, -E,23,android/telecom/Call.STATE_HOLDING,3,Android.Telecom.CallState,Holding,keep, -E,23,android/telecom/Call.STATE_NEW,0,Android.Telecom.CallState,New,keep, -E,25,android/telecom/Call.STATE_PULLING_CALL,11,Android.Telecom.CallState,PullingCall,keep, -E,23,android/telecom/Call.STATE_RINGING,2,Android.Telecom.CallState,Ringing,keep, -E,23,android/telecom/Call.STATE_SELECT_PHONE_ACCOUNT,8,Android.Telecom.CallState,SelectPhoneAccount,keep, -E,30,android/telecom/Call.STATE_SIMULATED_RINGING,13,Android.Telecom.CallState,SimulatedRinging,remove, E,23,android/telecom/CallAudioState.ROUTE_BLUETOOTH,2,Android.Telecom.CallAudioRoute,Bluetooth,keep, E,23,android/telecom/CallAudioState.ROUTE_EARPIECE,1,Android.Telecom.CallAudioRoute,Earpiece,keep, E,23,android/telecom/CallAudioState.ROUTE_SPEAKER,8,Android.Telecom.CallAudioRoute,Speaker,keep, E,23,android/telecom/CallAudioState.ROUTE_WIRED_HEADSET,4,Android.Telecom.CallAudioRoute,WiredHeadset,keep, E,23,android/telecom/CallAudioState.ROUTE_WIRED_OR_EARPIECE,5,Android.Telecom.CallAudioRoute,WiredOrEarpiece,keep, -E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_FAIL,2,Android.Telecom.RttSessionModifyResult,Fail,keep, -E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_INVALID,3,Android.Telecom.RttSessionModifyResult,Invalid,keep, -E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE,5,Android.Telecom.RttSessionModifyResult,RejectedByRemote,keep, -E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_SUCCESS,1,Android.Telecom.RttSessionModifyResult,Success,keep, -E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_TIMED_OUT,4,Android.Telecom.RttSessionModifyResult,TimedOut,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_FAILURE,5,Android.Telecom.VideoSessionEvent,CameraFailure,keep, -E,26,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_PERMISSION_ERROR,7,Android.Telecom.VideoSessionEvent,CameraPermissionError,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_READY,6,Android.Telecom.VideoSessionEvent,CameraReady,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_RX_PAUSE,1,Android.Telecom.VideoSessionEvent,RxPause,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_RX_RESUME,2,Android.Telecom.VideoSessionEvent,RxResume,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_TX_START,3,Android.Telecom.VideoSessionEvent,TxStart,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_TX_STOP,4,Android.Telecom.VideoSessionEvent,TxStop,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_FAIL,2,Android.Telecom.ModifyRequestResult,Fail,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_INVALID,3,Android.Telecom.ModifyRequestResult,Invalid,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE,5,Android.Telecom.ModifyRequestResult,RejectedByRemote,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_SUCCESS,1,Android.Telecom.ModifyRequestResult,Success,keep, -E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_TIMED_OUT,4,Android.Telecom.ModifyRequestResult,TimedOut,keep, +A,31,,0,Android.Telecom.CallComposerAttachment,None,remove,flags +E,31,android/telecom/CallScreeningService$CallResponse.CALL_COMPOSER_ATTACHMENT_LOCATION,2,Android.Telecom.CallComposerAttachment,Location,remove,flags +E,31,android/telecom/CallScreeningService$CallResponse.CALL_COMPOSER_ATTACHMENT_PICTURE,1,Android.Telecom.CallComposerAttachment,Picture,remove,flags +E,31,android/telecom/CallScreeningService$CallResponse.CALL_COMPOSER_ATTACHMENT_PRIORITY,8,Android.Telecom.CallComposerAttachment,Priority,remove,flags +E,31,android/telecom/CallScreeningService$CallResponse.CALL_COMPOSER_ATTACHMENT_SUBJECT,4,Android.Telecom.CallComposerAttachment,Subject,remove,flags E,30,android/telecom/Connection.AUDIO_CODEC_AMR,1,Android.Telecom.ConnectionAudioCodec,Amr,remove, E,30,android/telecom/Connection.AUDIO_CODEC_AMR_WB,2,Android.Telecom.ConnectionAudioCodec,AmrWb,remove, E,30,android/telecom/Connection.AUDIO_CODEC_EVRC,4,Android.Telecom.ConnectionAudioCodec,Evrc,remove, @@ -10283,6 +10926,7 @@ E,30,android/telecom/Connection.AUDIO_CODEC_GSM_FR,9,Android.Telecom.ConnectionA E,30,android/telecom/Connection.AUDIO_CODEC_GSM_HR,10,Android.Telecom.ConnectionAudioCodec,GsmHr,remove, E,30,android/telecom/Connection.AUDIO_CODEC_NONE,0,Android.Telecom.ConnectionAudioCodec,None,remove, E,30,android/telecom/Connection.AUDIO_CODEC_QCELP13K,3,Android.Telecom.ConnectionAudioCodec,Qcelp13k,remove, +E,31,android/telecom/Connection.CAPABILITY_ADD_PARTICIPANT,67108864,Android.Telecom.ConnectionCapability,AddParticipant,remove, E,23,android/telecom/Connection.CAPABILITY_CAN_PAUSE_VIDEO,1048576,Android.Telecom.ConnectionCapability,CanPauseVideo,keep, E,25,android/telecom/Connection.CAPABILITY_CAN_PULL_CALL,16777216,Android.Telecom.ConnectionCapability,CanPullCall,keep, E,24,android/telecom/Connection.CAPABILITY_CAN_SEND_RESPONSE_VIA_CONNECTION,4194304,Android.Telecom.ConnectionCapability,CanSendResponseViaConnection,keep, @@ -10306,8 +10950,10 @@ E,23,android/telecom/Connection.CAPABILITY_SUPPORTS_VT_REMOTE_TX,2048,Android.Te E,23,android/telecom/Connection.CAPABILITY_SWAP_CONFERENCE,8,Android.Telecom.ConnectionCapability,SwapConference,keep, A,24,,0,Android.Telecom.ConnectionProperties,None,remove, E,30,android/telecom/Connection.PROPERTY_ASSISTED_DIALING,512,Android.Telecom.ConnectionProperties,AssistedDialing,remove, +E,31,android/telecom/Connection.PROPERTY_CROSS_SIM,8192,Android.Telecom.ConnectionProperties,CrossSim,remove, E,24,android/telecom/Connection.PROPERTY_HAS_CDMA_VOICE_PRIVACY,32,Android.Telecom.ConnectionProperties,HasCdmaVoicePrivacy,remove, E,30,android/telecom/Connection.PROPERTY_HIGH_DEF_AUDIO,4,Android.Telecom.ConnectionProperties,HighDefAudio,remove, +E,31,android/telecom/Connection.PROPERTY_IS_ADHOC_CONFERENCE,4096,Android.Telecom.ConnectionProperties,IsAdhocConference,remove, E,24,android/telecom/Connection.PROPERTY_IS_EXTERNAL_CALL,16,Android.Telecom.ConnectionProperties,IsExternalCall,remove, E,24,android/telecom/Connection.PROPERTY_IS_RTT,256,Android.Telecom.ConnectionProperties,IsRtt,remove, E,30,android/telecom/Connection.PROPERTY_NETWORK_IDENTIFIED_EMERGENCY_CALL,1024,Android.Telecom.ConnectionProperties,NetworkIdentifiedEmergencyCall,remove, @@ -10324,6 +10970,23 @@ E,23,android/telecom/Connection.STATE_RINGING,2,Android.Telecom.ConnectionState, E,30,android/telecom/Connection.VERIFICATION_STATUS_FAILED,2,Android.Telecom.ConnectionVerificationStatusType,VerificationStatusFailed,remove, E,30,android/telecom/Connection.VERIFICATION_STATUS_NOT_VERIFIED,0,Android.Telecom.ConnectionVerificationStatusType,VerificationStatusNotVerified,remove, E,30,android/telecom/Connection.VERIFICATION_STATUS_PASSED,1,Android.Telecom.ConnectionVerificationStatusType,VerificationStatusPassed,remove, +E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_FAIL,2,Android.Telecom.RttSessionModifyResult,Fail,keep, +E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_INVALID,3,Android.Telecom.RttSessionModifyResult,Invalid,keep, +E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE,5,Android.Telecom.RttSessionModifyResult,RejectedByRemote,keep, +E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_SUCCESS,1,Android.Telecom.RttSessionModifyResult,Success,keep, +E,26,android/telecom/Connection$RttModifyStatus.SESSION_MODIFY_REQUEST_TIMED_OUT,4,Android.Telecom.RttSessionModifyResult,TimedOut,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_FAILURE,5,Android.Telecom.VideoSessionEvent,CameraFailure,keep, +E,26,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_PERMISSION_ERROR,7,Android.Telecom.VideoSessionEvent,CameraPermissionError,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_CAMERA_READY,6,Android.Telecom.VideoSessionEvent,CameraReady,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_RX_PAUSE,1,Android.Telecom.VideoSessionEvent,RxPause,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_RX_RESUME,2,Android.Telecom.VideoSessionEvent,RxResume,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_TX_START,3,Android.Telecom.VideoSessionEvent,TxStart,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_EVENT_TX_STOP,4,Android.Telecom.VideoSessionEvent,TxStop,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_FAIL,2,Android.Telecom.ModifyRequestResult,Fail,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_INVALID,3,Android.Telecom.ModifyRequestResult,Invalid,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE,5,Android.Telecom.ModifyRequestResult,RejectedByRemote,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_SUCCESS,1,Android.Telecom.ModifyRequestResult,Success,keep, +E,23,android/telecom/Connection$VideoProvider.SESSION_MODIFY_REQUEST_TIMED_OUT,4,Android.Telecom.ModifyRequestResult,TimedOut,keep, E,25,android/telecom/DisconnectCause.ANSWERED_ELSEWHERE,11,Android.Telecom.Causes,AnsweredElsewhere,keep, E,23,android/telecom/DisconnectCause.BUSY,7,Android.Telecom.Causes,Busy,keep, E,25,android/telecom/DisconnectCause.CALL_PULLED,12,Android.Telecom.Causes,CallPulled,keep, @@ -10338,6 +11001,7 @@ E,23,android/telecom/DisconnectCause.REMOTE,3,Android.Telecom.Causes,Remote,keep E,23,android/telecom/DisconnectCause.RESTRICTED,8,Android.Telecom.Causes,Restricted,keep, E,23,android/telecom/DisconnectCause.UNKNOWN,0,Android.Telecom.Causes,Unknown,keep, E,30,android/telecom/PhoneAccount.CAPABILITY_ADHOC_CONFERENCE_CALLING,16384,Android.Telecom.PhoneAccountCapability,AdhocConferenceCalling,remove, +E,31,android/telecom/PhoneAccount.CAPABILITY_CALL_COMPOSER,32768,Android.Telecom.PhoneAccountCapability,CallComposer,remove, E,23,android/telecom/PhoneAccount.CAPABILITY_CALL_PROVIDER,2,Android.Telecom.PhoneAccountCapability,CallProvider,keep, E,23,android/telecom/PhoneAccount.CAPABILITY_CALL_SUBJECT,64,Android.Telecom.PhoneAccountCapability,CallSubject,keep, E,23,android/telecom/PhoneAccount.CAPABILITY_CONNECTION_MANAGER,1,Android.Telecom.PhoneAccountCapability,ConnectionManager,keep, @@ -10348,8 +11012,8 @@ E,23,android/telecom/PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION,4,Android.Telecom. E,26,android/telecom/PhoneAccount.CAPABILITY_SUPPORTS_VIDEO_CALLING,1024,Android.Telecom.PhoneAccountCapability,SupportsVideoCalling,keep, E,23,android/telecom/PhoneAccount.CAPABILITY_VIDEO_CALLING,8,Android.Telecom.PhoneAccountCapability,VideoCalling,keep, E,24,android/telecom/PhoneAccount.CAPABILITY_VIDEO_CALLING_RELIES_ON_PRESENCE,256,Android.Telecom.PhoneAccountCapability,VideoCallingReliesOnPresence,keep, -?,23,android/telecom/PhoneAccount.NO_HIGHLIGHT_COLOR,0,,,, -?,23,android/telecom/PhoneAccount.NO_RESOURCE_ID,-1,,,, +I,23,android/telecom/PhoneAccount.NO_HIGHLIGHT_COLOR,0,,,, +I,23,android/telecom/PhoneAccount.NO_RESOURCE_ID,-1,,,, E,29,android/telecom/PhoneAccountSuggestion.REASON_FREQUENT,2,Android.Telecom.ReasonType,Frequent,remove, E,29,android/telecom/PhoneAccountSuggestion.REASON_INTRA_CARRIER,1,Android.Telecom.ReasonType,IntraCarrier,remove, E,29,android/telecom/PhoneAccountSuggestion.REASON_NONE,0,Android.Telecom.ReasonType,None,remove, @@ -10363,6 +11027,8 @@ E,21,android/telecom/TelecomManager.PRESENTATION_ALLOWED,1,Android.Telecom.Prese E,21,android/telecom/TelecomManager.PRESENTATION_PAYPHONE,4,Android.Telecom.Presentation,Payphone,keep, E,21,android/telecom/TelecomManager.PRESENTATION_RESTRICTED,2,Android.Telecom.Presentation,Restricted,keep, E,21,android/telecom/TelecomManager.PRESENTATION_UNKNOWN,3,Android.Telecom.Presentation,Unknown,keep, +E,31,android/telecom/TelecomManager.PRIORITY_NORMAL,0,Android.Telecom.Priority,Normal,remove, +E,31,android/telecom/TelecomManager.PRIORITY_URGENT,1,Android.Telecom.Priority,Urgent,remove, E,23,android/telecom/VideoProfile.QUALITY_DEFAULT,4,Android.Telecom.VideoQuality,Default,keep, E,23,android/telecom/VideoProfile.QUALITY_HIGH,1,Android.Telecom.VideoQuality,High,keep, E,23,android/telecom/VideoProfile.QUALITY_LOW,3,Android.Telecom.VideoQuality,Low,keep, @@ -10372,87 +11038,89 @@ E,23,android/telecom/VideoProfile.STATE_BIDIRECTIONAL,3,Android.Telecom.VideoPro E,23,android/telecom/VideoProfile.STATE_PAUSED,4,Android.Telecom.VideoProfileState,Paused,keep, E,23,android/telecom/VideoProfile.STATE_RX_ENABLED,2,Android.Telecom.VideoProfileState,RxEnabled,keep, E,23,android/telecom/VideoProfile.STATE_TX_ENABLED,1,Android.Telecom.VideoProfileState,TxEnabled,keep, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.CDMA2000,4,,,, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.EUTRAN,3,,,, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.GERAN,1,,,, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.IWLAN,5,,,, +E,30,android/telephony/AccessNetworkConstants.TRANSPORT_TYPE_WLAN,2,Android.Telephony.Ims.AccessNetworkConstantsTransportType,Wlan,remove, +E,30,android/telephony/AccessNetworkConstants.TRANSPORT_TYPE_WWAN,1,Android.Telephony.Ims.AccessNetworkConstantsTransportType,Wwan,remove, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.CDMA2000,4,,,, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.EUTRAN,3,,,, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.GERAN,1,,,, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.IWLAN,5,,,, I,30,android/telephony/AccessNetworkConstants$AccessNetworkType.NGRAN,6,,,, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.UNKNOWN,0,,,, -?,28,android/telephony/AccessNetworkConstants$AccessNetworkType.UTRAN,2,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_1,1,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_10,10,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_11,11,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_12,12,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_13,13,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_14,14,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_17,17,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_18,18,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_19,19,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_2,2,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_20,20,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_21,21,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_22,22,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_23,23,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_24,24,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_25,25,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_26,26,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_27,27,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_28,28,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_3,3,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_30,30,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_31,31,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_33,33,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_34,34,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_35,35,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_36,36,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_37,37,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_38,38,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_39,39,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_4,4,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_40,40,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_41,41,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_42,42,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_43,43,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_44,44,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_45,45,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_46,46,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_47,47,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_48,48,,,, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.UNKNOWN,0,,,, +I,28,android/telephony/AccessNetworkConstants$AccessNetworkType.UTRAN,2,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_1,1,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_10,10,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_11,11,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_12,12,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_13,13,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_14,14,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_17,17,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_18,18,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_19,19,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_2,2,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_20,20,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_21,21,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_22,22,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_23,23,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_24,24,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_25,25,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_26,26,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_27,27,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_28,28,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_3,3,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_30,30,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_31,31,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_33,33,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_34,34,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_35,35,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_36,36,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_37,37,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_38,38,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_39,39,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_4,4,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_40,40,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_41,41,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_42,42,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_43,43,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_44,44,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_45,45,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_46,46,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_47,47,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_48,48,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_49,49,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_5,5,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_5,5,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_50,50,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_51,51,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_52,52,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_53,53,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_6,6,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_65,65,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_66,66,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_68,68,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_7,7,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_70,70,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_6,6,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_65,65,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_66,66,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_68,68,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_7,7,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_70,70,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_71,71,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_72,72,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_73,73,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_74,74,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_8,8,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_8,8,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_85,85,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_87,87,,,, I,30,android/telephony/AccessNetworkConstants$EutranBand.BAND_88,88,,,, -?,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_9,9,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_450,3,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_480,4,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_710,5,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_750,6,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_850,8,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_DCS1800,12,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_E900,10,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_ER900,14,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_P900,9,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_PCS1900,13,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_R900,11,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T380,1,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T410,2,,,, -?,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T810,7,,,, +I,28,android/telephony/AccessNetworkConstants$EutranBand.BAND_9,9,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_450,3,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_480,4,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_710,5,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_750,6,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_850,8,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_DCS1800,12,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_E900,10,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_ER900,14,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_P900,9,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_PCS1900,13,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_R900,11,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T380,1,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T410,2,,,, +I,28,android/telephony/AccessNetworkConstants$GeranBand.BAND_T810,7,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_1,1,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_12,12,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_14,14,,,, @@ -10462,6 +11130,7 @@ I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_20,20,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_25,25,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_257,257,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_258,258,,,, +I,31,android/telephony/AccessNetworkConstants$NgranBands.BAND_26,26,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_260,260,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_261,261,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_28,28,,,, @@ -10473,10 +11142,12 @@ I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_38,38,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_39,39,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_40,40,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_41,41,,,, +I,31,android/telephony/AccessNetworkConstants$NgranBands.BAND_46,46,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_48,48,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_5,5,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_50,50,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_51,51,,,, +I,31,android/telephony/AccessNetworkConstants$NgranBands.BAND_53,53,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_65,65,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_66,66,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_7,7,,,, @@ -10502,41 +11173,36 @@ I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_92,92,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_93,93,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_94,94,,,, I,30,android/telephony/AccessNetworkConstants$NgranBands.BAND_95,95,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_1,1,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_10,10,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_11,11,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_12,12,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_13,13,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_14,14,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_19,19,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_2,2,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_20,20,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_21,21,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_22,22,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_25,25,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_26,26,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_3,3,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_4,4,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_5,5,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_6,6,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_7,7,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_8,8,,,, -?,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_9,9,,,, +I,31,android/telephony/AccessNetworkConstants$NgranBands.BAND_96,96,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_1,1,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_10,10,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_11,11,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_12,12,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_13,13,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_14,14,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_19,19,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_2,2,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_20,20,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_21,21,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_22,22,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_25,25,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_26,26,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_3,3,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_4,4,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_5,5,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_6,6,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_7,7,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_8,8,,,, +I,28,android/telephony/AccessNetworkConstants$UtranBand.BAND_9,9,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_A,101,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_B,102,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_C,103,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_D,104,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_E,105,,,, I,30,android/telephony/AccessNetworkConstants$UtranBand.BAND_F,106,,,, -E,30,android/telephony/AccessNetworkConstants.TRANSPORT_TYPE_WLAN,2,Android.Telephony.Ims.AccessNetworkConstantsTransportType,Wlan,remove, -E,30,android/telephony/AccessNetworkConstants.TRANSPORT_TYPE_WWAN,1,Android.Telephony.Ims.AccessNetworkConstantsTransportType,Wwan,remove, E,29,android/telephony/AvailableNetworkInfo.PRIORITY_HIGH,1,Android.Telephony.AvailableNetworkInfoPriority,High,remove, E,29,android/telephony/AvailableNetworkInfo.PRIORITY_LOW,3,Android.Telephony.AvailableNetworkInfoPriority,Low,remove, E,29,android/telephony/AvailableNetworkInfo.PRIORITY_MED,2,Android.Telephony.AvailableNetworkInfoPriority,Med,remove, -E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_CONDITIONAL,1,Android.Telephony.BarringType,Conditional,remove, -E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_NONE,0,Android.Telephony.BarringType,None,remove, -E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_UNCONDITIONAL,2,Android.Telephony.BarringType,Unconditional,remove, -E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_UNKNOWN,-1,Android.Telephony.BarringType,Unknown,remove, E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_CS_FALLBACK,5,Android.Telephony.BarringServiceType,CsFallback,remove, E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_CS_SERVICE,0,Android.Telephony.BarringServiceType,CsService,remove, E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_CS_VOICE,2,Android.Telephony.BarringServiceType,CsVoice,remove, @@ -10547,18 +11213,41 @@ E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_MO_DATA,4,Android.Teleph E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_MO_SIGNALLING,3,Android.Telephony.BarringServiceType,MoSignalling,remove, E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_PS_SERVICE,1,Android.Telephony.BarringServiceType,PsService,remove, E,30,android/telephony/BarringInfo.BARRING_SERVICE_TYPE_SMS,9,Android.Telephony.BarringServiceType,Sms,remove, -?,26,android/telephony/CarrierConfigManager.DATA_CYCLE_THRESHOLD_DISABLED,-2,,,, +E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_CONDITIONAL,1,Android.Telephony.BarringType,Conditional,remove, +E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_NONE,0,Android.Telephony.BarringType,None,remove, +E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_UNCONDITIONAL,2,Android.Telephony.BarringType,Unconditional,remove, +E,30,android/telephony/BarringInfo$BarringServiceInfo.BARRING_TYPE_UNKNOWN,-1,Android.Telephony.BarringType,Unknown,remove, +I,31,android/telephony/CarrierConfigManager.CARRIER_NR_AVAILABILITY_NSA,1,,,, +I,31,android/telephony/CarrierConfigManager.CARRIER_NR_AVAILABILITY_SA,2,,,, +I,31,android/telephony/CarrierConfigManager.CROSS_SIM_SPN_FORMAT_CARRIER_NAME_ONLY,0,,,, +I,31,android/telephony/CarrierConfigManager.CROSS_SIM_SPN_FORMAT_CARRIER_NAME_WITH_BRANDING,1,,,, +I,26,android/telephony/CarrierConfigManager.DATA_CYCLE_THRESHOLD_DISABLED,-2,,,, I,30,android/telephony/CarrierConfigManager.DATA_CYCLE_USE_PLATFORM_DEFAULT,-1,,,, +I,31,android/telephony/CarrierConfigManager.SERVICE_CLASS_NONE,0,,,, +I,31,android/telephony/CarrierConfigManager.SERVICE_CLASS_VOICE,1,,,, +I,31,android/telephony/CarrierConfigManager.USSD_OVER_CS_ONLY,2,,,, +I,31,android/telephony/CarrierConfigManager.USSD_OVER_CS_PREFERRED,0,,,, +I,31,android/telephony/CarrierConfigManager.USSD_OVER_IMS_ONLY,3,,,, +I,31,android/telephony/CarrierConfigManager.USSD_OVER_IMS_PREFERRED,1,,,, +E,31,android/telephony/CarrierConfigManager$Iwlan.AUTHENTICATION_METHOD_CERT,1,Android.Telephony.IwlanAuthenticationMethod,Cert,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.AUTHENTICATION_METHOD_EAP_ONLY,0,Android.Telephony.IwlanAuthenticationMethod,EapOnly,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.EPDG_ADDRESS_CELLULAR_LOC,3,Android.Telephony.IwlanEpdgAddressType,CellularLoc,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.EPDG_ADDRESS_PCO,2,Android.Telephony.IwlanEpdgAddressType,Pco,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.EPDG_ADDRESS_PLMN,1,Android.Telephony.IwlanEpdgAddressType,Plmn,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.EPDG_ADDRESS_STATIC,0,Android.Telephony.IwlanEpdgAddressType,Static,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.ID_TYPE_FQDN,2,Android.Telephony.IwlanIdType,Fqdn,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.ID_TYPE_KEY_ID,11,Android.Telephony.IwlanIdType,KeyId,remove, +E,31,android/telephony/CarrierConfigManager$Iwlan.ID_TYPE_RFC822_ADDR,3,Android.Telephony.IwlanIdType,Rfc822Addr,remove, E,28,android/telephony/CellInfo.CONNECTION_NONE,0,Android.Telephony.CellConnectionStatus,None,remove, E,28,android/telephony/CellInfo.CONNECTION_PRIMARY_SERVING,1,Android.Telephony.CellConnectionStatus,PrimaryServing,remove, E,28,android/telephony/CellInfo.CONNECTION_SECONDARY_SERVING,2,Android.Telephony.CellConnectionStatus,SecondaryServing,remove, E,28,android/telephony/CellInfo.CONNECTION_UNKNOWN,2147483647,Android.Telephony.CellConnectionStatus,Unknown,remove, -?,29,android/telephony/CellInfo.UNAVAILABLE,2147483647,,,, -?,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_GOOD,3,,,, -?,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_GREAT,4,,,, -?,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_MODERATE,2,,,, -?,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN,0,,,, -?,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_POOR,1,,,, +I,29,android/telephony/CellInfo.UNAVAILABLE,2147483647,,,, +I,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_GOOD,3,,,, +I,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_GREAT,4,,,, +I,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_MODERATE,2,,,, +I,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN,0,,,, +I,23,android/telephony/CellSignalStrength.SIGNAL_STRENGTH_POOR,1,,,, E,28,android/telephony/data/ApnSetting.AUTH_TYPE_CHAP,2,Android.Telephony.Data.AuthType,Chap,remove, E,28,android/telephony/data/ApnSetting.AUTH_TYPE_NONE,0,Android.Telephony.Data.AuthType,None,remove, E,28,android/telephony/data/ApnSetting.AUTH_TYPE_PAP,1,Android.Telephony.Data.AuthType,Pap,remove, @@ -10573,6 +11262,7 @@ E,28,android/telephony/data/ApnSetting.PROTOCOL_IPV6,1,Android.Telephony.Data.Pr E,29,android/telephony/data/ApnSetting.PROTOCOL_NON_IP,4,Android.Telephony.Data.Protocols,NonIp,remove, E,28,android/telephony/data/ApnSetting.PROTOCOL_PPP,3,Android.Telephony.Data.Protocols,Ppp,remove, E,29,android/telephony/data/ApnSetting.PROTOCOL_UNSTRUCTURED,5,Android.Telephony.Data.Protocols,Unstructured,remove, +E,31,android/telephony/data/ApnSetting.TYPE_BIP,8192,Android.Telephony.Data.ApnType,Bip,remove, E,28,android/telephony/data/ApnSetting.TYPE_CBS,128,Android.Telephony.Data.ApnType,Cbs,remove, E,28,android/telephony/data/ApnSetting.TYPE_DEFAULT,17,Android.Telephony.Data.ApnType,Default,remove, E,28,android/telephony/data/ApnSetting.TYPE_DUN,8,Android.Telephony.Data.ApnType,Dun,remove, @@ -10584,7 +11274,25 @@ E,28,android/telephony/data/ApnSetting.TYPE_IMS,64,Android.Telephony.Data.ApnTyp E,29,android/telephony/data/ApnSetting.TYPE_MCX,1024,Android.Telephony.Data.ApnType,Mcx,remove, E,28,android/telephony/data/ApnSetting.TYPE_MMS,2,Android.Telephony.Data.ApnType,Mms,remove, E,28,android/telephony/data/ApnSetting.TYPE_SUPL,4,Android.Telephony.Data.ApnType,Supl,remove, +E,31,android/telephony/data/ApnSetting.TYPE_VSIM,4096,Android.Telephony.Data.ApnType,Vsim,remove, E,30,android/telephony/data/ApnSetting.TYPE_XCAP,2048,Android.Telephony.Data.ApnType,Xcap,remove, +I,31,android/telephony/data/NetworkSliceInfo.SLICE_DIFFERENTIATOR_NO_SLICE,-1,,,, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_SERVICE_TYPE_EMBB,1,Android.Telephony.Data.NetworkSliceServiceType,Embb,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_SERVICE_TYPE_MIOT,3,Android.Telephony.Data.NetworkSliceServiceType,Miot,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_SERVICE_TYPE_NONE,0,Android.Telephony.Data.NetworkSliceServiceType,None,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_SERVICE_TYPE_URLLC,2,Android.Telephony.Data.NetworkSliceServiceType,Urllc,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_ALLOWED,2,Android.Telephony.Data.NetworkSliceStatus,Allowed,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_CONFIGURED,1,Android.Telephony.Data.NetworkSliceStatus,Configured,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_DEFAULT_CONFIGURED,5,Android.Telephony.Data.NetworkSliceStatus,DefaultConfigured,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_REJECTED_NOT_AVAILABLE_IN_PLMN,3,Android.Telephony.Data.NetworkSliceStatus,RejectedNotAvailableInPlmn,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_REJECTED_NOT_AVAILABLE_IN_REGISTERED_AREA,4,Android.Telephony.Data.NetworkSliceStatus,RejectedNotAvailableInRegisteredArea,remove, +E,31,android/telephony/data/NetworkSliceInfo.SLICE_STATUS_UNKNOWN,0,Android.Telephony.Data.NetworkSliceStatus,Unknown,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.ROUTE_SSC_MODE_1,1,Android.Telephony.Data.RouteSelectionSscMode,Mode1,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.ROUTE_SSC_MODE_2,2,Android.Telephony.Data.RouteSelectionSscMode,Mode2,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.ROUTE_SSC_MODE_3,3,Android.Telephony.Data.RouteSelectionSscMode,Mode3,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.SESSION_TYPE_IPV4,0,Android.Telephony.Data.RouteSelectionSessionType,Ipv4,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.SESSION_TYPE_IPV4V6,2,Android.Telephony.Data.RouteSelectionSessionType,Ipv4v6,remove, +E,31,android/telephony/data/RouteSelectionDescriptor.SESSION_TYPE_IPV6,1,Android.Telephony.Data.RouteSelectionSessionType,Ipv6,remove, E,30,android/telephony/DataFailCause.ACCESS_ATTEMPT_ALREADY_IN_PROGRESS,2219,Android.Telephony.DataFailCauseType,AccessAttemptAlreadyInProgress,remove, E,30,android/telephony/DataFailCause.ACCESS_BLOCK,2087,Android.Telephony.DataFailCauseType,AccessBlock,remove, E,30,android/telephony/DataFailCause.ACCESS_BLOCK_ALL,2088,Android.Telephony.DataFailCauseType,AccessBlockAll,remove, @@ -10594,6 +11302,7 @@ E,30,android/telephony/DataFailCause.ACTIVATION_REJECT_GGSN,30,Android.Telephony E,30,android/telephony/DataFailCause.ACTIVATION_REJECT_UNSPECIFIED,31,Android.Telephony.DataFailCauseType,ActivationRejectUnspecified,remove, E,30,android/telephony/DataFailCause.ACTIVATION_REJECTED_BCM_VIOLATION,48,Android.Telephony.DataFailCauseType,ActivationRejectedBcmViolation,remove, E,30,android/telephony/DataFailCause.ACTIVE_PDP_CONTEXT_MAX_NUMBER_REACHED,65,Android.Telephony.DataFailCauseType,ActivePdpContextMaxNumberReached,remove, +E,31,android/telephony/DataFailCause.ALL_MATCHING_RULES_FAILED,2254,Android.Telephony.DataFailCauseType,AllMatchingRulesFailed,remove, E,30,android/telephony/DataFailCause.APN_DISABLED,2045,Android.Telephony.DataFailCauseType,ApnDisabled,remove, E,30,android/telephony/DataFailCause.APN_DISALLOWED_ON_ROAMING,2059,Android.Telephony.DataFailCauseType,ApnDisallowedOnRoaming,remove, E,30,android/telephony/DataFailCause.APN_MISMATCH,2054,Android.Telephony.DataFailCauseType,ApnMismatch,remove, @@ -10710,6 +11419,28 @@ E,30,android/telephony/DataFailCause.IPV6_ADDRESS_TRANSFER_FAILED,2047,Android.T E,30,android/telephony/DataFailCause.IPV6_PREFIX_UNAVAILABLE,2250,Android.Telephony.DataFailCauseType,Ipv6PrefixUnavailable,remove, E,30,android/telephony/DataFailCause.IRAT_HANDOVER_FAILED,2194,Android.Telephony.DataFailCauseType,IratHandoverFailed,remove, E,30,android/telephony/DataFailCause.IS707B_MAX_ACCESS_PROBES,2089,Android.Telephony.DataFailCauseType,Is707bMaxAccessProbes,remove, +E,31,android/telephony/DataFailCause.IWLAN_AUTHORIZATION_REJECTED,9003,Android.Telephony.DataFailCauseType,IwlanAuthorizationRejected,remove, +E,31,android/telephony/DataFailCause.IWLAN_DNS_RESOLUTION_NAME_FAILURE,16388,Android.Telephony.DataFailCauseType,IwlanDnsResolutionNameFailure,remove, +E,31,android/telephony/DataFailCause.IWLAN_DNS_RESOLUTION_TIMEOUT,16389,Android.Telephony.DataFailCauseType,IwlanDnsResolutionTimeout,remove, +E,31,android/telephony/DataFailCause.IWLAN_IKEV2_AUTH_FAILURE,16385,Android.Telephony.DataFailCauseType,IwlanIkev2AuthFailure,remove, +E,31,android/telephony/DataFailCause.IWLAN_IKEV2_CERT_INVALID,16387,Android.Telephony.DataFailCauseType,IwlanIkev2CertInvalid,remove, +E,31,android/telephony/DataFailCause.IWLAN_IKEV2_CONFIG_FAILURE,16384,Android.Telephony.DataFailCauseType,IwlanIkev2ConfigFailure,remove, +E,31,android/telephony/DataFailCause.IWLAN_IKEV2_MSG_TIMEOUT,16386,Android.Telephony.DataFailCauseType,IwlanIkev2MsgTimeout,remove, +E,31,android/telephony/DataFailCause.IWLAN_ILLEGAL_ME,9006,Android.Telephony.DataFailCauseType,IwlanIllegalMe,remove, +E,31,android/telephony/DataFailCause.IWLAN_IMEI_NOT_ACCEPTED,11005,Android.Telephony.DataFailCauseType,IwlanImeiNotAccepted,remove, +E,31,android/telephony/DataFailCause.IWLAN_MAX_CONNECTION_REACHED,8193,Android.Telephony.DataFailCauseType,IwlanMaxConnectionReached,remove, +E,31,android/telephony/DataFailCause.IWLAN_NETWORK_FAILURE,10500,Android.Telephony.DataFailCauseType,IwlanNetworkFailure,remove, +E,31,android/telephony/DataFailCause.IWLAN_NO_APN_SUBSCRIPTION,9002,Android.Telephony.DataFailCauseType,IwlanNoApnSubscription,remove, +E,31,android/telephony/DataFailCause.IWLAN_NON_3GPP_ACCESS_TO_EPC_NOT_ALLOWED,9000,Android.Telephony.DataFailCauseType,IwlanNon3gppAccessToEpcNotAllowed,remove, +E,31,android/telephony/DataFailCause.IWLAN_PDN_CONNECTION_REJECTION,8192,Android.Telephony.DataFailCauseType,IwlanPdnConnectionRejection,remove, +E,31,android/telephony/DataFailCause.IWLAN_PLMN_NOT_ALLOWED,11011,Android.Telephony.DataFailCauseType,IwlanPlmnNotAllowed,remove, +E,31,android/telephony/DataFailCause.IWLAN_RAT_TYPE_NOT_ALLOWED,11001,Android.Telephony.DataFailCauseType,IwlanRatTypeNotAllowed,remove, +E,31,android/telephony/DataFailCause.IWLAN_SEMANTIC_ERROR_IN_THE_TFT_OPERATION,8241,Android.Telephony.DataFailCauseType,IwlanSemanticErrorInTheTftOperation,remove, +E,31,android/telephony/DataFailCause.IWLAN_SEMANTIC_ERRORS_IN_PACKET_FILTERS,8244,Android.Telephony.DataFailCauseType,IwlanSemanticErrorsInPacketFilters,remove, +E,31,android/telephony/DataFailCause.IWLAN_SYNTACTICAL_ERROR_IN_THE_TFT_OPERATION,8242,Android.Telephony.DataFailCauseType,IwlanSyntacticalErrorInTheTftOperation,remove, +E,31,android/telephony/DataFailCause.IWLAN_SYNTACTICAL_ERRORS_IN_PACKET_FILTERS,8245,Android.Telephony.DataFailCauseType,IwlanSyntacticalErrorsInPacketFilters,remove, +E,31,android/telephony/DataFailCause.IWLAN_UNAUTHENTICATED_EMERGENCY_NOT_SUPPORTED,11055,Android.Telephony.DataFailCauseType,IwlanUnauthenticatedEmergencyNotSupported,remove, +E,31,android/telephony/DataFailCause.IWLAN_USER_UNKNOWN,9001,Android.Telephony.DataFailCauseType,IwlanUserUnknown,remove, E,30,android/telephony/DataFailCause.LIMITED_TO_IPV4,2234,Android.Telephony.DataFailCauseType,LimitedToIpv4,remove, E,30,android/telephony/DataFailCause.LIMITED_TO_IPV6,2235,Android.Telephony.DataFailCauseType,LimitedToIpv6,remove, E,30,android/telephony/DataFailCause.LLC_SNDCP,25,Android.Telephony.DataFailCauseType,LlcSndcp,remove, @@ -10721,6 +11452,7 @@ E,30,android/telephony/DataFailCause.LOWER_LAYER_REGISTRATION_FAILURE,2197,Andro E,30,android/telephony/DataFailCause.LTE_NAS_SERVICE_REQUEST_FAILED,2117,Android.Telephony.DataFailCauseType,LteNasServiceRequestFailed,remove, E,30,android/telephony/DataFailCause.LTE_THROTTLING_NOT_REQUIRED,2127,Android.Telephony.DataFailCauseType,LteThrottlingNotRequired,remove, E,30,android/telephony/DataFailCause.MAC_FAILURE,2183,Android.Telephony.DataFailCauseType,MacFailure,remove, +E,31,android/telephony/DataFailCause.MATCH_ALL_RULE_NOT_ALLOWED,2253,Android.Telephony.DataFailCauseType,MatchAllRuleNotAllowed,remove, E,30,android/telephony/DataFailCause.MAX_ACCESS_PROBE,2079,Android.Telephony.DataFailCauseType,MaxAccessProbe,remove, E,30,android/telephony/DataFailCause.MAX_IPV4_CONNECTIONS,2052,Android.Telephony.DataFailCauseType,MaxIpv4Connections,remove, E,30,android/telephony/DataFailCause.MAX_IPV6_CONNECTIONS,2053,Android.Telephony.DataFailCauseType,MaxIpv6Connections,remove, @@ -10887,6 +11619,7 @@ E,30,android/telephony/DataFailCause.SERVICE_OPTION_NOT_SUPPORTED,32,Android.Tel E,30,android/telephony/DataFailCause.SERVICE_OPTION_OUT_OF_ORDER,34,Android.Telephony.DataFailCauseType,ServiceOptionOutOfOrder,remove, E,30,android/telephony/DataFailCause.SIGNAL_LOST,-3,Android.Telephony.DataFailCauseType,SignalLost,remove, E,30,android/telephony/DataFailCause.SIM_CARD_CHANGED,2043,Android.Telephony.DataFailCauseType,SimCardChanged,remove, +E,31,android/telephony/DataFailCause.SLICE_REJECTED,2252,Android.Telephony.DataFailCauseType,SliceRejected,remove, E,30,android/telephony/DataFailCause.SYNCHRONIZATION_FAILURE,2184,Android.Telephony.DataFailCauseType,SynchronizationFailure,remove, E,30,android/telephony/DataFailCause.TEST_LOOPBACK_REGULAR_DEACTIVATION,2196,Android.Telephony.DataFailCauseType,TestLoopbackRegularDeactivation,remove, E,30,android/telephony/DataFailCause.TETHERED_CALL_ACTIVE,-6,Android.Telephony.DataFailCauseType,TetheredCallActive,remove, @@ -10926,6 +11659,85 @@ E,30,android/telephony/DataFailCause.VSNCP_RECONNECT_NOT_ALLOWED,2249,Android.Te E,30,android/telephony/DataFailCause.VSNCP_RESOURCE_UNAVAILABLE,2244,Android.Telephony.DataFailCauseType,VsncpResourceUnavailable,remove, E,30,android/telephony/DataFailCause.VSNCP_SUBSCRIBER_LIMITATION,2247,Android.Telephony.DataFailCauseType,VsncpSubscriberLimitation,remove, E,30,android/telephony/DataFailCause.VSNCP_TIMEOUT,2236,Android.Telephony.DataFailCauseType,VsncpTimeout,remove, +E,31,android/telephony/DisconnectCause.ALREADY_DIALING,72,Android.Telephony.CallDisconnectCause,AlreadyDialing,remove, +E,31,android/telephony/DisconnectCause.ANSWERED_ELSEWHERE,52,Android.Telephony.CallDisconnectCause,AnsweredElsewhere,remove, +E,31,android/telephony/DisconnectCause.BUSY,4,Android.Telephony.CallDisconnectCause,Busy,remove, +E,31,android/telephony/DisconnectCause.CALL_BARRED,20,Android.Telephony.CallDisconnectCause,CallBarred,remove, +E,31,android/telephony/DisconnectCause.CALL_PULLED,51,Android.Telephony.CallDisconnectCause,CallPulled,remove, +E,31,android/telephony/DisconnectCause.CALLING_DISABLED,74,Android.Telephony.CallDisconnectCause,CallingDisabled,remove, +E,31,android/telephony/DisconnectCause.CANT_CALL_WHILE_RINGING,73,Android.Telephony.CallDisconnectCause,CantCallWhileRinging,remove, +E,31,android/telephony/DisconnectCause.CDMA_ACCESS_BLOCKED,35,Android.Telephony.CallDisconnectCause,CdmaAccessBlocked,remove, +E,31,android/telephony/DisconnectCause.CDMA_ACCESS_FAILURE,32,Android.Telephony.CallDisconnectCause,CdmaAccessFailure,remove, +E,31,android/telephony/DisconnectCause.CDMA_ALREADY_ACTIVATED,49,Android.Telephony.CallDisconnectCause,CdmaAlreadyActivated,remove, +E,31,android/telephony/DisconnectCause.CDMA_DROP,27,Android.Telephony.CallDisconnectCause,CdmaDrop,remove, +E,31,android/telephony/DisconnectCause.CDMA_INTERCEPT,28,Android.Telephony.CallDisconnectCause,CdmaIntercept,remove, +E,31,android/telephony/DisconnectCause.CDMA_LOCKED_UNTIL_POWER_CYCLE,26,Android.Telephony.CallDisconnectCause,CdmaLockedUntilPowerCycle,remove, +E,31,android/telephony/DisconnectCause.CDMA_NOT_EMERGENCY,34,Android.Telephony.CallDisconnectCause,CdmaNotEmergency,remove, +E,31,android/telephony/DisconnectCause.CDMA_PREEMPTED,33,Android.Telephony.CallDisconnectCause,CdmaPreempted,remove, +E,31,android/telephony/DisconnectCause.CDMA_REORDER,29,Android.Telephony.CallDisconnectCause,CdmaReorder,remove, +E,31,android/telephony/DisconnectCause.CDMA_RETRY_ORDER,31,Android.Telephony.CallDisconnectCause,CdmaRetryOrder,remove, +E,31,android/telephony/DisconnectCause.CDMA_SO_REJECT,30,Android.Telephony.CallDisconnectCause,CdmaSoReject,remove, +E,31,android/telephony/DisconnectCause.CONGESTION,5,Android.Telephony.CallDisconnectCause,Congestion,remove, +E,31,android/telephony/DisconnectCause.CS_RESTRICTED,22,Android.Telephony.CallDisconnectCause,CsRestricted,remove, +E,31,android/telephony/DisconnectCause.CS_RESTRICTED_EMERGENCY,24,Android.Telephony.CallDisconnectCause,CsRestrictedEmergency,remove, +E,31,android/telephony/DisconnectCause.CS_RESTRICTED_NORMAL,23,Android.Telephony.CallDisconnectCause,CsRestrictedNormal,remove, +E,31,android/telephony/DisconnectCause.DATA_DISABLED,54,Android.Telephony.CallDisconnectCause,DataDisabled,remove, +E,31,android/telephony/DisconnectCause.DATA_LIMIT_REACHED,55,Android.Telephony.CallDisconnectCause,DataLimitReached,remove, +E,31,android/telephony/DisconnectCause.DIAL_LOW_BATTERY,62,Android.Telephony.CallDisconnectCause,DialLowBattery,remove, +E,31,android/telephony/DisconnectCause.DIAL_MODIFIED_TO_DIAL,48,Android.Telephony.CallDisconnectCause,DialModifiedToDial,remove, +E,31,android/telephony/DisconnectCause.DIAL_MODIFIED_TO_DIAL_VIDEO,66,Android.Telephony.CallDisconnectCause,DialModifiedToDialVideo,remove, +E,31,android/telephony/DisconnectCause.DIAL_MODIFIED_TO_SS,47,Android.Telephony.CallDisconnectCause,DialModifiedToSs,remove, +E,31,android/telephony/DisconnectCause.DIAL_MODIFIED_TO_USSD,46,Android.Telephony.CallDisconnectCause,DialModifiedToUssd,remove, +E,31,android/telephony/DisconnectCause.DIAL_VIDEO_MODIFIED_TO_DIAL,69,Android.Telephony.CallDisconnectCause,DialVideoModifiedToDial,remove, +E,31,android/telephony/DisconnectCause.DIAL_VIDEO_MODIFIED_TO_DIAL_VIDEO,70,Android.Telephony.CallDisconnectCause,DialVideoModifiedToDialVideo,remove, +E,31,android/telephony/DisconnectCause.DIAL_VIDEO_MODIFIED_TO_SS,67,Android.Telephony.CallDisconnectCause,DialVideoModifiedToSs,remove, +E,31,android/telephony/DisconnectCause.DIAL_VIDEO_MODIFIED_TO_USSD,68,Android.Telephony.CallDisconnectCause,DialVideoModifiedToUssd,remove, +E,31,android/telephony/DisconnectCause.DIALED_CALL_FORWARDING_WHILE_ROAMING,57,Android.Telephony.CallDisconnectCause,DialedCallForwardingWhileRoaming,remove, +E,31,android/telephony/DisconnectCause.DIALED_MMI,39,Android.Telephony.CallDisconnectCause,DialedMmi,remove, +E,31,android/telephony/DisconnectCause.EMERGENCY_CALL_OVER_WFC_NOT_AVAILABLE,78,Android.Telephony.CallDisconnectCause,EmergencyCallOverWfcNotAvailable,remove, +E,31,android/telephony/DisconnectCause.EMERGENCY_PERM_FAILURE,64,Android.Telephony.CallDisconnectCause,EmergencyPermFailure,remove, +E,31,android/telephony/DisconnectCause.EMERGENCY_TEMP_FAILURE,63,Android.Telephony.CallDisconnectCause,EmergencyTempFailure,remove, +E,31,android/telephony/DisconnectCause.ERROR_UNSPECIFIED,36,Android.Telephony.CallDisconnectCause,ErrorUnspecified,remove, +E,31,android/telephony/DisconnectCause.FDN_BLOCKED,21,Android.Telephony.CallDisconnectCause,FdnBlocked,remove, +E,31,android/telephony/DisconnectCause.ICC_ERROR,19,Android.Telephony.CallDisconnectCause,IccError,remove, +E,31,android/telephony/DisconnectCause.IMEI_NOT_ACCEPTED,58,Android.Telephony.CallDisconnectCause,ImeiNotAccepted,remove, +E,31,android/telephony/DisconnectCause.IMS_ACCESS_BLOCKED,60,Android.Telephony.CallDisconnectCause,ImsAccessBlocked,remove, +E,31,android/telephony/DisconnectCause.IMS_MERGED_SUCCESSFULLY,45,Android.Telephony.CallDisconnectCause,ImsMergedSuccessfully,remove, +E,31,android/telephony/DisconnectCause.IMS_SIP_ALTERNATE_EMERGENCY_CALL,71,Android.Telephony.CallDisconnectCause,ImsSipAlternateEmergencyCall,remove, +E,31,android/telephony/DisconnectCause.INCOMING_AUTO_REJECTED,81,Android.Telephony.CallDisconnectCause,IncomingAutoRejected,remove, +E,31,android/telephony/DisconnectCause.INCOMING_MISSED,1,Android.Telephony.CallDisconnectCause,IncomingMissed,remove, +E,31,android/telephony/DisconnectCause.INCOMING_REJECTED,16,Android.Telephony.CallDisconnectCause,IncomingRejected,remove, +E,31,android/telephony/DisconnectCause.INVALID_CREDENTIALS,10,Android.Telephony.CallDisconnectCause,InvalidCredentials,remove, +E,31,android/telephony/DisconnectCause.INVALID_NUMBER,7,Android.Telephony.CallDisconnectCause,InvalidNumber,remove, +E,31,android/telephony/DisconnectCause.LIMIT_EXCEEDED,15,Android.Telephony.CallDisconnectCause,LimitExceeded,remove, +E,31,android/telephony/DisconnectCause.LOCAL,3,Android.Telephony.CallDisconnectCause,Local,remove, +E,31,android/telephony/DisconnectCause.LOST_SIGNAL,14,Android.Telephony.CallDisconnectCause,LostSignal,remove, +E,31,android/telephony/DisconnectCause.LOW_BATTERY,61,Android.Telephony.CallDisconnectCause,LowBattery,remove, +E,31,android/telephony/DisconnectCause.MAXIMUM_NUMBER_OF_CALLS_REACHED,53,Android.Telephony.CallDisconnectCause,MaximumNumberOfCallsReached,remove, +E,31,android/telephony/DisconnectCause.MEDIA_TIMEOUT,77,Android.Telephony.CallDisconnectCause,MediaTimeout,remove, +E,31,android/telephony/DisconnectCause.MMI,6,Android.Telephony.CallDisconnectCause,Mmi,remove, +E,31,android/telephony/DisconnectCause.NO_PHONE_NUMBER_SUPPLIED,38,Android.Telephony.CallDisconnectCause,NoPhoneNumberSupplied,remove, +E,31,android/telephony/DisconnectCause.NORMAL,2,Android.Telephony.CallDisconnectCause,Normal,remove, +E,31,android/telephony/DisconnectCause.NORMAL_UNSPECIFIED,65,Android.Telephony.CallDisconnectCause,NormalUnspecified,remove, +E,31,android/telephony/DisconnectCause.NOT_DISCONNECTED,0,Android.Telephony.CallDisconnectCause,NotDisconnected,remove, +E,31,android/telephony/DisconnectCause.NOT_VALID,-1,Android.Telephony.CallDisconnectCause,NotValid,remove, +E,31,android/telephony/DisconnectCause.NUMBER_UNREACHABLE,8,Android.Telephony.CallDisconnectCause,NumberUnreachable,remove, +E,31,android/telephony/DisconnectCause.OTASP_PROVISIONING_IN_PROCESS,76,Android.Telephony.CallDisconnectCause,OtaspProvisioningInProcess,remove, +E,31,android/telephony/DisconnectCause.OUT_OF_NETWORK,11,Android.Telephony.CallDisconnectCause,OutOfNetwork,remove, +E,31,android/telephony/DisconnectCause.OUT_OF_SERVICE,18,Android.Telephony.CallDisconnectCause,OutOfService,remove, +E,31,android/telephony/DisconnectCause.OUTGOING_CANCELED,44,Android.Telephony.CallDisconnectCause,OutgoingCanceled,remove, +E,31,android/telephony/DisconnectCause.OUTGOING_EMERGENCY_CALL_PLACED,80,Android.Telephony.CallDisconnectCause,OutgoingEmergencyCallPlaced,remove, +E,31,android/telephony/DisconnectCause.OUTGOING_FAILURE,43,Android.Telephony.CallDisconnectCause,OutgoingFailure,remove, +E,31,android/telephony/DisconnectCause.POWER_OFF,17,Android.Telephony.CallDisconnectCause,PowerOff,remove, +E,31,android/telephony/DisconnectCause.SERVER_ERROR,12,Android.Telephony.CallDisconnectCause,ServerError,remove, +E,31,android/telephony/DisconnectCause.SERVER_UNREACHABLE,9,Android.Telephony.CallDisconnectCause,ServerUnreachable,remove, +E,31,android/telephony/DisconnectCause.TIMED_OUT,13,Android.Telephony.CallDisconnectCause,TimedOut,remove, +E,31,android/telephony/DisconnectCause.TOO_MANY_ONGOING_CALLS,75,Android.Telephony.CallDisconnectCause,TooManyOngoingCalls,remove, +E,31,android/telephony/DisconnectCause.UNOBTAINABLE_NUMBER,25,Android.Telephony.CallDisconnectCause,UnobtainableNumber,remove, +E,31,android/telephony/DisconnectCause.VIDEO_CALL_NOT_ALLOWED_WHILE_TTY_ENABLED,50,Android.Telephony.CallDisconnectCause,VideoCallNotAllowedWhileTtyEnabled,remove, +E,31,android/telephony/DisconnectCause.VOICEMAIL_NUMBER_MISSING,40,Android.Telephony.CallDisconnectCause,VoicemailNumberMissing,remove, +E,31,android/telephony/DisconnectCause.WFC_SERVICE_NOT_AVAILABLE_IN_THIS_LOCATION,79,Android.Telephony.CallDisconnectCause,WfcServiceNotAvailableInThisLocation,remove, +E,31,android/telephony/DisconnectCause.WIFI_LOST,59,Android.Telephony.CallDisconnectCause,WifiLost,remove, E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_CALL_ROUTING_EMERGENCY,1,Android.Telephony.Emergency.EmergencyCallRouting,Emergency,remove, E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_CALL_ROUTING_NORMAL,2,Android.Telephony.Emergency.EmergencyCallRouting,Normal,remove, E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_CALL_ROUTING_UNKNOWN,0,Android.Telephony.Emergency.EmergencyCallRouting,Unknown,remove, @@ -10942,9 +11754,9 @@ E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_SERVICE_CATEGORY_MIEC E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_SERVICE_CATEGORY_MOUNTAIN_RESCUE,16,Android.Telephony.Emergency.EmergencyServiceCategory,MountainRescue,remove, E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_SERVICE_CATEGORY_POLICE,1,Android.Telephony.Emergency.EmergencyServiceCategory,Police,remove, E,29,android/telephony/emergency/EmergencyNumber.EMERGENCY_SERVICE_CATEGORY_UNSPECIFIED,0,Android.Telephony.Emergency.EmergencyServiceCategory,Unspecified,remove, -?,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_ERROR,2,,,, -?,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_OK,0,,,, -?,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_RESOLVABLE_ERROR,1,,,, +I,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_ERROR,2,,,, +I,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_OK,0,,,, +I,28,android/telephony/euicc/EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_RESOLVABLE_ERROR,1,,,, E,30,android/telephony/euicc/EuiccManager.ERROR_ADDRESS_MISSING,10011,Android.Telephony.Euicc.Error,AddressMissing,remove, E,30,android/telephony/euicc/EuiccManager.ERROR_CARRIER_LOCKED,10000,Android.Telephony.Euicc.Error,CarrierLocked,remove, E,30,android/telephony/euicc/EuiccManager.ERROR_CERTIFICATE_ERROR,10012,Android.Telephony.Euicc.Error,CertificateError,remove, @@ -10986,14 +11798,15 @@ E,10,android/telephony/gsm/SmsMessage.ENCODING_16BIT,3,Android.Telephony.Gsm.Sms E,10,android/telephony/gsm/SmsMessage.ENCODING_7BIT,1,Android.Telephony.Gsm.SmsEncoding,SevenBit,keep, E,10,android/telephony/gsm/SmsMessage.ENCODING_8BIT,2,Android.Telephony.Gsm.SmsEncoding,EightBit,keep, E,10,android/telephony/gsm/SmsMessage.ENCODING_UNKNOWN,0,Android.Telephony.Gsm.SmsEncoding,Unknown,keep, -?,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_BYTES,140,,,, -?,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_SEPTETS,160,,,, -?,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_SEPTETS_WITH_HEADER,153,,,, -?,21,android/telephony/IccOpenLogicalChannelResponse.INVALID_CHANNEL,-1,,,, +I,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_BYTES,140,,,, +I,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_SEPTETS,160,,,, +I,0,android/telephony/gsm/SmsMessage.MAX_USER_DATA_SEPTETS_WITH_HEADER,153,,,, +I,21,android/telephony/IccOpenLogicalChannelResponse.INVALID_CHANNEL,-1,,,, E,21,android/telephony/IccOpenLogicalChannelResponse.STATUS_MISSING_RESOURCE,2,Android.Telephony.IccOpenLogicalChannelResponseStatus,MissingResource,remove, E,21,android/telephony/IccOpenLogicalChannelResponse.STATUS_NO_ERROR,1,Android.Telephony.IccOpenLogicalChannelResponseStatus,NoError,remove, E,21,android/telephony/IccOpenLogicalChannelResponse.STATUS_NO_SUCH_ELEMENT,3,Android.Telephony.IccOpenLogicalChannelResponseStatus,NoSuchElement,remove, E,21,android/telephony/IccOpenLogicalChannelResponse.STATUS_UNKNOWN_ERROR,4,Android.Telephony.IccOpenLogicalChannelResponseStatus,UnknownError,remove, +E,31,android/telephony/ims/feature/MmTelFeature$MmTelCapabilities.CAPABILITY_TYPE_CALL_COMPOSER,16,Android.Telephony.Ims.Feature.MmTelCapabilityType,CallComposer,remove, E,30,android/telephony/ims/feature/MmTelFeature$MmTelCapabilities.CAPABILITY_TYPE_SMS,8,Android.Telephony.Ims.Feature.MmTelCapabilityType,Sms,remove, E,30,android/telephony/ims/feature/MmTelFeature$MmTelCapabilities.CAPABILITY_TYPE_UT,4,Android.Telephony.Ims.Feature.MmTelCapabilityType,Ut,remove, E,30,android/telephony/ims/feature/MmTelFeature$MmTelCapabilities.CAPABILITY_TYPE_VIDEO,2,Android.Telephony.Ims.Feature.MmTelCapabilityType,Video,remove, @@ -11063,6 +11876,7 @@ E,30,android/telephony/ims/ImsReasonInfo.CODE_MEDIA_NO_DATA,402,Android.Telephon E,30,android/telephony/ims/ImsReasonInfo.CODE_MEDIA_NOT_ACCEPTABLE,403,Android.Telephony.Ims.ImsReasonInfoCode,MediaNotAcceptable,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_MEDIA_UNSPECIFIED,404,Android.Telephony.Ims.ImsReasonInfoCode,MediaUnspecified,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_MULTIENDPOINT_NOT_SUPPORTED,902,Android.Telephony.Ims.ImsReasonInfoCode,MultiendpointNotSupported,remove, +E,31,android/telephony/ims/ImsReasonInfo.CODE_NETWORK_CONGESTION,1624,Android.Telephony.Ims.ImsReasonInfoCode,NetworkCongestion,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_NETWORK_DETACH,1513,Android.Telephony.Ims.ImsReasonInfoCode,NetworkDetach,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_NETWORK_REJECT,1504,Android.Telephony.Ims.ImsReasonInfoCode,NetworkReject,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_NETWORK_RESP_TIMEOUT,1503,Android.Telephony.Ims.ImsReasonInfoCode,NetworkRespTimeout,remove, @@ -11177,40 +11991,44 @@ E,30,android/telephony/ims/ImsReasonInfo.CODE_UT_SS_MODIFIED_TO_SS,824,Android.T E,30,android/telephony/ims/ImsReasonInfo.CODE_UT_SS_MODIFIED_TO_USSD,823,Android.Telephony.Ims.ImsReasonInfoCode,UtSsModifiedToUssd,remove, E,30,android/telephony/ims/ImsReasonInfo.CODE_WIFI_LOST,1407,Android.Telephony.Ims.ImsReasonInfoCode,WifiLost,remove, E,30,android/telephony/ims/ImsReasonInfo.EXTRA_CODE_CALL_RETRY_BY_SETTINGS,3,Android.Telephony.Ims.ExtraCodeCallRetry,BySettings,remove, +E,31,android/telephony/ims/ImsReasonInfo.EXTRA_CODE_CALL_RETRY_EMERGENCY,4,Android.Telephony.Ims.ExtraCodeCallRetry,Emergency,remove, E,30,android/telephony/ims/ImsReasonInfo.EXTRA_CODE_CALL_RETRY_NORMAL,1,Android.Telephony.Ims.ExtraCodeCallRetry,Normal,remove, E,30,android/telephony/ims/ImsReasonInfo.EXTRA_CODE_CALL_RETRY_SILENT_REDIAL,2,Android.Telephony.Ims.ExtraCodeCallRetry,SilentRedial,remove, -?,29,android/telephony/mbms/GroupCall.REASON_BY_USER_REQUEST,1,,,, -?,29,android/telephony/mbms/GroupCall.REASON_FREQUENCY_CONFLICT,3,,,, -?,29,android/telephony/mbms/GroupCall.REASON_LEFT_MBMS_BROADCAST_AREA,6,,,, -?,29,android/telephony/mbms/GroupCall.REASON_NONE,0,,,, -?,29,android/telephony/mbms/GroupCall.REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE,5,,,, -?,29,android/telephony/mbms/GroupCall.REASON_OUT_OF_MEMORY,4,,,, -?,29,android/telephony/mbms/GroupCall.STATE_STALLED,3,,,, -?,29,android/telephony/mbms/GroupCall.STATE_STARTED,2,,,, -?,29,android/telephony/mbms/GroupCall.STATE_STOPPED,1,,,, -?,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_CANNOT_CHANGE_TEMP_FILE_ROOT,401,,,, -?,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_UNKNOWN_DOWNLOAD_REQUEST,402,,,, -?,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_UNKNOWN_FILE_INFO,403,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_CARRIER_CHANGE_NOT_ALLOWED,207,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_IN_E911,204,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_MIDDLEWARE_NOT_YET_READY,201,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_MIDDLEWARE_TEMPORARILY_UNAVAILABLE,203,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_NOT_CONNECTED_TO_HOME_CARRIER_LTE,205,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_OUT_OF_MEMORY,202,,,, -?,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_UNABLE_TO_READ_SIM,206,,,, -?,29,android/telephony/mbms/MbmsErrors$GroupCallErrors.ERROR_DUPLICATE_START_GROUP_CALL,502,,,, -?,29,android/telephony/mbms/MbmsErrors$GroupCallErrors.ERROR_UNABLE_TO_START_SERVICE,501,,,, -?,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_APP_PERMISSIONS_NOT_GRANTED,102,,,, -?,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_DUPLICATE_INITIALIZE,101,,,, -?,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_UNABLE_TO_INITIALIZE,103,,,, -?,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_CONCURRENT_SERVICE_LIMIT_REACHED,301,,,, -?,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_DUPLICATE_START_STREAM,303,,,, -?,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_UNABLE_TO_START_SERVICE,302,,,, -?,28,android/telephony/mbms/MbmsErrors.ERROR_MIDDLEWARE_LOST,3,,,, -?,28,android/telephony/mbms/MbmsErrors.ERROR_MIDDLEWARE_NOT_BOUND,2,,,, -?,28,android/telephony/mbms/MbmsErrors.ERROR_NO_UNIQUE_MIDDLEWARE,1,,,, -?,28,android/telephony/mbms/MbmsErrors.SUCCESS,0,,,, -?,28,android/telephony/mbms/MbmsErrors.UNKNOWN,-1,,,, +A,31,,0,Android.Telephony.Ims.RegistrationAttributes,None,remove, +I,31,android/telephony/ims/ImsRegistrationAttributes.ATTR_EPDG_OVER_CELL_INTERNET,1,Android.Telephony.Ims.RegistrationAttributes,EpdgOverCellInternet,remove, +I,29,android/telephony/mbms/GroupCall.REASON_BY_USER_REQUEST,1,,,, +I,29,android/telephony/mbms/GroupCall.REASON_FREQUENCY_CONFLICT,3,,,, +I,29,android/telephony/mbms/GroupCall.REASON_LEFT_MBMS_BROADCAST_AREA,6,,,, +I,29,android/telephony/mbms/GroupCall.REASON_NONE,0,,,, +I,29,android/telephony/mbms/GroupCall.REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE,5,,,, +I,29,android/telephony/mbms/GroupCall.REASON_OUT_OF_MEMORY,4,,,, +I,29,android/telephony/mbms/GroupCall.STATE_STALLED,3,,,, +I,29,android/telephony/mbms/GroupCall.STATE_STARTED,2,,,, +I,29,android/telephony/mbms/GroupCall.STATE_STOPPED,1,,,, +I,28,android/telephony/mbms/MbmsErrors.ERROR_MIDDLEWARE_LOST,3,,,, +I,28,android/telephony/mbms/MbmsErrors.ERROR_MIDDLEWARE_NOT_BOUND,2,,,, +I,28,android/telephony/mbms/MbmsErrors.ERROR_NO_UNIQUE_MIDDLEWARE,1,,,, +I,28,android/telephony/mbms/MbmsErrors.SUCCESS,0,,,, +I,28,android/telephony/mbms/MbmsErrors.UNKNOWN,-1,,,, +I,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_CANNOT_CHANGE_TEMP_FILE_ROOT,401,,,, +I,31,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_MALFORMED_SERVICE_ANNOUNCEMENT,404,,,, +I,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_UNKNOWN_DOWNLOAD_REQUEST,402,,,, +I,28,android/telephony/mbms/MbmsErrors$DownloadErrors.ERROR_UNKNOWN_FILE_INFO,403,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_CARRIER_CHANGE_NOT_ALLOWED,207,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_IN_E911,204,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_MIDDLEWARE_NOT_YET_READY,201,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_MIDDLEWARE_TEMPORARILY_UNAVAILABLE,203,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_NOT_CONNECTED_TO_HOME_CARRIER_LTE,205,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_OUT_OF_MEMORY,202,,,, +I,28,android/telephony/mbms/MbmsErrors$GeneralErrors.ERROR_UNABLE_TO_READ_SIM,206,,,, +I,29,android/telephony/mbms/MbmsErrors$GroupCallErrors.ERROR_DUPLICATE_START_GROUP_CALL,502,,,, +I,29,android/telephony/mbms/MbmsErrors$GroupCallErrors.ERROR_UNABLE_TO_START_SERVICE,501,,,, +I,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_APP_PERMISSIONS_NOT_GRANTED,102,,,, +I,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_DUPLICATE_INITIALIZE,101,,,, +I,28,android/telephony/mbms/MbmsErrors$InitializationErrors.ERROR_UNABLE_TO_INITIALIZE,103,,,, +I,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_CONCURRENT_SERVICE_LIMIT_REACHED,301,,,, +I,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_DUPLICATE_START_STREAM,303,,,, +I,28,android/telephony/mbms/MbmsErrors$StreamingErrors.ERROR_UNABLE_TO_START_SERVICE,302,,,, E,28,android/telephony/mbms/StreamingService.BROADCAST_METHOD,1,Android.Telephony.Mbms.StreamingMethod,Broadcast,remove, E,28,android/telephony/mbms/StreamingService.REASON_BY_USER_REQUEST,1,Android.Telephony.Mbms.StreamingStateChangedReason,ByUserRequest,remove, E,28,android/telephony/mbms/StreamingService.REASON_END_OF_SESSION,2,Android.Telephony.Mbms.StreamingStateChangedReason,EndOfSession,remove, @@ -11219,26 +12037,26 @@ E,28,android/telephony/mbms/StreamingService.REASON_LEFT_MBMS_BROADCAST_AREA,6,A E,28,android/telephony/mbms/StreamingService.REASON_NONE,0,Android.Telephony.Mbms.StreamingStateChangedReason,None,remove, E,28,android/telephony/mbms/StreamingService.REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE,5,Android.Telephony.Mbms.StreamingStateChangedReason,NotConnectedToHomecarrierLte,remove, E,28,android/telephony/mbms/StreamingService.REASON_OUT_OF_MEMORY,4,Android.Telephony.Mbms.StreamingStateChangedReason,OutOfMemory,remove, -?,28,android/telephony/mbms/StreamingService.STATE_STALLED,3,,,, -?,28,android/telephony/mbms/StreamingService.STATE_STARTED,2,,,, -?,28,android/telephony/mbms/StreamingService.STATE_STOPPED,1,,,, +I,28,android/telephony/mbms/StreamingService.STATE_STALLED,3,,,, +I,28,android/telephony/mbms/StreamingService.STATE_STARTED,2,,,, +I,28,android/telephony/mbms/StreamingService.STATE_STOPPED,1,,,, E,28,android/telephony/mbms/StreamingService.UNICAST_METHOD,2,Android.Telephony.Mbms.StreamingMethod,Unicast,remove, -?,28,android/telephony/mbms/StreamingServiceCallback.SIGNAL_STRENGTH_UNAVAILABLE,-1,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_CANCELLED,2,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_DOWNLOAD_FAILURE,6,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_EXPIRED,3,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_FILE_ROOT_UNREACHABLE,8,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_IO_ERROR,4,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_OUT_OF_STORAGE,7,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_SERVICE_ID_NOT_DEFINED,5,,,, -?,28,android/telephony/MbmsDownloadSession.RESULT_SUCCESSFUL,1,,,, -?,28,android/telephony/MbmsDownloadSession.STATUS_ACTIVELY_DOWNLOADING,1,,,, -?,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_DOWNLOAD,2,,,, -?,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_DOWNLOAD_WINDOW,4,,,, -?,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_REPAIR,3,,,, -?,28,android/telephony/MbmsDownloadSession.STATUS_UNKNOWN,0,,,, -?,0,android/telephony/NeighboringCellInfo.UNKNOWN_CID,-1,,,, -?,0,android/telephony/NeighboringCellInfo.UNKNOWN_RSSI,99,,,, +I,28,android/telephony/mbms/StreamingServiceCallback.SIGNAL_STRENGTH_UNAVAILABLE,-1,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_CANCELLED,2,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_DOWNLOAD_FAILURE,6,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_EXPIRED,3,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_FILE_ROOT_UNREACHABLE,8,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_IO_ERROR,4,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_OUT_OF_STORAGE,7,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_SERVICE_ID_NOT_DEFINED,5,,,, +I,28,android/telephony/MbmsDownloadSession.RESULT_SUCCESSFUL,1,,,, +I,28,android/telephony/MbmsDownloadSession.STATUS_ACTIVELY_DOWNLOADING,1,,,, +I,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_DOWNLOAD,2,,,, +I,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_DOWNLOAD_WINDOW,4,,,, +I,28,android/telephony/MbmsDownloadSession.STATUS_PENDING_REPAIR,3,,,, +I,28,android/telephony/MbmsDownloadSession.STATUS_UNKNOWN,0,,,, +I,0,android/telephony/NeighboringCellInfo.UNKNOWN_CID,-1,,,, +I,0,android/telephony/NeighboringCellInfo.UNKNOWN_RSSI,99,,,, E,30,android/telephony/NetworkRegistrationInfo.DOMAIN_CS,1,Android.Telephony.NetworkRegistrationInfoDomain,Cs,remove, E,30,android/telephony/NetworkRegistrationInfo.DOMAIN_CS_PS,3,Android.Telephony.NetworkRegistrationInfoDomain,CsPs,remove, E,30,android/telephony/NetworkRegistrationInfo.DOMAIN_PS,2,Android.Telephony.NetworkRegistrationInfoDomain,Ps,remove, @@ -11290,6 +12108,15 @@ E,10,android/telephony/PhoneStateListener.LISTEN_SERVICE_STATE,1,Android.Telepho E,10,android/telephony/PhoneStateListener.LISTEN_SIGNAL_STRENGTH,2,Android.Telephony.PhoneStateListenerFlags,SignalStrength,keep,flags E,10,android/telephony/PhoneStateListener.LISTEN_SIGNAL_STRENGTHS,256,Android.Telephony.PhoneStateListenerFlags,SignalStrengths,keep,flags E,28,android/telephony/PhoneStateListener.LISTEN_USER_MOBILE_DATA_STATE,524288,Android.Telephony.PhoneStateListenerFlags,UserMobileDataState,keep,flags +I,31,android/telephony/PhysicalChannelConfig.BAND_UNKNOWN,0,,,, +I,31,android/telephony/PhysicalChannelConfig.CELL_BANDWIDTH_UNKNOWN,0,,,, +I,31,android/telephony/PhysicalChannelConfig.CHANNEL_NUMBER_UNKNOWN,2147483647,,,, +E,31,android/telephony/PhysicalChannelConfig.CONNECTION_PRIMARY_SERVING,1,Android.Telephony.PhysicalChannelConnectionStatus,PrimaryServing,remove, +E,31,android/telephony/PhysicalChannelConfig.CONNECTION_SECONDARY_SERVING,2,Android.Telephony.PhysicalChannelConnectionStatus,SecondaryServing,remove, +E,31,android/telephony/PhysicalChannelConfig.CONNECTION_UNKNOWN,-1,Android.Telephony.PhysicalChannelConnectionStatus,Unknown,remove, +I,31,android/telephony/PhysicalChannelConfig.FREQUENCY_UNKNOWN,-1,,,, +I,31,android/telephony/PhysicalChannelConfig.PHYSICAL_CELL_ID_MAXIMUM_VALUE,1007,,,, +I,31,android/telephony/PhysicalChannelConfig.PHYSICAL_CELL_ID_UNKNOWN,-1,,,, E,28,android/telephony/ServiceState.DUPLEX_MODE_FDD,1,Android.Telephony.DuplexMode,Fdd,remove, E,28,android/telephony/ServiceState.DUPLEX_MODE_TDD,2,Android.Telephony.DuplexMode,Tdd,remove, E,28,android/telephony/ServiceState.DUPLEX_MODE_UNKNOWN,0,Android.Telephony.DuplexMode,Unknown,remove, @@ -11297,8 +12124,17 @@ E,10,android/telephony/ServiceState.STATE_EMERGENCY_ONLY,2,Android.Telephony.Pho E,10,android/telephony/ServiceState.STATE_IN_SERVICE,0,Android.Telephony.PhoneState,InService,keep, E,10,android/telephony/ServiceState.STATE_OUT_OF_SERVICE,1,Android.Telephony.PhoneState,OutOfService,keep, E,10,android/telephony/ServiceState.STATE_POWER_OFF,3,Android.Telephony.PhoneState,PowerOff,keep, -?,28,android/telephony/ServiceState.UNKNOWN_ID,-1,,,, -?,29,android/telephony/SignalStrength.INVALID,2147483647,,,, +I,28,android/telephony/ServiceState.UNKNOWN_ID,-1,,,, +I,29,android/telephony/SignalStrength.INVALID,2147483647,,,, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_RSCP,2,Android.Telephony.SignalMeasurementType,Rscp,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_RSRP,3,Android.Telephony.SignalMeasurementType,Rsrp,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_RSRQ,4,Android.Telephony.SignalMeasurementType,Rsrq,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_RSSI,1,Android.Telephony.SignalMeasurementType,Rssi,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_RSSNR,5,Android.Telephony.SignalMeasurementType,Rssnr,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_SSRSRP,6,Android.Telephony.SignalMeasurementType,Ssrsrp,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_SSRSRQ,7,Android.Telephony.SignalMeasurementType,Ssrsrq,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_SSSINR,8,Android.Telephony.SignalMeasurementType,Sssinr,remove, +E,31,android/telephony/SignalThresholdInfo.SIGNAL_MEASUREMENT_TYPE_UNKNOWN,0,Android.Telephony.SignalMeasurementType,Unknown,remove, E,21,android/telephony/SmsManager.MMS_ERROR_CONFIGURATION_ERROR,7,Android.Telephony.MmsError,ConfigurationError,keep, E,21,android/telephony/SmsManager.MMS_ERROR_HTTP_FAILURE,4,Android.Telephony.MmsError,HttpFailure,keep, E,21,android/telephony/SmsManager.MMS_ERROR_INVALID_APN,2,Android.Telephony.MmsError,InvalidApn,keep, @@ -11343,6 +12179,8 @@ E,30,android/telephony/SmsManager.RESULT_RECEIVE_URI_EXCEPTION,506,Android.Telep E,30,android/telephony/SmsManager.RESULT_RECEIVE_WHILE_ENCRYPTED,504,Android.Telephony.SmsResult,ReceiveWhileEncrypted,remove, E,30,android/telephony/SmsManager.RESULT_REMOTE_EXCEPTION,31,Android.Telephony.SmsResult,RemoteException,remove, E,30,android/telephony/SmsManager.RESULT_REQUEST_NOT_SUPPORTED,24,Android.Telephony.SmsResult,RequestNotSupported,remove, +E,31,android/telephony/SmsManager.RESULT_RIL_ACCESS_BARRED,122,Android.Telephony.SmsResult,RilAccessBarred,remove, +E,31,android/telephony/SmsManager.RESULT_RIL_BLOCKED_DUE_TO_CALL,123,Android.Telephony.SmsResult,RilBlockedDueToCall,remove, E,30,android/telephony/SmsManager.RESULT_RIL_CANCELLED,119,Android.Telephony.SmsResult,RilCancelled,remove, E,30,android/telephony/SmsManager.RESULT_RIL_ENCODING_ERR,109,Android.Telephony.SmsResult,RilEncodingErr,remove, E,30,android/telephony/SmsManager.RESULT_RIL_INTERNAL_ERR,113,Android.Telephony.SmsResult,RilInternalErr,remove, @@ -11362,6 +12200,7 @@ E,30,android/telephony/SmsManager.RESULT_RIL_RADIO_NOT_AVAILABLE,100,Android.Tel E,30,android/telephony/SmsManager.RESULT_RIL_REQUEST_NOT_SUPPORTED,114,Android.Telephony.SmsResult,RilRequestNotSupported,remove, E,30,android/telephony/SmsManager.RESULT_RIL_REQUEST_RATE_LIMITED,106,Android.Telephony.SmsResult,RilRequestRateLimited,remove, E,30,android/telephony/SmsManager.RESULT_RIL_SIM_ABSENT,120,Android.Telephony.SmsResult,RilSimAbsent,remove, +E,31,android/telephony/SmsManager.RESULT_RIL_SIMULTANEOUS_SMS_AND_CALL_NOT_ALLOWED,121,Android.Telephony.SmsResult,RilSimultaneousSmsAndCallNotAllowed,remove, E,30,android/telephony/SmsManager.RESULT_RIL_SMS_SEND_FAIL_RETRY,101,Android.Telephony.SmsResult,RilSmsSendFailRetry,remove, E,30,android/telephony/SmsManager.RESULT_RIL_SYSTEM_ERR,108,Android.Telephony.SmsResult,RilSystemErr,remove, E,30,android/telephony/SmsManager.RESULT_SMS_BLOCKED_DURING_EMERGENCY,29,Android.Telephony.SmsResult,SmsBlockedDuringEmergency,remove, @@ -11377,15 +12216,19 @@ E,10,android/telephony/SmsMessage.ENCODING_16BIT,3,Android.Telephony.SmsEncoding E,10,android/telephony/SmsMessage.ENCODING_7BIT,1,Android.Telephony.SmsEncoding,SevenBit,keep, E,10,android/telephony/SmsMessage.ENCODING_8BIT,2,Android.Telephony.SmsEncoding,EightBit,keep, E,10,android/telephony/SmsMessage.ENCODING_UNKNOWN,0,Android.Telephony.SmsEncoding,Unknown,keep, -?,0,android/telephony/SmsMessage.MAX_USER_DATA_BYTES,140,,,, -?,0,android/telephony/SmsMessage.MAX_USER_DATA_BYTES_WITH_HEADER,134,,,, -?,0,android/telephony/SmsMessage.MAX_USER_DATA_SEPTETS,160,,,, -?,0,android/telephony/SmsMessage.MAX_USER_DATA_SEPTETS_WITH_HEADER,153,,,, +I,0,android/telephony/SmsMessage.MAX_USER_DATA_BYTES,140,,,, +I,0,android/telephony/SmsMessage.MAX_USER_DATA_BYTES_WITH_HEADER,134,,,, +I,0,android/telephony/SmsMessage.MAX_USER_DATA_SEPTETS,160,,,, +I,0,android/telephony/SmsMessage.MAX_USER_DATA_SEPTETS_WITH_HEADER,153,,,, +E,31,android/telephony/SubscriptionManager.D2D_SHARING_ALL,3,Android.Telephony.D2DSharing,All,remove, +E,31,android/telephony/SubscriptionManager.D2D_SHARING_ALL_CONTACTS,1,Android.Telephony.D2DSharing,AllContacts,remove, +E,31,android/telephony/SubscriptionManager.D2D_SHARING_DISABLED,0,Android.Telephony.D2DSharing,Disabled,remove, +E,31,android/telephony/SubscriptionManager.D2D_SHARING_SELECTED_CONTACTS,2,Android.Telephony.D2DSharing,SelectedContacts,remove, E,22,android/telephony/SubscriptionManager.DATA_ROAMING_DISABLE,0,Android.Telephony.DataRoamingMode,Disable,keep, E,22,android/telephony/SubscriptionManager.DATA_ROAMING_ENABLE,1,Android.Telephony.DataRoamingMode,Enable,keep, -?,29,android/telephony/SubscriptionManager.DEFAULT_SUBSCRIPTION_ID,2147483647,,,, -?,29,android/telephony/SubscriptionManager.INVALID_SIM_SLOT_INDEX,-1,,,, -?,24,android/telephony/SubscriptionManager.INVALID_SUBSCRIPTION_ID,-1,,,, +I,29,android/telephony/SubscriptionManager.DEFAULT_SUBSCRIPTION_ID,2147483647,,,, +I,29,android/telephony/SubscriptionManager.INVALID_SIM_SLOT_INDEX,-1,,,, +I,24,android/telephony/SubscriptionManager.INVALID_SUBSCRIPTION_ID,-1,,,, E,29,android/telephony/SubscriptionManager.SUBSCRIPTION_TYPE_LOCAL_SIM,0,Android.Telephony.SubscriptionType,LocalSim,remove, E,29,android/telephony/SubscriptionManager.SUBSCRIPTION_TYPE_REMOTE_SIM,1,Android.Telephony.SubscriptionType,RemoteSim,remove, E,28,android/telephony/SubscriptionPlan.LIMIT_BEHAVIOR_BILLED,1,Android.Telephony.DataLimitBehavior,Billed,remove, @@ -11395,24 +12238,26 @@ E,28,android/telephony/SubscriptionPlan.LIMIT_BEHAVIOR_UNKNOWN,-1,Android.Teleph E,30,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_LTE_ADVANCED_PRO,2,Android.Telephony.OverrideNetworkType,LteAdvancedPro,remove, E,30,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_LTE_CA,1,Android.Telephony.OverrideNetworkType,LteCa,remove, E,30,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_NONE,0,Android.Telephony.OverrideNetworkType,None,remove, +E,31,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_NR_ADVANCED,5,Android.Telephony.OverrideNetworkType,NrAdvanced,remove, E,30,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_NR_NSA,3,Android.Telephony.OverrideNetworkType,NrNsa,remove, E,30,android/telephony/TelephonyDisplayInfo.OVERRIDE_NETWORK_TYPE_NR_NSA_MMWAVE,4,Android.Telephony.OverrideNetworkType,NrNsaMmwave,remove, -E,29,android/telephony/TelephonyManager$CellInfoCallback.ERROR_MODEM_ERROR,2,Android.Telephony.TelephonyManagerErrorCode,ModemError,remove, -E,29,android/telephony/TelephonyManager$CellInfoCallback.ERROR_TIMEOUT,1,Android.Telephony.TelephonyManagerErrorCode,Timeout,remove, E,24,android/telephony/TelephonyManager.APPTYPE_CSIM,4,Android.Telephony.UiccApplicationType,Csim,remove, E,24,android/telephony/TelephonyManager.APPTYPE_ISIM,5,Android.Telephony.UiccApplicationType,Isim,remove, E,24,android/telephony/TelephonyManager.APPTYPE_RUIM,3,Android.Telephony.UiccApplicationType,Ruim,remove, E,24,android/telephony/TelephonyManager.APPTYPE_SIM,1,Android.Telephony.UiccApplicationType,Sim,remove, +E,31,android/telephony/TelephonyManager.APPTYPE_UNKNOWN,0,Android.Telephony.UiccApplicationType,Unknown,remove, E,24,android/telephony/TelephonyManager.APPTYPE_USIM,2,Android.Telephony.UiccApplicationType,Usim,remove, E,24,android/telephony/TelephonyManager.AUTHTYPE_EAP_AKA,129,Android.Telephony.AutheenticationType,EapAka,remove, E,24,android/telephony/TelephonyManager.AUTHTYPE_EAP_SIM,128,Android.Telephony.AutheenticationType,EapSim,remove, +E,31,android/telephony/TelephonyManager.CALL_COMPOSER_STATUS_OFF,0,Android.Telephony.CallComposerStatus,Off,remove, +E,31,android/telephony/TelephonyManager.CALL_COMPOSER_STATUS_ON,1,Android.Telephony.CallComposerStatus,On,remove, E,10,android/telephony/TelephonyManager.CALL_STATE_IDLE,0,Android.Telephony.CallState,Idle,keep, E,10,android/telephony/TelephonyManager.CALL_STATE_OFFHOOK,2,Android.Telephony.CallState,Offhook,keep, E,10,android/telephony/TelephonyManager.CALL_STATE_RINGING,1,Android.Telephony.CallState,Ringing,keep, -?,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_AFFILIATED,1,,,, -?,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_ANY,2,,,, -?,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_HOME,0,,,, -?,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_RADIO_DEFAULT,-1,,,, +I,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_AFFILIATED,1,,,, +I,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_ANY,2,,,, +I,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_HOME,0,,,, +I,28,android/telephony/TelephonyManager.CDMA_ROAMING_MODE_RADIO_DEFAULT,-1,,,, E,10,android/telephony/TelephonyManager.DATA_ACTIVITY_DORMANT,4,Android.Telephony.DataActivity,Dormant,keep, E,10,android/telephony/TelephonyManager.DATA_ACTIVITY_IN,1,Android.Telephony.DataActivity,In,keep, E,10,android/telephony/TelephonyManager.DATA_ACTIVITY_INOUT,3,Android.Telephony.DataActivity,Inout,keep, @@ -11422,8 +12267,15 @@ E,10,android/telephony/TelephonyManager.DATA_CONNECTED,2,Android.Telephony.DataC E,10,android/telephony/TelephonyManager.DATA_CONNECTING,1,Android.Telephony.DataConnectionStatus,Connecting,keep, E,10,android/telephony/TelephonyManager.DATA_DISCONNECTED,0,Android.Telephony.DataConnectionStatus,Disconnected,keep, E,30,android/telephony/TelephonyManager.DATA_DISCONNECTING,4,Android.Telephony.DataConnectionStatus,Disconnecting,remove, +E,31,android/telephony/TelephonyManager.DATA_ENABLED_REASON_CARRIER,2,Android.Telephony.DataEnabledReason,Carrier,remove, +E,31,android/telephony/TelephonyManager.DATA_ENABLED_REASON_POLICY,1,Android.Telephony.DataEnabledReason,Policy,remove, +E,31,android/telephony/TelephonyManager.DATA_ENABLED_REASON_THERMAL,3,Android.Telephony.DataEnabledReason,Thermal,remove, +E,31,android/telephony/TelephonyManager.DATA_ENABLED_REASON_USER,0,Android.Telephony.DataEnabledReason,User,remove, E,10,android/telephony/TelephonyManager.DATA_SUSPENDED,3,Android.Telephony.DataConnectionStatus,Suspended,keep, E,29,android/telephony/TelephonyManager.DATA_UNKNOWN,-1,Android.Telephony.DataConnectionStatus,Unknown,keep, +E,31,android/telephony/TelephonyManager.ERI_FLASH,2,Android.Telephony.EnhancedRoamingIndicator,Flash,remove, +E,31,android/telephony/TelephonyManager.ERI_OFF,1,Android.Telephony.EnhancedRoamingIndicator,Off,remove, +E,31,android/telephony/TelephonyManager.ERI_ON,0,Android.Telephony.EnhancedRoamingIndicator,On,remove, E,29,android/telephony/TelephonyManager.MULTISIM_ALLOWED,0,Android.Telephony.MultiSimMode,Allowed,remove, E,29,android/telephony/TelephonyManager.MULTISIM_NOT_SUPPORTED_BY_CARRIER,2,Android.Telephony.MultiSimMode,NotSupportedByCarrier,remove, E,29,android/telephony/TelephonyManager.MULTISIM_NOT_SUPPORTED_BY_HARDWARE,1,Android.Telephony.MultiSimMode,NotSupportedByHardware,remove, @@ -11454,11 +12306,11 @@ E,10,android/telephony/TelephonyManager.PHONE_TYPE_CDMA,2,Android.Telephony.Phon E,10,android/telephony/TelephonyManager.PHONE_TYPE_GSM,1,Android.Telephony.PhoneType,Gsm,keep, E,10,android/telephony/TelephonyManager.PHONE_TYPE_NONE,0,Android.Telephony.PhoneType,None,keep, E,15,android/telephony/TelephonyManager.PHONE_TYPE_SIP,3,Android.Telephony.PhoneType,Sip,keep, -?,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_INACTIVE_SUBSCRIPTION,2,,,, +I,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_INACTIVE_SUBSCRIPTION,2,,,, I,30,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_NO_OPPORTUNISTIC_SUB_AVAILABLE,3,,,, I,30,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_REMOTE_SERVICE_EXCEPTION,4,,,, -?,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_SUCCESS,0,,,, -?,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_VALIDATION_FAILED,1,,,, +I,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_SUCCESS,0,,,, +I,29,android/telephony/TelephonyManager.SET_OPPORTUNISTIC_SUB_VALIDATION_FAILED,1,,,, E,10,android/telephony/TelephonyManager.SIM_STATE_ABSENT,1,Android.Telephony.SimState,Absent,keep, E,26,android/telephony/TelephonyManager.SIM_STATE_CARD_IO_ERROR,8,Android.Telephony.SimState,CardIoError,keep, E,26,android/telephony/TelephonyManager.SIM_STATE_CARD_RESTRICTED,9,Android.Telephony.SimState,CardRestricted,keep, @@ -11469,24 +12321,33 @@ E,10,android/telephony/TelephonyManager.SIM_STATE_PIN_REQUIRED,2,Android.Telepho E,10,android/telephony/TelephonyManager.SIM_STATE_PUK_REQUIRED,3,Android.Telephony.SimState,PukRequired,keep, E,10,android/telephony/TelephonyManager.SIM_STATE_READY,5,Android.Telephony.SimState,Ready,keep, E,10,android/telephony/TelephonyManager.SIM_STATE_UNKNOWN,0,Android.Telephony.SimState,Unknown,keep, -?,29,android/telephony/TelephonyManager.UNINITIALIZED_CARD_ID,-2,,,, -?,28,android/telephony/TelephonyManager.UNKNOWN_CARRIER_ID,-1,,,, -?,29,android/telephony/TelephonyManager.UNSUPPORTED_CARD_ID,-1,,,, -?,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_ABORTED,2,,,, +I,29,android/telephony/TelephonyManager.UNINITIALIZED_CARD_ID,-2,,,, +I,28,android/telephony/TelephonyManager.UNKNOWN_CARRIER_ID,-1,,,, +I,29,android/telephony/TelephonyManager.UNSUPPORTED_CARD_ID,-1,,,, +I,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_ABORTED,2,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_DISABLE_MODEM_FAIL,5,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_ENABLE_MODEM_FAIL,6,,,, -?,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_INVALID_ARGUMENTS,3,,,, +I,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_INVALID_ARGUMENTS,3,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_MULTIPLE_NETWORKS_NOT_SUPPORTED,7,,,, -?,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_NO_CARRIER_PRIVILEGE,4,,,, +I,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_NO_CARRIER_PRIVILEGE,4,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_NO_OPPORTUNISTIC_SUB_AVAILABLE,8,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_REMOTE_SERVICE_EXCEPTION,9,,,, I,30,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_SERVICE_IS_DISABLED,10,,,, -?,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_SUCCESS,0,,,, -?,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_UNKNOWN_FAILURE,1,,,, +I,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_SUCCESS,0,,,, +I,29,android/telephony/TelephonyManager.UPDATE_AVAILABLE_NETWORKS_UNKNOWN_FAILURE,1,,,, E,26,android/telephony/TelephonyManager.USSD_ERROR_SERVICE_UNAVAIL,-2,Android.Telephony.UssdResultCode,ErrorServiceUnavail,keep, E,26,android/telephony/TelephonyManager.USSD_RETURN_FAILURE,-1,Android.Telephony.UssdResultCode,ReturnFailure,keep, -?,26,android/telephony/VisualVoicemailSmsFilterSettings.DESTINATION_PORT_ANY,-1,,,, -?,26,android/telephony/VisualVoicemailSmsFilterSettings.DESTINATION_PORT_DATA_SMS,-2,,,, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_AUTHENTICATION_FAILED,3,Android.Telephony.CallComposerErrorCode,AuthenticationFailed,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_FILE_TOO_LARGE,2,Android.Telephony.CallComposerErrorCode,FileTooLarge,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_INPUT_CLOSED,4,Android.Telephony.CallComposerErrorCode,InputClosed,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_IO_EXCEPTION,5,Android.Telephony.CallComposerErrorCode,IoException,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_NETWORK_UNAVAILABLE,6,Android.Telephony.CallComposerErrorCode,NetworkUnavailable,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_REMOTE_END_CLOSED,1,Android.Telephony.CallComposerErrorCode,RemoteEndClosed,remove, +E,31,android/telephony/TelephonyManager$CallComposerException.ERROR_UNKNOWN,0,Android.Telephony.CallComposerErrorCode,Unknown,remove, +E,29,android/telephony/TelephonyManager$CellInfoCallback.ERROR_MODEM_ERROR,2,Android.Telephony.TelephonyManagerErrorCode,ModemError,remove, +E,29,android/telephony/TelephonyManager$CellInfoCallback.ERROR_TIMEOUT,1,Android.Telephony.TelephonyManagerErrorCode,Timeout,remove, +I,26,android/telephony/VisualVoicemailSmsFilterSettings.DESTINATION_PORT_ANY,-1,,,, +I,26,android/telephony/VisualVoicemailSmsFilterSettings.DESTINATION_PORT_DATA_SMS,-2,,,, E,10,android/test/InstrumentationTestRunner.REPORT_VALUE_RESULT_ERROR,-1,Android.Test.TestResult,Error,keep, E,10,android/test/InstrumentationTestRunner.REPORT_VALUE_RESULT_FAILURE,-2,Android.Test.TestResult,Failure,keep, E,10,android/test/InstrumentationTestRunner.REPORT_VALUE_RESULT_OK,0,Android.Test.TestResult,Ok,keep, @@ -11524,7 +12385,7 @@ E,10,android/text/format/DateUtils.LENGTH_MEDIUM,20,Android.Text.Format.Abbrevia E,10,android/text/format/DateUtils.LENGTH_SHORT,30,Android.Text.Format.AbbreviationLength,Short,keep, E,10,android/text/format/DateUtils.LENGTH_SHORTER,40,Android.Text.Format.AbbreviationLength,Shorter,keep, E,10,android/text/format/DateUtils.LENGTH_SHORTEST,50,Android.Text.Format.AbbreviationLength,Shortest,keep, -?,0,android/text/format/Time.EPOCH_JULIAN_DAY,2440588,,,, +I,0,android/text/format/Time.EPOCH_JULIAN_DAY,2440588,,,, E,10,android/text/format/Time.FRIDAY,5,Android.Text.Format.DayOfWeek,Friday,keep, E,10,android/text/format/Time.HOUR,3,Android.Text.Format.TimeFormatValues,Hour,keep, E,10,android/text/format/Time.MINUTE,2,Android.Text.Format.TimeFormatValues,Minute,keep, @@ -11569,19 +12430,20 @@ E,10,android/text/method/MetaKeyKeyListener.META_CAP_LOCKED,256,Android.Text.Met E,10,android/text/method/MetaKeyKeyListener.META_SHIFT_ON,1,Android.Text.Method.MetaStates,ShiftOn,keep, E,10,android/text/method/MetaKeyKeyListener.META_SYM_LOCKED,1024,Android.Text.Method.MetaStates,SymLocked,keep, E,10,android/text/method/MetaKeyKeyListener.META_SYM_ON,4,Android.Text.Method.MetaStates,SymOn,keep, -?,0,android/text/style/BulletSpan.STANDARD_GAP_WIDTH,2,,,, +I,0,android/text/style/BulletSpan.STANDARD_GAP_WIDTH,2,,,, E,10,android/text/style/DynamicDrawableSpan.ALIGN_BASELINE,1,Android.Text.Style.SpanAlign,Baseline,keep, E,10,android/text/style/DynamicDrawableSpan.ALIGN_BOTTOM,0,Android.Text.Style.SpanAlign,Bottom,keep, E,29,android/text/style/DynamicDrawableSpan.ALIGN_CENTER,2,Android.Text.Style.SpanAlign,Center,keep, -?,18,android/text/style/EasyEditSpan.TEXT_DELETED,1,,,, -?,18,android/text/style/EasyEditSpan.TEXT_MODIFIED,2,,,, -?,28,android/text/style/QuoteSpan.STANDARD_COLOR,-16776961,,,, -?,28,android/text/style/QuoteSpan.STANDARD_GAP_WIDTH_PX,2,,,, -?,28,android/text/style/QuoteSpan.STANDARD_STRIPE_WIDTH_PX,2,,,, +I,18,android/text/style/EasyEditSpan.TEXT_DELETED,1,,,, +I,18,android/text/style/EasyEditSpan.TEXT_MODIFIED,2,,,, +I,28,android/text/style/QuoteSpan.STANDARD_COLOR,-16776961,,,, +I,28,android/text/style/QuoteSpan.STANDARD_GAP_WIDTH_PX,2,,,, +I,28,android/text/style/QuoteSpan.STANDARD_STRIPE_WIDTH_PX,2,,,, E,15,android/text/style/SuggestionSpan.FLAG_AUTO_CORRECTION,4,Android.Text.Style.SuggestionSpanFlags,AutoCorrection,remove,flags E,15,android/text/style/SuggestionSpan.FLAG_EASY_CORRECT,1,Android.Text.Style.SuggestionSpanFlags,EasyCorrect,remove,flags +E,31,android/text/style/SuggestionSpan.FLAG_GRAMMAR_ERROR,8,Android.Text.Style.SuggestionSpanFlags,GrammarError,remove,flags E,15,android/text/style/SuggestionSpan.FLAG_MISSPELLED,2,Android.Text.Style.SuggestionSpanFlags,Misspelled,remove,flags -?,15,android/text/style/SuggestionSpan.SUGGESTIONS_MAX_SIZE,5,,,, +I,15,android/text/style/SuggestionSpan.SUGGESTIONS_MAX_SIZE,5,,,, E,21,android/text/style/TtsSpan.MONTH_APRIL,3,Android.Text.Style.TtsSpanMonth,April,keep, E,21,android/text/style/TtsSpan.MONTH_AUGUST,7,Android.Text.Style.TtsSpanMonth,August,keep, E,21,android/text/style/TtsSpan.MONTH_DECEMBER,11,Android.Text.Style.TtsSpanMonth,December,keep, @@ -11651,9 +12513,9 @@ E,15,android/util/DisplayMetrics.DENSITY_TV,213,Android.Util.DisplayMetricsDensi E,10,android/util/DisplayMetrics.DENSITY_XHIGH,320,Android.Util.DisplayMetricsDensity,Xhigh,remove, E,16,android/util/DisplayMetrics.DENSITY_XXHIGH,480,Android.Util.DisplayMetricsDensity,Xxhigh,remove, E,18,android/util/DisplayMetrics.DENSITY_XXXHIGH,640,Android.Util.DisplayMetricsDensity,Xxxhigh,remove, -?,26,android/util/Half.MAX_EXPONENT,15,,,, -?,26,android/util/Half.MIN_EXPONENT,-14,,,, -?,26,android/util/Half.SIZE,16,,,, +I,26,android/util/Half.MAX_EXPONENT,15,,,, +I,26,android/util/Half.MIN_EXPONENT,-14,,,, +I,26,android/util/Half.SIZE,16,,,, E,19,android/util/LayoutDirection.INHERIT,2,Android.Util.LayoutDirections,Inherit,remove, E,19,android/util/LayoutDirection.LOCALE,3,Android.Util.LayoutDirections,Locale,remove, E,19,android/util/LayoutDirection.LTR,0,Android.Util.LayoutDirections,Ltr,remove, @@ -11692,10 +12554,10 @@ E,10,android/util/TypedValue.COMPLEX_UNIT_PT,3,Android.Util.ComplexUnitType,Pt,k E,10,android/util/TypedValue.COMPLEX_UNIT_PX,0,Android.Util.ComplexUnitType,Px,keep, E,10,android/util/TypedValue.COMPLEX_UNIT_SHIFT,0,Android.Util.ComplexUnitType,Shift,keep, E,10,android/util/TypedValue.COMPLEX_UNIT_SP,2,Android.Util.ComplexUnitType,Sp,keep, -?,22,android/util/TypedValue.DATA_NULL_EMPTY,1,,,, -?,22,android/util/TypedValue.DATA_NULL_UNDEFINED,0,,,, -?,0,android/util/TypedValue.DENSITY_DEFAULT,0,,,, -?,0,android/util/TypedValue.DENSITY_NONE,65535,,,, +I,22,android/util/TypedValue.DATA_NULL_EMPTY,1,,,, +I,22,android/util/TypedValue.DATA_NULL_UNDEFINED,0,,,, +I,0,android/util/TypedValue.DENSITY_DEFAULT,0,,,, +I,0,android/util/TypedValue.DENSITY_NONE,65535,,,, E,10,android/util/TypedValue.TYPE_ATTRIBUTE,2,Android.Util.DataType,Attribute,keep, E,10,android/util/TypedValue.TYPE_DIMENSION,5,Android.Util.DataType,Dimension,keep, E,10,android/util/TypedValue.TYPE_FIRST_COLOR_INT,28,Android.Util.DataType,FirstColorInt,keep, @@ -11722,8 +12584,8 @@ E,30,android/view/accessibility/AccessibilityEvent.CONTENT_CHANGE_TYPE_STATE_DES E,19,android/view/accessibility/AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE,1,Android.Views.Accessibility.ContentChangeTypes,Subtree,remove, E,19,android/view/accessibility/AccessibilityEvent.CONTENT_CHANGE_TYPE_TEXT,2,Android.Views.Accessibility.ContentChangeTypes,Text,remove, E,19,android/view/accessibility/AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED,0,Android.Views.Accessibility.ContentChangeTypes,Undefined,remove, -?,0,android/view/accessibility/AccessibilityEvent.INVALID_POSITION,-1,,,, -?,0,android/view/accessibility/AccessibilityEvent.MAX_TEXT_LENGTH,500,,,, +I,0,android/view/accessibility/AccessibilityEvent.INVALID_POSITION,-1,,,, +I,0,android/view/accessibility/AccessibilityEvent.MAX_TEXT_LENGTH,500,,,, E,16,android/view/accessibility/AccessibilityEvent.TYPE_ANNOUNCEMENT,16384,Android.Views.Accessibility.EventTypes,Announcement,keep, E,23,android/view/accessibility/AccessibilityEvent.TYPE_ASSIST_READING_CONTEXT,16777216,Android.Views.Accessibility.EventTypes,AssistReadingContext,keep, E,17,android/view/accessibility/AccessibilityEvent.TYPE_GESTURE_DETECTION_END,524288,Android.Views.Accessibility.EventTypes,GestureDetectionEnd,keep, @@ -11764,12 +12626,6 @@ E,28,android/view/accessibility/AccessibilityEvent.WINDOWS_CHANGE_TITLE,4,Androi E,29,android/view/accessibility/AccessibilityManager.FLAG_CONTENT_CONTROLS,4,Android.Views.Accessibility.ContentMode,Controls,remove, E,29,android/view/accessibility/AccessibilityManager.FLAG_CONTENT_ICONS,1,Android.Views.Accessibility.ContentMode,Icons,remove, E,29,android/view/accessibility/AccessibilityManager.FLAG_CONTENT_TEXT,2,Android.Views.Accessibility.ContentMode,Text,remove, -E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_MULTIPLE,2,Android.Views.Accessibility.SelectionMode,Multiple,remove, -E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_NONE,0,Android.Views.Accessibility.SelectionMode,None,remove, -E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_SINGLE,1,Android.Views.Accessibility.SelectionMode,Single,remove, -E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_FLOAT,1,Android.Views.Accessibility.RangeType,Float,remove, -E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_INT,0,Android.Views.Accessibility.RangeType,Int,remove, -E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_PERCENT,2,Android.Views.Accessibility.RangeType,Percent,remove, E,16,android/view/accessibility/AccessibilityNodeInfo.ACTION_ACCESSIBILITY_FOCUS,64,Android.Views.Accessibility.Action,AccessibilityFocus,remove,flags E,16,android/view/accessibility/AccessibilityNodeInfo.ACTION_CLEAR_ACCESSIBILITY_FOCUS,128,Android.Views.Accessibility.Action,ClearAccessibilityFocus,remove,flags E,15,android/view/accessibility/AccessibilityNodeInfo.ACTION_CLEAR_FOCUS,2,Android.Views.Accessibility.Action,ClearFocus,remove,flags @@ -11792,6 +12648,7 @@ E,16,android/view/accessibility/AccessibilityNodeInfo.ACTION_SCROLL_FORWARD,4096 E,15,android/view/accessibility/AccessibilityNodeInfo.ACTION_SELECT,4,Android.Views.Accessibility.Action,Select,remove,flags E,18,android/view/accessibility/AccessibilityNodeInfo.ACTION_SET_SELECTION,131072,Android.Views.Accessibility.Action,SetSelection,remove,flags E,21,android/view/accessibility/AccessibilityNodeInfo.ACTION_SET_TEXT,2097152,Android.Views.Accessibility.Action,SetText,remove,flags +I,31,android/view/accessibility/AccessibilityNodeInfo.EXTRA_DATA_TEXT_CHARACTER_LOCATION_ARG_MAX_LENGTH,20000,,,, E,16,android/view/accessibility/AccessibilityNodeInfo.FOCUS_ACCESSIBILITY,2,Android.Views.Accessibility.NodeFocus,Accessibility,remove, E,16,android/view/accessibility/AccessibilityNodeInfo.FOCUS_INPUT,1,Android.Views.Accessibility.NodeFocus,Input,remove, E,16,android/view/accessibility/AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER,1,Android.Views.Accessibility.MovementGranularity,Character,remove, @@ -11799,7 +12656,13 @@ E,16,android/view/accessibility/AccessibilityNodeInfo.MOVEMENT_GRANULARITY_LINE, E,16,android/view/accessibility/AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE,16,Android.Views.Accessibility.MovementGranularity,Page,remove, E,16,android/view/accessibility/AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH,8,Android.Views.Accessibility.MovementGranularity,Paragraph,remove, E,16,android/view/accessibility/AccessibilityNodeInfo.MOVEMENT_GRANULARITY_WORD,2,Android.Views.Accessibility.MovementGranularity,Word,remove, -?,21,android/view/accessibility/AccessibilityNodeProvider.HOST_VIEW_ID,-1,,,, +E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_MULTIPLE,2,Android.Views.Accessibility.SelectionMode,Multiple,remove, +E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_NONE,0,Android.Views.Accessibility.SelectionMode,None,remove, +E,21,android/view/accessibility/AccessibilityNodeInfo$CollectionInfo.SELECTION_MODE_SINGLE,1,Android.Views.Accessibility.SelectionMode,Single,remove, +E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_FLOAT,1,Android.Views.Accessibility.RangeType,Float,remove, +E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_INT,0,Android.Views.Accessibility.RangeType,Int,remove, +E,19,android/view/accessibility/AccessibilityNodeInfo$RangeInfo.RANGE_TYPE_PERCENT,2,Android.Views.Accessibility.RangeType,Percent,remove, +I,21,android/view/accessibility/AccessibilityNodeProvider.HOST_VIEW_ID,-1,,,, E,27,android/view/accessibility/AccessibilityRequestPreparer.REQUEST_TYPE_EXTRA_DATA,1,Android.Views.Accessibility.AccessibilityRequestTypes,ExtraData,remove, E,22,android/view/accessibility/AccessibilityWindowInfo.TYPE_ACCESSIBILITY_OVERLAY,4,Android.Views.Accessibility.AccessibilityWindowType,AccessibilityOverlay,remove, E,21,android/view/accessibility/AccessibilityWindowInfo.TYPE_APPLICATION,1,Android.Views.Accessibility.AccessibilityWindowType,Application,remove, @@ -11812,16 +12675,16 @@ E,19,android/view/accessibility/CaptioningManager$CaptionStyle.EDGE_TYPE_NONE,0, E,19,android/view/accessibility/CaptioningManager$CaptionStyle.EDGE_TYPE_OUTLINE,1,Android.Views.Accessibility.CaptionStyles,Outline,remove, E,21,android/view/accessibility/CaptioningManager$CaptionStyle.EDGE_TYPE_RAISED,3,Android.Views.Accessibility.CaptionStyles,Raised,remove, E,21,android/view/accessibility/CaptioningManager$CaptionStyle.EDGE_TYPE_UNSPECIFIED,-1,Android.Views.Accessibility.CaptionStyles,Unspecified,remove, -?,23,android/view/ActionMode.DEFAULT_HIDE_DURATION,-1,,,, +I,23,android/view/ActionMode.DEFAULT_HIDE_DURATION,-1,,,, E,23,android/view/ActionMode.TYPE_FLOATING,1,Android.Views.ActionModeType,Floating,keep, E,23,android/view/ActionMode.TYPE_PRIMARY,0,Android.Views.ActionModeType,Primary,keep, E,10,android/view/animation/Animation.ABSOLUTE,0,Android.Views.Animations.Dimension,Absolute,keep, -?,0,android/view/animation/Animation.INFINITE,-1,,,, +I,0,android/view/animation/Animation.INFINITE,-1,,,, E,10,android/view/animation/Animation.RELATIVE_TO_PARENT,2,Android.Views.Animations.Dimension,RelativeToParent,keep, E,10,android/view/animation/Animation.RELATIVE_TO_SELF,1,Android.Views.Animations.Dimension,RelativeToSelf,keep, E,10,android/view/animation/Animation.RESTART,1,Android.Views.Animations.RepeatMode,Restart,keep, E,10,android/view/animation/Animation.REVERSE,2,Android.Views.Animations.RepeatMode,Reverse,keep, -?,0,android/view/animation/Animation.START_ON_FIRST_FRAME,-1,,,, +I,0,android/view/animation/Animation.START_ON_FIRST_FRAME,-1,,,, E,10,android/view/animation/Animation.ZORDER_BOTTOM,-1,Android.Views.Animations.ContentZorder,Bottom,keep, E,10,android/view/animation/Animation.ZORDER_NORMAL,0,Android.Views.Animations.ContentZorder,Normal,keep, E,10,android/view/animation/Animation.ZORDER_TOP,1,Android.Views.Animations.ContentZorder,Top,keep, @@ -11851,18 +12714,22 @@ E,30,android/view/contentcapture/ContentCaptureManager.DATA_SHARE_ERROR_TIMEOUT_ E,30,android/view/contentcapture/ContentCaptureManager.DATA_SHARE_ERROR_UNKNOWN,1,Android.Views.ContentCapture.DataShareError,Unknown,remove, A,0,,0,Android.Views.ContentCaptures.DataRemovalRequestFlags,None,remove, E,29,android/view/contentcapture/DataRemovalRequest.FLAG_IS_PREFIX,1,Android.Views.ContentCaptures.DataRemovalRequestFlags,FlagIsPrefix,remove, -E,24,android/view/Display$HdrCapabilities.HDR_TYPE_DOLBY_VISION,1,Android.Views.HdrType,DolbyVision,remove, -E,24,android/view/Display$HdrCapabilities.HDR_TYPE_HDR10,2,Android.Views.HdrType,Hdr10,remove, -E,29,android/view/Display$HdrCapabilities.HDR_TYPE_HDR10_PLUS,4,Android.Views.HdrType,Hdr10Plus,remove, -E,24,android/view/Display$HdrCapabilities.HDR_TYPE_HLG,3,Android.Views.HdrType,Hlg,remove, -?,0,android/view/Display.DEFAULT_DISPLAY,0,,,, +A,31,,0,Android.Views.ContentInfoFlags,None,remove,flags +E,31,android/view/ContentInfo.FLAG_CONVERT_TO_PLAIN_TEXT,1,Android.Views.ContentInfoFlags,ConvertToPlainText,remove,flags +E,31,android/view/ContentInfo.SOURCE_APP,0,Android.Views.ContentInfoSource,App,remove, +E,31,android/view/ContentInfo.SOURCE_AUTOFILL,4,Android.Views.ContentInfoSource,Autofill,remove, +E,31,android/view/ContentInfo.SOURCE_CLIPBOARD,1,Android.Views.ContentInfoSource,Clipboard,remove, +E,31,android/view/ContentInfo.SOURCE_DRAG_AND_DROP,3,Android.Views.ContentInfoSource,DragAndDrop,remove, +E,31,android/view/ContentInfo.SOURCE_INPUT_METHOD,2,Android.Views.ContentInfoSource,InputMethod,remove, +E,31,android/view/ContentInfo.SOURCE_PROCESS_TEXT,5,Android.Views.ContentInfoSource,ProcessText,remove, +I,0,android/view/Display.DEFAULT_DISPLAY,0,,,, A,0,,0,Android.Views.DisplayFlags,None,remove,flags E,19,android/view/Display.FLAG_PRESENTATION,8,Android.Views.DisplayFlags,Presentation,remove,flags E,19,android/view/Display.FLAG_PRIVATE,4,Android.Views.DisplayFlags,Private,remove,flags E,23,android/view/Display.FLAG_ROUND,16,Android.Views.DisplayFlags,Round,remove,flags E,17,android/view/Display.FLAG_SECURE,2,Android.Views.DisplayFlags,Secure,remove,flags E,17,android/view/Display.FLAG_SUPPORTS_PROTECTED_BUFFERS,1,Android.Views.DisplayFlags,SupportsProtectedBuffers,remove,flags -?,23,android/view/Display.INVALID_DISPLAY,-1,,,, +I,23,android/view/Display.INVALID_DISPLAY,-1,,,, E,21,android/view/Display.STATE_DOZE,3,Android.Views.DisplayState,Doze,keep, E,21,android/view/Display.STATE_DOZE_SUSPEND,4,Android.Views.DisplayState,DozeSuspend,keep, E,20,android/view/Display.STATE_DOZING,3,Android.Views.DisplayState,Dozing,keep, @@ -11871,6 +12738,10 @@ E,20,android/view/Display.STATE_ON,2,Android.Views.DisplayState,On,keep, E,28,android/view/Display.STATE_ON_SUSPEND,6,Android.Views.DisplayState,OnSuspend,keep, E,20,android/view/Display.STATE_UNKNOWN,0,Android.Views.DisplayState,Unknown,keep, E,26,android/view/Display.STATE_VR,5,Android.Views.DisplayState,Vr,keep, +E,24,android/view/Display$HdrCapabilities.HDR_TYPE_DOLBY_VISION,1,Android.Views.HdrType,DolbyVision,remove, +E,24,android/view/Display$HdrCapabilities.HDR_TYPE_HDR10,2,Android.Views.HdrType,Hdr10,remove, +E,29,android/view/Display$HdrCapabilities.HDR_TYPE_HDR10_PLUS,4,Android.Views.HdrType,Hdr10Plus,remove, +E,24,android/view/Display$HdrCapabilities.HDR_TYPE_HLG,3,Android.Views.HdrType,Hlg,remove, E,15,android/view/DragEvent.ACTION_DRAG_ENDED,4,Android.Views.DragAction,Ended,keep, E,15,android/view/DragEvent.ACTION_DRAG_ENTERED,5,Android.Views.DragAction,Entered,keep, E,15,android/view/DragEvent.ACTION_DRAG_EXITED,6,Android.Views.DragAction,Exited,keep, @@ -11879,8 +12750,10 @@ E,15,android/view/DragEvent.ACTION_DRAG_STARTED,1,Android.Views.DragAction,Start E,15,android/view/DragEvent.ACTION_DROP,3,Android.Views.DragAction,Drop,keep, E,24,android/view/FrameMetrics.ANIMATION_DURATION,2,Android.Views.FrameMetricsId,AnimationDuration,remove, E,24,android/view/FrameMetrics.COMMAND_ISSUE_DURATION,6,Android.Views.FrameMetricsId,CommandIssueDuration,remove, +E,31,android/view/FrameMetrics.DEADLINE,13,Android.Views.FrameMetricsId,Deadline,remove, E,24,android/view/FrameMetrics.DRAW_DURATION,4,Android.Views.FrameMetricsId,DrawDuration,remove, E,24,android/view/FrameMetrics.FIRST_DRAW_FRAME,9,Android.Views.FrameMetricsId,FirstDrawFrame,remove, +E,31,android/view/FrameMetrics.GPU_DURATION,12,Android.Views.FrameMetricsId,GpuDuration,remove, E,24,android/view/FrameMetrics.INPUT_HANDLING_DURATION,1,Android.Views.FrameMetricsId,InputHandlingDuration,remove, E,26,android/view/FrameMetrics.INTENDED_VSYNC_TIMESTAMP,10,Android.Views.FrameMetricsId,IntendedVsyncTimestamp,remove, E,24,android/view/FrameMetrics.LAYOUT_MEASURE_DURATION,3,Android.Views.FrameMetricsId,LayoutMeasureDuration,remove, @@ -11960,6 +12833,7 @@ E,10,android/view/InputDevice.SOURCE_KEYBOARD,257,Android.Views.InputSourceType, E,10,android/view/InputDevice.SOURCE_MOUSE,8194,Android.Views.InputSourceType,Mouse,remove, E,26,android/view/InputDevice.SOURCE_MOUSE_RELATIVE,131076,Android.Views.InputSourceType,MouseRelative,remove, E,26,android/view/InputDevice.SOURCE_ROTARY_ENCODER,4194304,Android.Views.InputSourceType,RotaryEncoder,remove, +E,31,android/view/InputDevice.SOURCE_SENSOR,67108864,Android.Views.InputSourceType,Sensor,remove, E,15,android/view/InputDevice.SOURCE_STYLUS,16386,Android.Views.InputSourceType,Stylus,remove, E,18,android/view/InputDevice.SOURCE_TOUCH_NAVIGATION,2097152,Android.Views.InputSourceType,TouchNavigation,remove, E,10,android/view/InputDevice.SOURCE_TOUCHPAD,1048584,Android.Views.InputSourceType,Touchpad,remove, @@ -12000,11 +12874,10 @@ E,10,android/view/inputmethod/InputMethodManager.RESULT_UNCHANGED_HIDDEN,1,Andro E,10,android/view/inputmethod/InputMethodManager.RESULT_UNCHANGED_SHOWN,0,Android.Views.InputMethods.InputMethodResults,UnchangedShown,keep, E,10,android/view/inputmethod/InputMethodManager.SHOW_FORCED,2,Android.Views.InputMethods.ShowFlags,Forced,remove,flags E,10,android/view/inputmethod/InputMethodManager.SHOW_IMPLICIT,1,Android.Views.InputMethods.ShowFlags,Implicit,remove,flags -?,0,android/view/KeyCharacterMap$KeyData.META_LENGTH,4,,,, E,10,android/view/KeyCharacterMap.ALPHA,3,Android.Views.KeyboardType,Alpha,keep, E,10,android/view/KeyCharacterMap.BUILT_IN_KEYBOARD,0,Android.Views.KeyboardType,BuiltInKeyboard,keep, -?,0,android/view/KeyCharacterMap.COMBINING_ACCENT,-2147483648,,,, -?,0,android/view/KeyCharacterMap.COMBINING_ACCENT_MASK,2147483647,,,, +I,0,android/view/KeyCharacterMap.COMBINING_ACCENT,-2147483648,,,, +I,0,android/view/KeyCharacterMap.COMBINING_ACCENT_MASK,2147483647,,,, E,15,android/view/KeyCharacterMap.FULL,4,Android.Views.KeyboardType,Full,keep, E,15,android/view/KeyCharacterMap.MODIFIER_BEHAVIOR_CHORDED,0,Android.Views.KeyModifierBehavior,Chorded,keep, E,15,android/view/KeyCharacterMap.MODIFIER_BEHAVIOR_CHORDED_OR_TOGGLED,1,Android.Views.KeyModifierBehavior,ChordedOrToggled,keep, @@ -12012,6 +12885,7 @@ E,10,android/view/KeyCharacterMap.NUMERIC,1,Android.Views.KeyboardType,Numeric,k E,10,android/view/KeyCharacterMap.PREDICTIVE,2,Android.Views.KeyboardType,Predictive,keep, E,15,android/view/KeyCharacterMap.SPECIAL_FUNCTION,5,Android.Views.KeyboardType,SpecialFunction,keep, E,15,android/view/KeyCharacterMap.VIRTUAL_KEYBOARD,-1,Android.Views.KeyboardType,VirtualKeyboard,keep, +I,0,android/view/KeyCharacterMap$KeyData.META_LENGTH,4,,,, E,10,android/view/KeyEvent.ACTION_DOWN,0,Android.Views.KeyEventActions,Down,keep, E,10,android/view/KeyEvent.ACTION_MULTIPLE,2,Android.Views.KeyEventActions,Multiple,keep, E,10,android/view/KeyEvent.ACTION_UP,1,Android.Views.KeyEventActions,Up,keep, @@ -12315,7 +13189,7 @@ E,10,android/view/KeyEvent.KEYCODE_Z,54,Android.Views.Keycode,Z,keep, E,16,android/view/KeyEvent.KEYCODE_ZENKAKU_HANKAKU,211,Android.Views.Keycode,ZenkakuHankaku,keep, E,15,android/view/KeyEvent.KEYCODE_ZOOM_IN,168,Android.Views.Keycode,ZoomIn,keep, E,15,android/view/KeyEvent.KEYCODE_ZOOM_OUT,169,Android.Views.Keycode,ZoomOut,keep, -?,0,android/view/KeyEvent.MAX_KEYCODE,84,,,, +I,0,android/view/KeyEvent.MAX_KEYCODE,84,,,, A,0,,0,Android.Views.MetaKeyStates,None,, E,10,android/view/KeyEvent.META_ALT_LEFT_ON,16,Android.Views.MetaKeyStates,AltLeftOn,keep, E,15,android/view/KeyEvent.META_ALT_MASK,50,Android.Views.MetaKeyStates,AltMask,keep, @@ -12424,14 +13298,14 @@ E,10,android/view/MotionEvent.EDGE_TOP,1,Android.Views.Edge,Top,keep, A,0,,0,Android.Views.MotionEventFlags,None,remove,flags E,10,android/view/MotionEvent.FLAG_WINDOW_IS_OBSCURED,1,Android.Views.MotionEventFlags,WindowIsObscured,remove,flags E,29,android/view/MotionEvent.FLAG_WINDOW_IS_PARTIALLY_OBSCURED,2,Android.Views.MotionEventFlags,WindowIsPartiallyObscured,remove,flags -?,15,android/view/MotionEvent.INVALID_POINTER_ID,-1,,,, +I,15,android/view/MotionEvent.INVALID_POINTER_ID,-1,,,, E,15,android/view/MotionEvent.TOOL_TYPE_ERASER,4,Android.Views.MotionEventToolType,Eraser,remove, E,15,android/view/MotionEvent.TOOL_TYPE_FINGER,1,Android.Views.MotionEventToolType,Finger,remove, E,15,android/view/MotionEvent.TOOL_TYPE_MOUSE,3,Android.Views.MotionEventToolType,Mouse,remove, E,15,android/view/MotionEvent.TOOL_TYPE_STYLUS,2,Android.Views.MotionEventToolType,Stylus,remove, E,15,android/view/MotionEvent.TOOL_TYPE_UNKNOWN,0,Android.Views.MotionEventToolType,Unknown,remove, -?,0,android/view/OrientationEventListener.ORIENTATION_UNKNOWN,-1,,,, -?,0,android/view/OrientationListener.ORIENTATION_UNKNOWN,-1,,,, +I,0,android/view/OrientationEventListener.ORIENTATION_UNKNOWN,-1,,,, +I,0,android/view/OrientationListener.ORIENTATION_UNKNOWN,-1,,,, E,24,android/view/PixelCopy.ERROR_DESTINATION_INVALID,5,Android.Views.PixelCopyResult,ErrorDestinationInvalid,remove, E,24,android/view/PixelCopy.ERROR_SOURCE_INVALID,4,Android.Views.PixelCopyResult,ErrorSourceInvalid,remove, E,24,android/view/PixelCopy.ERROR_SOURCE_NO_DATA,3,Android.Views.PixelCopyResult,ErrorSourceNoData,remove, @@ -12461,32 +13335,42 @@ E,24,android/view/PointerIcon.TYPE_VERTICAL_TEXT,1009,Android.Views.PointerIconT E,24,android/view/PointerIcon.TYPE_WAIT,1004,Android.Views.PointerIconType,Wait,remove, E,24,android/view/PointerIcon.TYPE_ZOOM_IN,1018,Android.Views.PointerIconType,ZoomIn,remove, E,24,android/view/PointerIcon.TYPE_ZOOM_OUT,1019,Android.Views.PointerIconType,ZoomOut,remove, +E,31,android/view/RoundedCorner.POSITION_BOTTOM_LEFT,3,Android.Views.RoundedCornerPosition,BottomLeft,remove, +E,31,android/view/RoundedCorner.POSITION_BOTTOM_RIGHT,2,Android.Views.RoundedCornerPosition,BottomRight,remove, +E,31,android/view/RoundedCorner.POSITION_TOP_LEFT,0,Android.Views.RoundedCornerPosition,TopLeft,remove, +E,31,android/view/RoundedCorner.POSITION_TOP_RIGHT,1,Android.Views.RoundedCornerPosition,TopRight,remove, E,10,android/view/SoundEffectConstants.CLICK,0,Android.Views.SoundEffects,Click,keep, E,10,android/view/SoundEffectConstants.NAVIGATION_DOWN,4,Android.Views.SoundEffects,NavigationDown,keep, E,10,android/view/SoundEffectConstants.NAVIGATION_LEFT,1,Android.Views.SoundEffects,NavigationLeft,keep, +E,31,android/view/SoundEffectConstants.NAVIGATION_REPEAT_DOWN,8,Android.Views.SoundEffects,NavigationRepeatDown,remove, +E,31,android/view/SoundEffectConstants.NAVIGATION_REPEAT_LEFT,5,Android.Views.SoundEffects,NavigationRepeatLeft,remove, +E,31,android/view/SoundEffectConstants.NAVIGATION_REPEAT_RIGHT,7,Android.Views.SoundEffects,NavigationRepeatRight,remove, +E,31,android/view/SoundEffectConstants.NAVIGATION_REPEAT_UP,6,Android.Views.SoundEffects,NavigationRepeatUp,remove, E,10,android/view/SoundEffectConstants.NAVIGATION_RIGHT,3,Android.Views.SoundEffects,NavigationRight,keep, E,10,android/view/SoundEffectConstants.NAVIGATION_UP,2,Android.Views.SoundEffects,NavigationUp,keep, +E,31,android/view/Surface.CHANGE_FRAME_RATE_ALWAYS,1,Android.Views.SurfaceChangeFrameRate,Always,remove, +E,31,android/view/Surface.CHANGE_FRAME_RATE_ONLY_IF_SEAMLESS,0,Android.Views.SurfaceChangeFrameRate,OnlyIfSeamless,remove, E,30,android/view/Surface.FRAME_RATE_COMPATIBILITY_DEFAULT,0,Android.Views.SurfaceFrameRateCompatibility,Default,remove, E,30,android/view/Surface.FRAME_RATE_COMPATIBILITY_FIXED_SOURCE,1,Android.Views.SurfaceFrameRateCompatibility,FixedSource,remove, R,0,android/view/Surface.FX_SURFACE_BLUR,65536,,,remove, R,0,android/view/Surface.FX_SURFACE_DIM,131072,,,remove, R,0,android/view/Surface.FX_SURFACE_MASK,98304,,,remove, R,0,android/view/Surface.FX_SURFACE_NORMAL,0,,,remove, -?,0,android/view/Surface.GPU,40,,,, -?,0,android/view/Surface.HARDWARE,16,,,, -?,0,android/view/Surface.HIDDEN,4,,,, -?,0,android/view/Surface.NON_PREMULTIPLIED,256,,,, -?,0,android/view/Surface.PUSH_BUFFERS,512,,,, +I,0,android/view/Surface.GPU,40,,,, +I,0,android/view/Surface.HARDWARE,16,,,, +I,0,android/view/Surface.HIDDEN,4,,,, +I,0,android/view/Surface.NON_PREMULTIPLIED,256,,,, +I,0,android/view/Surface.PUSH_BUFFERS,512,,,, E,10,android/view/Surface.ROTATION_0,0,Android.Views.SurfaceOrientation,Rotation0,keep, E,10,android/view/Surface.ROTATION_180,2,Android.Views.SurfaceOrientation,Rotation180,keep, E,10,android/view/Surface.ROTATION_270,3,Android.Views.SurfaceOrientation,Rotation270,keep, E,10,android/view/Surface.ROTATION_90,1,Android.Views.SurfaceOrientation,Rotation90,keep, -?,0,android/view/Surface.SECURE,128,,,, -?,0,android/view/Surface.SURACE_FROZEN,2,,,, -?,0,android/view/Surface.SURFACE_BLUR_FREEZE,16,,,, -?,0,android/view/Surface.SURFACE_DITHER,4,,,, -?,0,android/view/Surface.SURFACE_FROZEN,2,,,, -?,0,android/view/Surface.SURFACE_HIDDEN,1,,,, +I,0,android/view/Surface.SECURE,128,,,, +I,0,android/view/Surface.SURACE_FROZEN,2,,,, +I,0,android/view/Surface.SURFACE_BLUR_FREEZE,16,,,, +I,0,android/view/Surface.SURFACE_DITHER,4,,,, +I,0,android/view/Surface.SURFACE_FROZEN,2,,,, +I,0,android/view/Surface.SURFACE_HIDDEN,1,,,, E,28,android/view/textclassifier/SelectionEvent.ACTION_ABANDON,107,Android.Views.TextClassifiers.SelectionAction,Abandon,remove, E,28,android/view/textclassifier/SelectionEvent.ACTION_COPY,101,Android.Views.TextClassifiers.SelectionAction,Copy,remove, E,28,android/view/textclassifier/SelectionEvent.ACTION_CUT,103,Android.Views.TextClassifiers.SelectionAction,Cut,remove, @@ -12539,16 +13423,32 @@ E,28,android/view/textclassifier/TextLinks.STATUS_NO_LINKS_APPLIED,2,Android.Vie E,28,android/view/textclassifier/TextLinks.STATUS_NO_LINKS_FOUND,1,Android.Views.TextClassifiers.ApplyStatusCode,NoLinksFound,remove, E,29,android/view/textclassifier/TextLinks.STATUS_UNSUPPORTED_CHARACTER,4,Android.Views.TextClassifiers.ApplyStatusCode,UnsupportedCharacter,remove, A,0,,0,Android.Views.TextService.SuggestionsAttributes,None,remove, +E,31,android/view/textservice/SuggestionsInfo.RESULT_ATTR_DONT_SHOW_UI_FOR_SUGGESTIONS,16,Android.Views.TextService.SuggestionsAttributes,DontShowUiForSuggestions,remove, E,15,android/view/textservice/SuggestionsInfo.RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS,4,Android.Views.TextService.SuggestionsAttributes,HasRecommendedSuggestions,remove, E,15,android/view/textservice/SuggestionsInfo.RESULT_ATTR_IN_THE_DICTIONARY,1,Android.Views.TextService.SuggestionsAttributes,InTheDictionary,remove, +E,31,android/view/textservice/SuggestionsInfo.RESULT_ATTR_LOOKS_LIKE_GRAMMAR_ERROR,8,Android.Views.TextService.SuggestionsAttributes,LooksLikeGrammarError,remove, E,15,android/view/textservice/SuggestionsInfo.RESULT_ATTR_LOOKS_LIKE_TYPO,2,Android.Views.TextService.SuggestionsAttributes,LooksLikeTypo,remove, E,10,android/view/TouchDelegate.ABOVE,1,Android.Views.TouchableRegion,Above,keep, E,10,android/view/TouchDelegate.BELOW,2,Android.Views.TouchableRegion,Below,keep, E,10,android/view/TouchDelegate.TO_LEFT,4,Android.Views.TouchableRegion,ToLeft,keep, E,10,android/view/TouchDelegate.TO_RIGHT,8,Android.Views.TouchableRegion,ToRight,keep, -E,10,android/view/View$MeasureSpec.AT_MOST,-2147483648,Android.Views.MeasureSpecMode,AtMost,keep, -E,10,android/view/View$MeasureSpec.EXACTLY,1073741824,Android.Views.MeasureSpecMode,Exactly,keep, -E,10,android/view/View$MeasureSpec.UNSPECIFIED,0,Android.Views.MeasureSpecMode,Unspecified,keep, +E,31,android/view/translation/TranslationCapability.STATE_AVAILABLE_TO_DOWNLOAD,1,Android.Views.Translation.TranslationState,AvailableToDownload,remove, +E,31,android/view/translation/TranslationCapability.STATE_DOWNLOADING,2,Android.Views.Translation.TranslationState,Downloading,remove, +E,31,android/view/translation/TranslationCapability.STATE_NOT_AVAILABLE,4,Android.Views.Translation.TranslationState,NotAvailable,remove, +E,31,android/view/translation/TranslationCapability.STATE_ON_DEVICE,3,Android.Views.Translation.TranslationState,OnDevice,remove, +E,31,android/view/translation/TranslationContext.FLAG_DEFINITIONS,4,Android.Views.Translation.TranslationContextFlags,Definitions,remove,flags +E,31,android/view/translation/TranslationContext.FLAG_LOW_LATENCY,1,Android.Views.Translation.TranslationContextFlags,LowLatency,remove,flags +E,31,android/view/translation/TranslationContext.FLAG_TRANSLITERATION,2,Android.Views.Translation.TranslationContextFlags,Transliteration,remove,flags +E,31,android/view/translation/TranslationRequest.FLAG_DICTIONARY_RESULT,2,Android.Views.Translation.TranslationRequestFlags,DictionaryResult,remove,flags +E,31,android/view/translation/TranslationRequest.FLAG_PARTIAL_RESPONSES,8,Android.Views.Translation.TranslationRequestFlags,PartialResponses,remove,flags +E,31,android/view/translation/TranslationRequest.FLAG_TRANSLATION_RESULT,1,Android.Views.Translation.TranslationRequestFlags,TranslationResult,remove,flags +E,31,android/view/translation/TranslationRequest.FLAG_TRANSLITERATION_RESULT,4,Android.Views.Translation.TranslationRequestFlags,TransliterationResult,remove,flags +E,31,android/view/translation/TranslationResponse.TRANSLATION_STATUS_CONTEXT_UNSUPPORTED,2,Android.Views.Translation.TranslationResponseStatus,ContextUnsupported,remove, +E,31,android/view/translation/TranslationResponse.TRANSLATION_STATUS_SUCCESS,0,Android.Views.Translation.TranslationResponseStatus,Success,remove, +E,31,android/view/translation/TranslationResponse.TRANSLATION_STATUS_UNKNOWN_ERROR,1,Android.Views.Translation.TranslationResponseStatus,UnknownError,remove, +E,31,android/view/translation/TranslationResponseValue.STATUS_ERROR,1,Android.Views.Translation.TranslationResponseValueStatus,Error,remove, +E,31,android/view/translation/TranslationResponseValue.STATUS_SUCCESS,0,Android.Views.Translation.TranslationResponseValueStatus,Success,remove, +E,31,android/view/translation/TranslationSpec.DATA_FORMAT_TEXT,1,Android.Views.Translation.TranslationDataFormat,Text,remove, E,19,android/view/View.ACCESSIBILITY_LIVE_REGION_ASSERTIVE,2,Android.Views.AccessibilityLiveRegion,Assertive,remove, E,19,android/view/View.ACCESSIBILITY_LIVE_REGION_NONE,0,Android.Views.AccessibilityLiveRegion,None,remove, E,19,android/view/View.ACCESSIBILITY_LIVE_REGION_POLITE,1,Android.Views.AccessibilityLiveRegion,Polite,remove, @@ -12581,7 +13481,7 @@ E,26,android/view/View.FOCUSABLE_AUTO,16,Android.Views.ViewFocusability,Focusabl E,10,android/view/View.FOCUSABLES_ALL,0,Android.Views.FocusablesFlags,All,keep,flags E,10,android/view/View.FOCUSABLES_TOUCH_MODE,1,Android.Views.FocusablesFlags,TouchMode,keep,flags E,10,android/view/View.GONE,8,Android.Views.ViewStates,Gone,keep, -?,0,android/view/View.HAPTIC_FEEDBACK_ENABLED,268435456,,,, +I,0,android/view/View.HAPTIC_FEEDBACK_ENABLED,268435456,,,, E,16,android/view/View.IMPORTANT_FOR_ACCESSIBILITY_AUTO,0,Android.Views.ImportantForAccessibility,Auto,remove, E,16,android/view/View.IMPORTANT_FOR_ACCESSIBILITY_NO,2,Android.Views.ImportantForAccessibility,No,remove, E,19,android/view/View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS,4,Android.Views.ImportantForAccessibility,NoHideDescendants,remove, @@ -12597,7 +13497,7 @@ E,30,android/view/View.IMPORTANT_FOR_CONTENT_CAPTURE_NO_EXCLUDE_DESCENDANTS,8,An E,30,android/view/View.IMPORTANT_FOR_CONTENT_CAPTURE_YES,1,Android.Views.ViewImportantForContentCapture,Yes,remove, E,30,android/view/View.IMPORTANT_FOR_CONTENT_CAPTURE_YES_EXCLUDE_DESCENDANTS,4,Android.Views.ViewImportantForContentCapture,YesExcludeDescendants,remove, E,10,android/view/View.INVISIBLE,4,Android.Views.ViewStates,Invisible,keep, -?,0,android/view/View.KEEP_SCREEN_ON,67108864,,,, +I,0,android/view/View.KEEP_SCREEN_ON,67108864,,,, E,15,android/view/View.LAYER_TYPE_HARDWARE,2,Android.Views.LayerType,Hardware,keep, E,15,android/view/View.LAYER_TYPE_NONE,0,Android.Views.LayerType,None,keep, E,15,android/view/View.LAYER_TYPE_SOFTWARE,1,Android.Views.LayerType,Software,keep, @@ -12605,11 +13505,11 @@ E,17,android/view/View.LAYOUT_DIRECTION_INHERIT,2,Android.Views.LayoutDirection, E,17,android/view/View.LAYOUT_DIRECTION_LOCALE,3,Android.Views.LayoutDirection,Locale,remove, E,17,android/view/View.LAYOUT_DIRECTION_LTR,0,Android.Views.LayoutDirection,Ltr,remove, E,17,android/view/View.LAYOUT_DIRECTION_RTL,1,Android.Views.LayoutDirection,Rtl,remove, -?,15,android/view/View.MEASURED_HEIGHT_STATE_SHIFT,16,,,, -?,15,android/view/View.MEASURED_SIZE_MASK,16777215,,,, -?,15,android/view/View.MEASURED_STATE_MASK,-16777216,,,, -?,15,android/view/View.MEASURED_STATE_TOO_SMALL,16777216,,,, -?,0,android/view/View.NO_ID,-1,,,, +I,15,android/view/View.MEASURED_HEIGHT_STATE_SHIFT,16,,,, +I,15,android/view/View.MEASURED_SIZE_MASK,16777215,,,, +I,15,android/view/View.MEASURED_STATE_MASK,-16777216,,,, +I,15,android/view/View.MEASURED_STATE_TOO_SMALL,16777216,,,, +I,0,android/view/View.NO_ID,-1,,,, E,26,android/view/View.NOT_FOCUSABLE,0,Android.Views.ViewFocusability,NotFocusable,remove, E,10,android/view/View.OVER_SCROLL_ALWAYS,0,Android.Views.OverScrollMode,Always,remove, E,10,android/view/View.OVER_SCROLL_IF_CONTENT_SCROLLS,1,Android.Views.OverScrollMode,IfContentScrolls,remove, @@ -12619,6 +13519,10 @@ E,16,android/view/View.SCREEN_STATE_ON,1,Android.Views.ScreenState,On,remove, E,21,android/view/View.SCROLL_AXIS_HORIZONTAL,1,Android.Views.ScrollAxis,Horizontal,remove,flags E,21,android/view/View.SCROLL_AXIS_NONE,0,Android.Views.ScrollAxis,None,remove,flags E,21,android/view/View.SCROLL_AXIS_VERTICAL,2,Android.Views.ScrollAxis,Vertical,remove,flags +E,31,android/view/View.SCROLL_CAPTURE_HINT_AUTO,0,Android.Views.ScrollCaptureHint,Auto,remove,flags +E,31,android/view/View.SCROLL_CAPTURE_HINT_EXCLUDE,1,Android.Views.ScrollCaptureHint,Exclude,remove,flags +E,31,android/view/View.SCROLL_CAPTURE_HINT_EXCLUDE_DESCENDANTS,4,Android.Views.ScrollCaptureHint,ExcludeDescendants,remove,flags +E,31,android/view/View.SCROLL_CAPTURE_HINT_INCLUDE,2,Android.Views.ScrollCaptureHint,Include,remove,flags E,23,android/view/View.SCROLL_INDICATOR_BOTTOM,2,Android.Views.ScrollIndicatorPosition,Bottom,keep, E,23,android/view/View.SCROLL_INDICATOR_END,32,Android.Views.ScrollIndicatorPosition,End,keep, E,23,android/view/View.SCROLL_INDICATOR_LEFT,4,Android.Views.ScrollIndicatorPosition,Left,keep, @@ -12632,7 +13536,7 @@ E,10,android/view/View.SCROLLBARS_INSIDE_INSET,16777216,Android.Views.ScrollbarS E,10,android/view/View.SCROLLBARS_INSIDE_OVERLAY,0,Android.Views.ScrollbarStyles,InsideOverlay,keep, E,10,android/view/View.SCROLLBARS_OUTSIDE_INSET,50331648,Android.Views.ScrollbarStyles,OutsideInset,keep, E,10,android/view/View.SCROLLBARS_OUTSIDE_OVERLAY,33554432,Android.Views.ScrollbarStyles,OutsideOverlay,keep, -?,0,android/view/View.SOUND_EFFECTS_ENABLED,134217728,,,, +I,0,android/view/View.SOUND_EFFECTS_ENABLED,134217728,,,, E,15,android/view/View.STATUS_BAR_HIDDEN,1,Android.Views.StatusBarVisibility,Hidden,keep, E,15,android/view/View.STATUS_BAR_VISIBLE,0,Android.Views.StatusBarVisibility,Visible,keep, E,16,android/view/View.SYSTEM_UI_FLAG_FULLSCREEN,4,Android.Views.SystemUiFlags,Fullscreen,remove,flags @@ -12664,10 +13568,10 @@ E,17,android/view/View.TEXT_DIRECTION_LOCALE,5,Android.Views.TextDirection,Local E,17,android/view/View.TEXT_DIRECTION_LTR,3,Android.Views.TextDirection,Ltr,remove, E,17,android/view/View.TEXT_DIRECTION_RTL,4,Android.Views.TextDirection,Rtl,remove, E,10,android/view/View.VISIBLE,0,Android.Views.ViewStates,Visible,keep, -?,0,android/view/ViewGroup$LayoutParams.FILL_PARENT,-1,,,, -?,0,android/view/ViewGroup$LayoutParams.MATCH_PARENT,-1,,,, -?,0,android/view/ViewGroup$LayoutParams.WRAP_CONTENT,-2,,,, -?,0,android/view/ViewGroup.CLIP_TO_PADDING_MASK,34,,,, +E,10,android/view/View$MeasureSpec.AT_MOST,-2147483648,Android.Views.MeasureSpecMode,AtMost,keep, +E,10,android/view/View$MeasureSpec.EXACTLY,1073741824,Android.Views.MeasureSpecMode,Exactly,keep, +E,10,android/view/View$MeasureSpec.UNSPECIFIED,0,Android.Views.MeasureSpecMode,Unspecified,keep, +I,0,android/view/ViewGroup.CLIP_TO_PADDING_MASK,34,,,, E,10,android/view/ViewGroup.FOCUS_AFTER_DESCENDANTS,262144,Android.Views.DescendantFocusability,AfterDescendants,keep, E,10,android/view/ViewGroup.FOCUS_BEFORE_DESCENDANTS,131072,Android.Views.DescendantFocusability,BeforeDescendants,keep, E,10,android/view/ViewGroup.FOCUS_BLOCK_DESCENDANTS,393216,Android.Views.DescendantFocusability,BlockDescendants,keep, @@ -12677,6 +13581,9 @@ E,10,android/view/ViewGroup.PERSISTENT_ALL_CACHES,3,Android.Views.PersistentDraw E,10,android/view/ViewGroup.PERSISTENT_ANIMATION_CACHE,1,Android.Views.PersistentDrawingCaches,AnimationCache,keep, E,10,android/view/ViewGroup.PERSISTENT_NO_CACHE,0,Android.Views.PersistentDrawingCaches,NoCache,keep, E,10,android/view/ViewGroup.PERSISTENT_SCROLLING_CACHE,2,Android.Views.PersistentDrawingCaches,ScrollingCache,keep, +I,0,android/view/ViewGroup$LayoutParams.FILL_PARENT,-1,,,, +I,0,android/view/ViewGroup$LayoutParams.MATCH_PARENT,-1,,,, +I,0,android/view/ViewGroup$LayoutParams.WRAP_CONTENT,-2,,,, E,24,android/view/Window.DECOR_CAPTION_SHADE_AUTO,0,Android.Views.DecorCaptionShade,Auto,remove, E,24,android/view/Window.DECOR_CAPTION_SHADE_DARK,2,Android.Views.DecorCaptionShade,Dark,remove, E,24,android/view/Window.DECOR_CAPTION_SHADE_LIGHT,1,Android.Views.DecorCaptionShade,Light,remove, @@ -12695,7 +13602,7 @@ E,10,android/view/Window.FEATURE_OPTIONS_PANEL,0,Android.Views.WindowFeatures,Op E,10,android/view/Window.FEATURE_PROGRESS,2,Android.Views.WindowFeatures,Progress,keep, E,10,android/view/Window.FEATURE_RIGHT_ICON,4,Android.Views.WindowFeatures,RightIcon,keep, E,20,android/view/Window.FEATURE_SWIPE_TO_DISMISS,11,Android.Views.WindowFeatures,SwipeToDismiss,keep, -?,0,android/view/Window.ID_ANDROID_CONTENT,16908290,,,, +I,0,android/view/Window.ID_ANDROID_CONTENT,16908290,,,, E,10,android/view/Window.PROGRESS_END,10000,Android.Views.WindowProgress,End,remove, E,10,android/view/Window.PROGRESS_INDETERMINATE_OFF,-4,Android.Views.WindowProgress,IndeterminateOff,remove, E,10,android/view/Window.PROGRESS_INDETERMINATE_ON,-3,Android.Views.WindowProgress,IndeterminateOn,remove, @@ -12713,9 +13620,9 @@ E,30,android/view/WindowInsetsAnimation$Callback.DISPATCH_MODE_STOP,0,Android.Vi E,10,android/view/WindowManager$LayoutParams.ALPHA_CHANGED,128,Android.Views.WindowManagerEventType,AlphaChanged,remove, E,10,android/view/WindowManager$LayoutParams.ANIMATION_CHANGED,16,Android.Views.WindowManagerEventType,AnimationChanged,remove, E,10,android/view/WindowManager$LayoutParams.DIM_AMOUNT_CHANGED,32,Android.Views.WindowManagerEventType,DimAmountChanged,remove, -?,0,android/view/WindowManager$LayoutParams.FIRST_APPLICATION_WINDOW,1,,,, -?,0,android/view/WindowManager$LayoutParams.FIRST_SUB_WINDOW,1000,,,, -?,0,android/view/WindowManager$LayoutParams.FIRST_SYSTEM_WINDOW,2000,,,, +I,0,android/view/WindowManager$LayoutParams.FIRST_APPLICATION_WINDOW,1,,,, +I,0,android/view/WindowManager$LayoutParams.FIRST_SUB_WINDOW,1000,,,, +I,0,android/view/WindowManager$LayoutParams.FIRST_SYSTEM_WINDOW,2000,,,, E,10,android/view/WindowManager$LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON,1,Android.Views.WindowManagerFlags,AllowLockWhileScreenOn,keep,flags E,10,android/view/WindowManager$LayoutParams.FLAG_ALT_FOCUSABLE_IM,131072,Android.Views.WindowManagerFlags,AltFocusableIm,keep,flags E,10,android/view/WindowManager$LayoutParams.FLAG_BLUR_BEHIND,4,Android.Views.WindowManagerFlags,BlurBehind,keep,flags @@ -12749,9 +13656,9 @@ E,10,android/view/WindowManager$LayoutParams.FLAG_TURN_SCREEN_ON,2097152,Android E,10,android/view/WindowManager$LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH,262144,Android.Views.WindowManagerFlags,WatchOutsideTouch,keep,flags E,10,android/view/WindowManager$LayoutParams.FLAGS_CHANGED,4,Android.Views.WindowManagerEventType,FlagsChanged,remove, E,10,android/view/WindowManager$LayoutParams.FORMAT_CHANGED,8,Android.Views.WindowManagerEventType,FormatChanged,remove, -?,0,android/view/WindowManager$LayoutParams.LAST_APPLICATION_WINDOW,99,,,, -?,0,android/view/WindowManager$LayoutParams.LAST_SUB_WINDOW,1999,,,, -?,0,android/view/WindowManager$LayoutParams.LAST_SYSTEM_WINDOW,2999,,,, +I,0,android/view/WindowManager$LayoutParams.LAST_APPLICATION_WINDOW,99,,,, +I,0,android/view/WindowManager$LayoutParams.LAST_SUB_WINDOW,1999,,,, +I,0,android/view/WindowManager$LayoutParams.LAST_SYSTEM_WINDOW,2999,,,, E,10,android/view/WindowManager$LayoutParams.LAYOUT_CHANGED,1,Android.Views.WindowManagerEventType,LayoutChanged,remove, E,30,android/view/WindowManager$LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS,3,Android.Views.LayoutInDisplayCutoutMode,Always,remove, E,28,android/view/WindowManager$LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT,0,Android.Views.LayoutInDisplayCutoutMode,Default,remove, @@ -12811,7 +13718,7 @@ E,10,android/view/WindowManager$LayoutParams.TYPE_SYSTEM_ERROR,2010,Android.View E,10,android/view/WindowManager$LayoutParams.TYPE_SYSTEM_OVERLAY,2006,Android.Views.WindowManagerTypes,SystemOverlay,keep, E,10,android/view/WindowManager$LayoutParams.TYPE_TOAST,2005,Android.Views.WindowManagerTypes,Toast,keep, E,10,android/view/WindowManager$LayoutParams.TYPE_WALLPAPER,2013,Android.Views.WindowManagerTypes,Wallpaper,keep, -?,0,android/webkit/DateSorter.DAY_COUNT,5,,,, +I,0,android/webkit/DateSorter.DAY_COUNT,5,,,, E,28,android/webkit/TracingConfig.CATEGORIES_ALL,1,Android.Webkit.Categories,All,remove, E,28,android/webkit/TracingConfig.CATEGORIES_ANDROID_WEBVIEW,2,Android.Webkit.Categories,AndroidWebview,remove, E,28,android/webkit/TracingConfig.CATEGORIES_FRAME_VIEWER,64,Android.Webkit.Categories,FrameViewer,remove, @@ -12840,6 +13747,9 @@ E,24,android/webkit/WebSettings.MENU_ITEM_WEB_SEARCH,2,Android.Webkit.MenuItems, E,21,android/webkit/WebSettings.MIXED_CONTENT_ALWAYS_ALLOW,0,Android.Webkit.MixedContentHandling,AlwaysAllow,remove, E,21,android/webkit/WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE,2,Android.Webkit.MixedContentHandling,CompatibilityMode,remove, E,21,android/webkit/WebSettings.MIXED_CONTENT_NEVER_ALLOW,1,Android.Webkit.MixedContentHandling,NeverAllow,remove, +E,26,android/webkit/WebView.RENDERER_PRIORITY_BOUND,1,Android.Webkit.RendererPriority,Bound,keep, +E,26,android/webkit/WebView.RENDERER_PRIORITY_IMPORTANT,2,Android.Webkit.RendererPriority,Important,keep, +E,26,android/webkit/WebView.RENDERER_PRIORITY_WAIVED,0,Android.Webkit.RendererPriority,Waived,keep, E,10,android/webkit/WebView$HitTestResult.ANCHOR_TYPE,1,Android.Webkit.HitTestResult,AnchorType,keep, E,10,android/webkit/WebView$HitTestResult.EDIT_TEXT_TYPE,9,Android.Webkit.HitTestResult,EditTextType,keep, E,10,android/webkit/WebView$HitTestResult.EMAIL_TYPE,4,Android.Webkit.HitTestResult,EmailType,keep, @@ -12850,9 +13760,6 @@ E,10,android/webkit/WebView$HitTestResult.PHONE_TYPE,2,Android.Webkit.HitTestRes E,10,android/webkit/WebView$HitTestResult.SRC_ANCHOR_TYPE,7,Android.Webkit.HitTestResult,SrcAnchorType,keep, E,10,android/webkit/WebView$HitTestResult.SRC_IMAGE_ANCHOR_TYPE,8,Android.Webkit.HitTestResult,SrcImageAnchorType,keep, E,10,android/webkit/WebView$HitTestResult.UNKNOWN_TYPE,0,Android.Webkit.HitTestResult,UnknownType,keep, -E,26,android/webkit/WebView.RENDERER_PRIORITY_BOUND,1,Android.Webkit.RendererPriority,Bound,keep, -E,26,android/webkit/WebView.RENDERER_PRIORITY_IMPORTANT,2,Android.Webkit.RendererPriority,Important,keep, -E,26,android/webkit/WebView.RENDERER_PRIORITY_WAIVED,0,Android.Webkit.RendererPriority,Waived,keep, E,10,android/webkit/WebViewClient.ERROR_AUTHENTICATION,-4,Android.Webkit.ClientError,Authentication,keep, E,10,android/webkit/WebViewClient.ERROR_BAD_URL,-12,Android.Webkit.ClientError,BadUrl,keep, E,10,android/webkit/WebViewClient.ERROR_CONNECT,-6,Android.Webkit.ClientError,Connect,keep, @@ -12882,7 +13789,7 @@ E,1,android/widget/AbsListView.CHOICE_MODE_SINGLE,1,Android.Widget.AbsListViewCh E,10,android/widget/AbsListView.TRANSCRIPT_MODE_ALWAYS_SCROLL,2,Android.Widget.TranscriptMode,AlwaysScroll,keep, E,10,android/widget/AbsListView.TRANSCRIPT_MODE_DISABLED,0,Android.Widget.TranscriptMode,Disabled,keep, E,10,android/widget/AbsListView.TRANSCRIPT_MODE_NORMAL,1,Android.Widget.TranscriptMode,Normal,keep, -?,0,android/widget/AdapterView.INVALID_POSITION,-1,,,, +I,0,android/widget/AdapterView.INVALID_POSITION,-1,,,, E,10,android/widget/AdapterView.ITEM_VIEW_TYPE_HEADER_OR_FOOTER,-2,Android.Widget.ItemViewType,HeaderOrFooter,keep, E,10,android/widget/AdapterView.ITEM_VIEW_TYPE_IGNORE,-1,Android.Widget.ItemViewType,Ignore,keep, A,0,,0,Android.Widget.CursorAdapterFlags,None,,flags @@ -12893,15 +13800,15 @@ E,10,android/widget/DialerFilter.DIGITS_AND_LETTERS_NO_DIGITS,2,Android.Widget.D E,10,android/widget/DialerFilter.DIGITS_AND_LETTERS_NO_LETTERS,3,Android.Widget.DialerMode,DigitsAndLettersNoLetters,keep, E,10,android/widget/DialerFilter.DIGITS_ONLY,4,Android.Widget.DialerMode,DigitsOnly,keep, E,10,android/widget/DialerFilter.LETTERS_ONLY,5,Android.Widget.DialerMode,LettersOnly,keep, -?,0,android/widget/ExpandableListView.CHILD_INDICATOR_INHERIT,-1,,,, +I,0,android/widget/ExpandableListView.CHILD_INDICATOR_INHERIT,-1,,,, E,10,android/widget/ExpandableListView.PACKED_POSITION_TYPE_CHILD,1,Android.Widget.PackedPositionType,Child,keep, E,10,android/widget/ExpandableListView.PACKED_POSITION_TYPE_GROUP,0,Android.Widget.PackedPositionType,Group,keep, E,10,android/widget/ExpandableListView.PACKED_POSITION_TYPE_NULL,2,Android.Widget.PackedPositionType,Null,keep, -?,24,android/widget/FrameLayout$LayoutParams.UNSPECIFIED_GRAVITY,-1,,,, +I,24,android/widget/FrameLayout$LayoutParams.UNSPECIFIED_GRAVITY,-1,,,, E,15,android/widget/GridLayout.ALIGN_BOUNDS,0,Android.Widget.GridAlign,Bounds,remove, E,15,android/widget/GridLayout.ALIGN_MARGINS,1,Android.Widget.GridAlign,Margins,remove, E,15,android/widget/GridLayout.HORIZONTAL,0,Android.Widget.GridOrientation,Horizontal,remove, -?,15,android/widget/GridLayout.UNDEFINED,-2147483648,,,, +I,15,android/widget/GridLayout.UNDEFINED,-2147483648,,,, E,15,android/widget/GridLayout.VERTICAL,1,Android.Widget.GridOrientation,Vertical,remove, E,10,android/widget/GridView.AUTO_FIT,-1,Android.Widget.StretchMode,AutoFit,keep, E,10,android/widget/GridView.NO_STRETCH,0,Android.Widget.StretchMode,NoStretch,keep, @@ -12917,15 +13824,15 @@ E,10,android/widget/LinearLayout.VERTICAL,1,Android.Widget.Orientation,Vertical, E,15,android/widget/ListPopupWindow.INPUT_METHOD_FROM_FOCUSABLE,0,Android.Widget.ListPopupWindowInputMethodMode,FromFocusable,keep, E,15,android/widget/ListPopupWindow.INPUT_METHOD_NEEDED,1,Android.Widget.ListPopupWindowInputMethodMode,Needed,keep, E,15,android/widget/ListPopupWindow.INPUT_METHOD_NOT_NEEDED,2,Android.Widget.ListPopupWindowInputMethodMode,NotNeeded,keep, -?,15,android/widget/ListPopupWindow.MATCH_PARENT,-1,,,, +I,15,android/widget/ListPopupWindow.MATCH_PARENT,-1,,,, E,15,android/widget/ListPopupWindow.POSITION_PROMPT_ABOVE,0,Android.Widget.PositionPrompt,Above,remove, E,15,android/widget/ListPopupWindow.POSITION_PROMPT_BELOW,1,Android.Widget.PositionPrompt,Below,remove, -?,15,android/widget/ListPopupWindow.WRAP_CONTENT,-2,,,, +I,15,android/widget/ListPopupWindow.WRAP_CONTENT,-2,,,, E,10,android/widget/ListView.CHOICE_MODE_MULTIPLE,2,Android.Widget.ChoiceMode,Multiple,remove, E,10,android/widget/ListView.CHOICE_MODE_NONE,0,Android.Widget.ChoiceMode,None,remove, E,10,android/widget/ListView.CHOICE_MODE_SINGLE,1,Android.Widget.ChoiceMode,Single,remove, -?,29,android/widget/Magnifier.SOURCE_BOUND_MAX_IN_SURFACE,0,,,, -?,29,android/widget/Magnifier.SOURCE_BOUND_MAX_VISIBLE,1,,,, +I,29,android/widget/Magnifier.SOURCE_BOUND_MAX_IN_SURFACE,0,,,, +I,29,android/widget/Magnifier.SOURCE_BOUND_MAX_VISIBLE,1,,,, E,10,android/widget/PopupWindow.INPUT_METHOD_FROM_FOCUSABLE,0,Android.Widget.InputMethod,FromFocusable,keep, E,10,android/widget/PopupWindow.INPUT_METHOD_NEEDED,1,Android.Widget.InputMethod,Needed,keep, E,10,android/widget/PopupWindow.INPUT_METHOD_NOT_NEEDED,2,Android.Widget.InputMethod,NotNeeded,keep, @@ -12952,6 +13859,12 @@ E,10,android/widget/RelativeLayout.LEFT_OF,0,Android.Widget.LayoutRules,LeftOf,k E,10,android/widget/RelativeLayout.RIGHT_OF,1,Android.Widget.LayoutRules,RightOf,keep, E,17,android/widget/RelativeLayout.START_OF,16,Android.Widget.LayoutRules,StartOf,keep, E,10,android/widget/RelativeLayout.TRUE,-1,Android.Widget.LayoutRules,True,keep, +E,31,android/widget/RemoteViews.MARGIN_BOTTOM,3,Android.Widget.RemoteViewsMargin,Bottom,remove, +E,31,android/widget/RemoteViews.MARGIN_END,5,Android.Widget.RemoteViewsMargin,End,remove, +E,31,android/widget/RemoteViews.MARGIN_LEFT,0,Android.Widget.RemoteViewsMargin,Left,remove, +E,31,android/widget/RemoteViews.MARGIN_RIGHT,2,Android.Widget.RemoteViewsMargin,Right,remove, +E,31,android/widget/RemoteViews.MARGIN_START,4,Android.Widget.RemoteViewsMargin,Start,remove, +E,31,android/widget/RemoteViews.MARGIN_TOP,1,Android.Widget.RemoteViewsMargin,Top,remove, E,10,android/widget/SlidingDrawer.ORIENTATION_HORIZONTAL,0,Android.Widget.SlidingDrawerOrientation,Horizontal,remove, E,10,android/widget/SlidingDrawer.ORIENTATION_VERTICAL,1,Android.Widget.SlidingDrawerOrientation,Vertical,remove, E,15,android/widget/Spinner.MODE_DIALOG,0,Android.Widget.SpinnerMode,Dialog,keep, @@ -12966,7 +13879,7 @@ E,18,I:android/bluetooth/BluetoothProfile.GATT,7,Android.Bluetooth.ProfileType,G E,18,I:android/bluetooth/BluetoothProfile.GATT_SERVER,8,Android.Bluetooth.ProfileType,GattServer,keep, E,15,I:android/bluetooth/BluetoothProfile.HEADSET,1,Android.Bluetooth.ProfileType,Headset,keep, E,15,I:android/bluetooth/BluetoothProfile.HEALTH,3,Android.Bluetooth.ProfileType,Health,keep, -?,29,I:android/bluetooth/BluetoothProfile.HEARING_AID,21,,,, +I,29,I:android/bluetooth/BluetoothProfile.HEARING_AID,21,,,, E,28,I:android/bluetooth/BluetoothProfile.HID_DEVICE,19,Android.Bluetooth.ProfileType,HidDevice,keep, E,23,I:android/bluetooth/BluetoothProfile.SAP,10,Android.Bluetooth.ProfileType,Sap,keep, E,15,I:android/bluetooth/BluetoothProfile.STATE_CONNECTED,2,Android.Bluetooth.ProfileState,Connected,keep, @@ -12994,449 +13907,449 @@ E,15,I:android/database/Cursor.FIELD_TYPE_STRING,3,Android.Database.FieldType,St E,30,I:android/hardware/biometrics/BiometricManager$Authenticators.BIOMETRIC_STRONG,15,Android.Hardware.Biometrics.BiometricManagerAuthenticators,BiometricStrong,remove, E,30,I:android/hardware/biometrics/BiometricManager$Authenticators.BIOMETRIC_WEAK,255,Android.Hardware.Biometrics.BiometricManagerAuthenticators,BiometricWeak,remove, E,30,I:android/hardware/biometrics/BiometricManager$Authenticators.DEVICE_CREDENTIAL,32768,Android.Hardware.Biometrics.BiometricManagerAuthenticators,DeviceCredential,remove, -?,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.CLOSE,2,,,, -?,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.NONE,0,,,, -?,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.OPEN,1,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.CANONICAL,1,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.CIRCLE,3,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.COMPAT,2,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.FINAL,4,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.FONT,5,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.FRACTION,6,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.INITIAL,7,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.ISOLATED,8,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.MEDIAL,9,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.NARROW,10,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.NOBREAK,11,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.NONE,0,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.SMALL,12,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.SQUARE,13,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.SUB,14,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.SUPER,15,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.VERTICAL,16,,,, -?,24,I:android/icu/lang/UCharacter$DecompositionType.WIDE,17,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.AMBIGUOUS,1,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.FULLWIDTH,3,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.HALFWIDTH,2,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.NARROW,4,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.NEUTRAL,0,,,, -?,24,I:android/icu/lang/UCharacter$EastAsianWidth.WIDE,5,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.CONTROL,1,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.CR,2,,,, -?,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_BASE,13,,,, -?,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_BASE_GAZ,14,,,, -?,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_MODIFIER,15,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.EXTEND,3,,,, -?,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.GLUE_AFTER_ZWJ,16,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.L,4,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LF,5,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LV,6,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LVT,7,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.OTHER,0,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.PREPEND,11,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.REGIONAL_INDICATOR,12,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.SPACING_MARK,10,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.T,8,,,, -?,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.V,9,,,, -?,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.ZWJ,17,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.LEADING_JAMO,1,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.LV_SYLLABLE,4,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.LVT_SYLLABLE,5,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.NOT_APPLICABLE,0,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.TRAILING_JAMO,3,,,, -?,24,I:android/icu/lang/UCharacter$HangulSyllableType.VOWEL_JAMO,2,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM,1,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM_AND_LEFT,2,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM_AND_RIGHT,3,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.LEFT,4,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.LEFT_AND_RIGHT,5,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.NA,0,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.OVERSTRUCK,6,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.RIGHT,7,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP,8,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_BOTTOM,9,,,, +I,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.CLOSE,2,,,, +I,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.NONE,0,,,, +I,24,I:android/icu/lang/UCharacter$BidiPairedBracketType.OPEN,1,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.CANONICAL,1,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.CIRCLE,3,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.COMPAT,2,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.FINAL,4,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.FONT,5,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.FRACTION,6,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.INITIAL,7,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.ISOLATED,8,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.MEDIAL,9,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.NARROW,10,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.NOBREAK,11,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.NONE,0,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.SMALL,12,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.SQUARE,13,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.SUB,14,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.SUPER,15,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.VERTICAL,16,,,, +I,24,I:android/icu/lang/UCharacter$DecompositionType.WIDE,17,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.AMBIGUOUS,1,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.FULLWIDTH,3,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.HALFWIDTH,2,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.NARROW,4,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.NEUTRAL,0,,,, +I,24,I:android/icu/lang/UCharacter$EastAsianWidth.WIDE,5,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.CONTROL,1,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.CR,2,,,, +I,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_BASE,13,,,, +I,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_BASE_GAZ,14,,,, +I,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.E_MODIFIER,15,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.EXTEND,3,,,, +I,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.GLUE_AFTER_ZWJ,16,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.L,4,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LF,5,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LV,6,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.LVT,7,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.OTHER,0,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.PREPEND,11,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.REGIONAL_INDICATOR,12,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.SPACING_MARK,10,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.T,8,,,, +I,24,I:android/icu/lang/UCharacter$GraphemeClusterBreak.V,9,,,, +I,26,I:android/icu/lang/UCharacter$GraphemeClusterBreak.ZWJ,17,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.LEADING_JAMO,1,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.LV_SYLLABLE,4,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.LVT_SYLLABLE,5,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.NOT_APPLICABLE,0,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.TRAILING_JAMO,3,,,, +I,24,I:android/icu/lang/UCharacter$HangulSyllableType.VOWEL_JAMO,2,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM,1,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM_AND_LEFT,2,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.BOTTOM_AND_RIGHT,3,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.LEFT,4,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.LEFT_AND_RIGHT,5,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.NA,0,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.OVERSTRUCK,6,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.RIGHT,7,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP,8,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_BOTTOM,9,,,, I,30,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_BOTTOM_AND_LEFT,15,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_BOTTOM_AND_RIGHT,10,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_LEFT,11,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_LEFT_AND_RIGHT,12,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_RIGHT,13,,,, -?,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.VISUAL_ORDER_LEFT,14,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.AVAGRAHA,1,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.BINDU,2,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.BRAHMI_JOINING_NUMBER,3,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CANTILLATION_MARK,4,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT,5,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_DEAD,6,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_FINAL,7,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_HEAD_LETTER,8,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_INITIAL_POSTFIXED,9,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_KILLER,10,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_MEDIAL,11,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PLACEHOLDER,12,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PRECEDING_REPHA,13,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PREFIXED,14,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_SUBJOINED,15,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_SUCCEEDING_REPHA,16,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_WITH_STACKER,17,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.GEMINATION_MARK,18,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.INVISIBLE_STACKER,19,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.JOINER,20,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.MODIFYING_LETTER,21,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NON_JOINER,22,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUKTA,23,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUMBER,24,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUMBER_JOINER,25,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.OTHER,0,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.PURE_KILLER,26,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.REGISTER_SHIFTER,27,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.SYLLABLE_MODIFIER,28,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.TONE_LETTER,29,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.TONE_MARK,30,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VIRAMA,31,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VISARGA,32,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL,33,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL_DEPENDENT,34,,,, -?,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL_INDEPENDENT,35,,,, -?,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_FEH,86,,,, -?,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_NOON,87,,,, -?,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_QAF,88,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.AIN,1,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.ALAPH,2,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.ALEF,3,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.BEH,4,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.BETH,5,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.BURUSHASKI_YEH_BARREE,54,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.DAL,6,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.DALATH_RISH,7,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.E,8,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.FARSI_YEH,55,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.FE,51,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.FEH,9,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.FINAL_SEMKATH,10,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.GAF,11,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.GAMAL,12,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HAH,13,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HAMZA_ON_HEH_GOAL,14,,,, -?,29,I:android/icu/lang/UCharacter$JoiningGroup.HANIFI_ROHINGYA_KINNA_YA,100,,,, -?,29,I:android/icu/lang/UCharacter$JoiningGroup.HANIFI_ROHINGYA_PA,101,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HE,15,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HEH,16,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HEH_GOAL,17,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.HETH,18,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.KAF,19,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.KAPH,20,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.KHAPH,52,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.KNOTTED_HEH,21,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.LAM,22,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.LAMADH,23,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_BHA,89,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_JA,90,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_LLA,91,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_LLLA,92,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NGA,93,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NNA,94,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NNNA,95,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NYA,96,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_RA,97,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_SSA,98,,,, -?,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_TTA,99,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ALEPH,58,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_AYIN,59,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_BETH,60,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_DALETH,61,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_DHAMEDH,62,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_FIVE,63,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_GIMEL,64,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_HETH,65,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_HUNDRED,66,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_KAPH,67,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_LAMEDH,68,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_MEM,69,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_NUN,70,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ONE,71,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_PE,72,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_QOPH,73,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_RESH,74,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_SADHE,75,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_SAMEKH,76,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TAW,77,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TEN,78,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TETH,79,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_THAMEDH,80,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TWENTY,81,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_WAW,82,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_YODH,83,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ZAYIN,84,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MEEM,24,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.MIM,25,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.NO_JOINING_GROUP,0,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.NOON,26,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.NUN,27,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.NYA,56,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.PE,28,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.QAF,29,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.QAPH,30,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.REH,31,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.REVERSED_PE,32,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.ROHINGYA_YEH,57,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SAD,33,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SADHE,34,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SEEN,35,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SEMKATH,36,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SHIN,37,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.STRAIGHT_WAW,85,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SWASH_KAF,38,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.SYRIAC_WAW,39,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.TAH,40,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.TAW,41,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.TEH_MARBUTA,42,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.TEH_MARBUTA_GOAL,14,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.TETH,43,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.WAW,44,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH,45,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH_BARREE,46,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH_WITH_TAIL,47,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.YUDH,48,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.YUDH_HE,49,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.ZAIN,50,,,, -?,24,I:android/icu/lang/UCharacter$JoiningGroup.ZHAIN,53,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.DUAL_JOINING,2,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.JOIN_CAUSING,1,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.LEFT_JOINING,3,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.NON_JOINING,0,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.RIGHT_JOINING,4,,,, -?,24,I:android/icu/lang/UCharacter$JoiningType.TRANSPARENT,5,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.ALPHABETIC,2,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.AMBIGUOUS,1,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_AFTER,4,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_BEFORE,5,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_BOTH,3,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_SYMBOLS,27,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.CARRIAGE_RETURN,10,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.CLOSE_PARENTHESIS,36,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.CLOSE_PUNCTUATION,8,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.COMBINING_MARK,9,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.COMPLEX_CONTEXT,24,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.CONDITIONAL_JAPANESE_STARTER,37,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.CONTINGENT_BREAK,7,,,, -?,26,I:android/icu/lang/UCharacter$LineBreak.E_BASE,40,,,, -?,26,I:android/icu/lang/UCharacter$LineBreak.E_MODIFIER,41,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.EXCLAMATION,11,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.GLUE,12,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.H2,31,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.H3,32,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.HEBREW_LETTER,38,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.HYPHEN,13,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.IDEOGRAPHIC,14,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.INFIX_NUMERIC,16,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.INSEPARABLE,15,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.INSEPERABLE,15,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.JL,33,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.JT,34,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.JV,35,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.LINE_FEED,17,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.MANDATORY_BREAK,6,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.NEXT_LINE,29,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.NONSTARTER,18,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.NUMERIC,19,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.OPEN_PUNCTUATION,20,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.POSTFIX_NUMERIC,21,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.PREFIX_NUMERIC,22,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.QUOTATION,23,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.REGIONAL_INDICATOR,39,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.SPACE,26,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.SURROGATE,25,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.UNKNOWN,0,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.WORD_JOINER,30,,,, -?,26,I:android/icu/lang/UCharacter$LineBreak.ZWJ,42,,,, -?,24,I:android/icu/lang/UCharacter$LineBreak.ZWSPACE,28,,,, -?,24,I:android/icu/lang/UCharacter$NumericType.DECIMAL,1,,,, -?,24,I:android/icu/lang/UCharacter$NumericType.DIGIT,2,,,, -?,24,I:android/icu/lang/UCharacter$NumericType.NONE,0,,,, -?,24,I:android/icu/lang/UCharacter$NumericType.NUMERIC,3,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.ATERM,1,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.CLOSE,2,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.CR,11,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.EXTEND,12,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.FORMAT,3,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.LF,13,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.LOWER,4,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.NUMERIC,5,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.OLETTER,6,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.OTHER,0,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.SCONTINUE,14,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.SEP,7,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.SP,8,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.STERM,9,,,, -?,24,I:android/icu/lang/UCharacter$SentenceBreak.UPPER,10,,,, -?,29,I:android/icu/lang/UCharacter$VerticalOrientation.ROTATED,0,,,, -?,29,I:android/icu/lang/UCharacter$VerticalOrientation.TRANSFORMED_ROTATED,1,,,, -?,29,I:android/icu/lang/UCharacter$VerticalOrientation.TRANSFORMED_UPRIGHT,2,,,, -?,29,I:android/icu/lang/UCharacter$VerticalOrientation.UPRIGHT,3,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.ALETTER,1,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.CR,8,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.DOUBLE_QUOTE,16,,,, -?,26,I:android/icu/lang/UCharacter$WordBreak.E_BASE,17,,,, -?,26,I:android/icu/lang/UCharacter$WordBreak.E_BASE_GAZ,18,,,, -?,26,I:android/icu/lang/UCharacter$WordBreak.E_MODIFIER,19,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.EXTEND,9,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.EXTENDNUMLET,7,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.FORMAT,2,,,, -?,26,I:android/icu/lang/UCharacter$WordBreak.GLUE_AFTER_ZWJ,20,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.HEBREW_LETTER,14,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.KATAKANA,3,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.LF,10,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.MIDLETTER,4,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.MIDNUM,5,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.MIDNUMLET,11,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.NEWLINE,12,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.NUMERIC,6,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.OTHER,0,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.REGIONAL_INDICATOR,13,,,, -?,24,I:android/icu/lang/UCharacter$WordBreak.SINGLE_QUOTE,15,,,, -?,29,I:android/icu/lang/UCharacter$WordBreak.WSEGSPACE,22,,,, -?,26,I:android/icu/lang/UCharacter$WordBreak.ZWJ,21,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.ARABIC_NUMBER,5,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.BLOCK_SEPARATOR,7,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.BOUNDARY_NEUTRAL,18,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.COMMON_NUMBER_SEPARATOR,6,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.DIR_NON_SPACING_MARK,17,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER,2,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER_SEPARATOR,3,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER_TERMINATOR,4,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT,0,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT_EMBEDDING,11,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT_OVERRIDE,12,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.OTHER_NEUTRAL,10,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.POP_DIRECTIONAL_FORMAT,16,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT,1,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_ARABIC,13,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_EMBEDDING,14,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_OVERRIDE,15,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.SEGMENT_SEPARATOR,8,,,, -?,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.WHITE_SPACE_NEUTRAL,9,,,, -?,24,I:android/icu/lang/UProperty$NameChoice.LONG,1,,,, -?,24,I:android/icu/lang/UProperty$NameChoice.SHORT,0,,,, -?,24,I:android/icu/lang/UProperty.AGE,16384,,,, -?,24,I:android/icu/lang/UProperty.ALPHABETIC,0,,,, -?,24,I:android/icu/lang/UProperty.ASCII_HEX_DIGIT,1,,,, -?,24,I:android/icu/lang/UProperty.BIDI_CLASS,4096,,,, -?,24,I:android/icu/lang/UProperty.BIDI_CONTROL,2,,,, -?,24,I:android/icu/lang/UProperty.BIDI_MIRRORED,3,,,, -?,24,I:android/icu/lang/UProperty.BIDI_MIRRORING_GLYPH,16385,,,, -?,24,I:android/icu/lang/UProperty.BIDI_PAIRED_BRACKET,16397,,,, -?,24,I:android/icu/lang/UProperty.BIDI_PAIRED_BRACKET_TYPE,4117,,,, -?,24,I:android/icu/lang/UProperty.BINARY_START,0,,,, -?,24,I:android/icu/lang/UProperty.BLOCK,4097,,,, -?,24,I:android/icu/lang/UProperty.CANONICAL_COMBINING_CLASS,4098,,,, -?,24,I:android/icu/lang/UProperty.CASE_FOLDING,16386,,,, -?,24,I:android/icu/lang/UProperty.CASE_IGNORABLE,50,,,, -?,24,I:android/icu/lang/UProperty.CASE_SENSITIVE,34,,,, -?,24,I:android/icu/lang/UProperty.CASED,49,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_CASEFOLDED,54,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_CASEMAPPED,55,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_LOWERCASED,51,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_NFKC_CASEFOLDED,56,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_TITLECASED,53,,,, -?,24,I:android/icu/lang/UProperty.CHANGES_WHEN_UPPERCASED,52,,,, -?,24,I:android/icu/lang/UProperty.DASH,4,,,, -?,24,I:android/icu/lang/UProperty.DECOMPOSITION_TYPE,4099,,,, -?,24,I:android/icu/lang/UProperty.DEFAULT_IGNORABLE_CODE_POINT,5,,,, -?,24,I:android/icu/lang/UProperty.DEPRECATED,6,,,, -?,24,I:android/icu/lang/UProperty.DIACRITIC,7,,,, -?,24,I:android/icu/lang/UProperty.DOUBLE_START,12288,,,, -?,24,I:android/icu/lang/UProperty.EAST_ASIAN_WIDTH,4100,,,, -?,28,I:android/icu/lang/UProperty.EMOJI,57,,,, -?,28,I:android/icu/lang/UProperty.EMOJI_COMPONENT,61,,,, -?,28,I:android/icu/lang/UProperty.EMOJI_MODIFIER,59,,,, -?,28,I:android/icu/lang/UProperty.EMOJI_MODIFIER_BASE,60,,,, -?,28,I:android/icu/lang/UProperty.EMOJI_PRESENTATION,58,,,, -?,29,I:android/icu/lang/UProperty.EXTENDED_PICTOGRAPHIC,64,,,, -?,24,I:android/icu/lang/UProperty.EXTENDER,8,,,, -?,24,I:android/icu/lang/UProperty.FULL_COMPOSITION_EXCLUSION,9,,,, -?,24,I:android/icu/lang/UProperty.GENERAL_CATEGORY,4101,,,, -?,24,I:android/icu/lang/UProperty.GENERAL_CATEGORY_MASK,8192,,,, -?,24,I:android/icu/lang/UProperty.GRAPHEME_BASE,10,,,, -?,24,I:android/icu/lang/UProperty.GRAPHEME_CLUSTER_BREAK,4114,,,, -?,24,I:android/icu/lang/UProperty.GRAPHEME_EXTEND,11,,,, -?,24,I:android/icu/lang/UProperty.GRAPHEME_LINK,12,,,, -?,24,I:android/icu/lang/UProperty.HANGUL_SYLLABLE_TYPE,4107,,,, -?,24,I:android/icu/lang/UProperty.HEX_DIGIT,13,,,, -?,24,I:android/icu/lang/UProperty.HYPHEN,14,,,, -?,24,I:android/icu/lang/UProperty.ID_CONTINUE,15,,,, -?,24,I:android/icu/lang/UProperty.ID_START,16,,,, -?,24,I:android/icu/lang/UProperty.IDEOGRAPHIC,17,,,, -?,24,I:android/icu/lang/UProperty.IDS_BINARY_OPERATOR,18,,,, -?,24,I:android/icu/lang/UProperty.IDS_TRINARY_OPERATOR,19,,,, -?,29,I:android/icu/lang/UProperty.INDIC_POSITIONAL_CATEGORY,4118,,,, -?,29,I:android/icu/lang/UProperty.INDIC_SYLLABIC_CATEGORY,4119,,,, -?,24,I:android/icu/lang/UProperty.INT_START,4096,,,, -?,24,I:android/icu/lang/UProperty.JOIN_CONTROL,20,,,, -?,24,I:android/icu/lang/UProperty.JOINING_GROUP,4102,,,, -?,24,I:android/icu/lang/UProperty.JOINING_TYPE,4103,,,, -?,24,I:android/icu/lang/UProperty.LEAD_CANONICAL_COMBINING_CLASS,4112,,,, -?,24,I:android/icu/lang/UProperty.LINE_BREAK,4104,,,, -?,24,I:android/icu/lang/UProperty.LOGICAL_ORDER_EXCEPTION,21,,,, -?,24,I:android/icu/lang/UProperty.LOWERCASE,22,,,, -?,24,I:android/icu/lang/UProperty.LOWERCASE_MAPPING,16388,,,, -?,24,I:android/icu/lang/UProperty.MASK_START,8192,,,, -?,24,I:android/icu/lang/UProperty.MATH,23,,,, -?,24,I:android/icu/lang/UProperty.NAME,16389,,,, -?,24,I:android/icu/lang/UProperty.NFC_INERT,39,,,, -?,24,I:android/icu/lang/UProperty.NFC_QUICK_CHECK,4110,,,, -?,24,I:android/icu/lang/UProperty.NFD_INERT,37,,,, -?,24,I:android/icu/lang/UProperty.NFD_QUICK_CHECK,4108,,,, -?,24,I:android/icu/lang/UProperty.NFKC_INERT,40,,,, -?,24,I:android/icu/lang/UProperty.NFKC_QUICK_CHECK,4111,,,, -?,24,I:android/icu/lang/UProperty.NFKD_INERT,38,,,, -?,24,I:android/icu/lang/UProperty.NFKD_QUICK_CHECK,4109,,,, -?,24,I:android/icu/lang/UProperty.NONCHARACTER_CODE_POINT,24,,,, -?,24,I:android/icu/lang/UProperty.NUMERIC_TYPE,4105,,,, -?,24,I:android/icu/lang/UProperty.NUMERIC_VALUE,12288,,,, -?,24,I:android/icu/lang/UProperty.OTHER_PROPERTY_START,28672,,,, -?,24,I:android/icu/lang/UProperty.PATTERN_SYNTAX,42,,,, -?,24,I:android/icu/lang/UProperty.PATTERN_WHITE_SPACE,43,,,, -?,24,I:android/icu/lang/UProperty.POSIX_ALNUM,44,,,, -?,24,I:android/icu/lang/UProperty.POSIX_BLANK,45,,,, -?,24,I:android/icu/lang/UProperty.POSIX_GRAPH,46,,,, -?,24,I:android/icu/lang/UProperty.POSIX_PRINT,47,,,, -?,24,I:android/icu/lang/UProperty.POSIX_XDIGIT,48,,,, -?,28,I:android/icu/lang/UProperty.PREPENDED_CONCATENATION_MARK,63,,,, -?,24,I:android/icu/lang/UProperty.QUOTATION_MARK,25,,,, -?,24,I:android/icu/lang/UProperty.RADICAL,26,,,, -?,28,I:android/icu/lang/UProperty.REGIONAL_INDICATOR,62,,,, -?,24,I:android/icu/lang/UProperty.S_TERM,35,,,, -?,24,I:android/icu/lang/UProperty.SCRIPT,4106,,,, -?,24,I:android/icu/lang/UProperty.SCRIPT_EXTENSIONS,28672,,,, -?,24,I:android/icu/lang/UProperty.SEGMENT_STARTER,41,,,, -?,24,I:android/icu/lang/UProperty.SENTENCE_BREAK,4115,,,, -?,24,I:android/icu/lang/UProperty.SIMPLE_CASE_FOLDING,16390,,,, -?,24,I:android/icu/lang/UProperty.SIMPLE_LOWERCASE_MAPPING,16391,,,, -?,24,I:android/icu/lang/UProperty.SIMPLE_TITLECASE_MAPPING,16392,,,, -?,24,I:android/icu/lang/UProperty.SIMPLE_UPPERCASE_MAPPING,16393,,,, -?,24,I:android/icu/lang/UProperty.SOFT_DOTTED,27,,,, -?,24,I:android/icu/lang/UProperty.STRING_START,16384,,,, -?,24,I:android/icu/lang/UProperty.TERMINAL_PUNCTUATION,28,,,, -?,24,I:android/icu/lang/UProperty.TITLECASE_MAPPING,16394,,,, -?,24,I:android/icu/lang/UProperty.TRAIL_CANONICAL_COMBINING_CLASS,4113,,,, -?,24,I:android/icu/lang/UProperty.UNIFIED_IDEOGRAPH,29,,,, -?,24,I:android/icu/lang/UProperty.UPPERCASE,30,,,, -?,24,I:android/icu/lang/UProperty.UPPERCASE_MAPPING,16396,,,, -?,24,I:android/icu/lang/UProperty.VARIATION_SELECTOR,36,,,, -?,29,I:android/icu/lang/UProperty.VERTICAL_ORIENTATION,4120,,,, -?,24,I:android/icu/lang/UProperty.WHITE_SPACE,31,,,, -?,24,I:android/icu/lang/UProperty.WORD_BREAK,4116,,,, -?,24,I:android/icu/lang/UProperty.XID_CONTINUE,32,,,, -?,24,I:android/icu/lang/UProperty.XID_START,33,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.CURRENCY,4099,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.DEFAULT,-1,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.DIGIT,4100,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.FIRST,4096,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.NONE,103,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.OTHERS,103,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.PUNCTUATION,4097,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.SPACE,4096,,,, -?,24,I:android/icu/text/Collator$ReorderCodes.SYMBOL,4098,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_BOTTOM_AND_RIGHT,10,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_LEFT,11,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_LEFT_AND_RIGHT,12,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.TOP_AND_RIGHT,13,,,, +I,29,I:android/icu/lang/UCharacter$IndicPositionalCategory.VISUAL_ORDER_LEFT,14,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.AVAGRAHA,1,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.BINDU,2,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.BRAHMI_JOINING_NUMBER,3,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CANTILLATION_MARK,4,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT,5,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_DEAD,6,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_FINAL,7,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_HEAD_LETTER,8,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_INITIAL_POSTFIXED,9,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_KILLER,10,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_MEDIAL,11,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PLACEHOLDER,12,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PRECEDING_REPHA,13,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_PREFIXED,14,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_SUBJOINED,15,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_SUCCEEDING_REPHA,16,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.CONSONANT_WITH_STACKER,17,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.GEMINATION_MARK,18,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.INVISIBLE_STACKER,19,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.JOINER,20,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.MODIFYING_LETTER,21,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NON_JOINER,22,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUKTA,23,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUMBER,24,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.NUMBER_JOINER,25,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.OTHER,0,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.PURE_KILLER,26,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.REGISTER_SHIFTER,27,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.SYLLABLE_MODIFIER,28,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.TONE_LETTER,29,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.TONE_MARK,30,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VIRAMA,31,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VISARGA,32,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL,33,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL_DEPENDENT,34,,,, +I,29,I:android/icu/lang/UCharacter$IndicSyllabicCategory.VOWEL_INDEPENDENT,35,,,, +I,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_FEH,86,,,, +I,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_NOON,87,,,, +I,26,I:android/icu/lang/UCharacter$JoiningGroup.AFRICAN_QAF,88,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.AIN,1,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.ALAPH,2,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.ALEF,3,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.BEH,4,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.BETH,5,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.BURUSHASKI_YEH_BARREE,54,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.DAL,6,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.DALATH_RISH,7,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.E,8,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.FARSI_YEH,55,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.FE,51,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.FEH,9,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.FINAL_SEMKATH,10,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.GAF,11,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.GAMAL,12,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HAH,13,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HAMZA_ON_HEH_GOAL,14,,,, +I,29,I:android/icu/lang/UCharacter$JoiningGroup.HANIFI_ROHINGYA_KINNA_YA,100,,,, +I,29,I:android/icu/lang/UCharacter$JoiningGroup.HANIFI_ROHINGYA_PA,101,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HE,15,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HEH,16,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HEH_GOAL,17,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.HETH,18,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.KAF,19,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.KAPH,20,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.KHAPH,52,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.KNOTTED_HEH,21,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.LAM,22,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.LAMADH,23,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_BHA,89,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_JA,90,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_LLA,91,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_LLLA,92,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NGA,93,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NNA,94,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NNNA,95,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_NYA,96,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_RA,97,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_SSA,98,,,, +I,28,I:android/icu/lang/UCharacter$JoiningGroup.MALAYALAM_TTA,99,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ALEPH,58,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_AYIN,59,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_BETH,60,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_DALETH,61,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_DHAMEDH,62,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_FIVE,63,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_GIMEL,64,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_HETH,65,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_HUNDRED,66,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_KAPH,67,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_LAMEDH,68,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_MEM,69,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_NUN,70,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ONE,71,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_PE,72,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_QOPH,73,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_RESH,74,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_SADHE,75,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_SAMEKH,76,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TAW,77,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TEN,78,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TETH,79,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_THAMEDH,80,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_TWENTY,81,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_WAW,82,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_YODH,83,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MANICHAEAN_ZAYIN,84,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MEEM,24,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.MIM,25,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.NO_JOINING_GROUP,0,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.NOON,26,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.NUN,27,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.NYA,56,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.PE,28,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.QAF,29,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.QAPH,30,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.REH,31,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.REVERSED_PE,32,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.ROHINGYA_YEH,57,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SAD,33,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SADHE,34,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SEEN,35,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SEMKATH,36,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SHIN,37,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.STRAIGHT_WAW,85,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SWASH_KAF,38,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.SYRIAC_WAW,39,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.TAH,40,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.TAW,41,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.TEH_MARBUTA,42,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.TEH_MARBUTA_GOAL,14,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.TETH,43,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.WAW,44,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH,45,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH_BARREE,46,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.YEH_WITH_TAIL,47,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.YUDH,48,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.YUDH_HE,49,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.ZAIN,50,,,, +I,24,I:android/icu/lang/UCharacter$JoiningGroup.ZHAIN,53,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.DUAL_JOINING,2,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.JOIN_CAUSING,1,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.LEFT_JOINING,3,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.NON_JOINING,0,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.RIGHT_JOINING,4,,,, +I,24,I:android/icu/lang/UCharacter$JoiningType.TRANSPARENT,5,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.ALPHABETIC,2,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.AMBIGUOUS,1,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_AFTER,4,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_BEFORE,5,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_BOTH,3,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.BREAK_SYMBOLS,27,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.CARRIAGE_RETURN,10,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.CLOSE_PARENTHESIS,36,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.CLOSE_PUNCTUATION,8,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.COMBINING_MARK,9,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.COMPLEX_CONTEXT,24,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.CONDITIONAL_JAPANESE_STARTER,37,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.CONTINGENT_BREAK,7,,,, +I,26,I:android/icu/lang/UCharacter$LineBreak.E_BASE,40,,,, +I,26,I:android/icu/lang/UCharacter$LineBreak.E_MODIFIER,41,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.EXCLAMATION,11,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.GLUE,12,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.H2,31,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.H3,32,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.HEBREW_LETTER,38,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.HYPHEN,13,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.IDEOGRAPHIC,14,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.INFIX_NUMERIC,16,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.INSEPARABLE,15,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.INSEPERABLE,15,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.JL,33,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.JT,34,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.JV,35,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.LINE_FEED,17,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.MANDATORY_BREAK,6,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.NEXT_LINE,29,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.NONSTARTER,18,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.NUMERIC,19,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.OPEN_PUNCTUATION,20,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.POSTFIX_NUMERIC,21,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.PREFIX_NUMERIC,22,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.QUOTATION,23,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.REGIONAL_INDICATOR,39,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.SPACE,26,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.SURROGATE,25,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.UNKNOWN,0,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.WORD_JOINER,30,,,, +I,26,I:android/icu/lang/UCharacter$LineBreak.ZWJ,42,,,, +I,24,I:android/icu/lang/UCharacter$LineBreak.ZWSPACE,28,,,, +I,24,I:android/icu/lang/UCharacter$NumericType.DECIMAL,1,,,, +I,24,I:android/icu/lang/UCharacter$NumericType.DIGIT,2,,,, +I,24,I:android/icu/lang/UCharacter$NumericType.NONE,0,,,, +I,24,I:android/icu/lang/UCharacter$NumericType.NUMERIC,3,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.ATERM,1,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.CLOSE,2,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.CR,11,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.EXTEND,12,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.FORMAT,3,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.LF,13,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.LOWER,4,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.NUMERIC,5,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.OLETTER,6,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.OTHER,0,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.SCONTINUE,14,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.SEP,7,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.SP,8,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.STERM,9,,,, +I,24,I:android/icu/lang/UCharacter$SentenceBreak.UPPER,10,,,, +I,29,I:android/icu/lang/UCharacter$VerticalOrientation.ROTATED,0,,,, +I,29,I:android/icu/lang/UCharacter$VerticalOrientation.TRANSFORMED_ROTATED,1,,,, +I,29,I:android/icu/lang/UCharacter$VerticalOrientation.TRANSFORMED_UPRIGHT,2,,,, +I,29,I:android/icu/lang/UCharacter$VerticalOrientation.UPRIGHT,3,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.ALETTER,1,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.CR,8,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.DOUBLE_QUOTE,16,,,, +I,26,I:android/icu/lang/UCharacter$WordBreak.E_BASE,17,,,, +I,26,I:android/icu/lang/UCharacter$WordBreak.E_BASE_GAZ,18,,,, +I,26,I:android/icu/lang/UCharacter$WordBreak.E_MODIFIER,19,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.EXTEND,9,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.EXTENDNUMLET,7,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.FORMAT,2,,,, +I,26,I:android/icu/lang/UCharacter$WordBreak.GLUE_AFTER_ZWJ,20,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.HEBREW_LETTER,14,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.KATAKANA,3,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.LF,10,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.MIDLETTER,4,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.MIDNUM,5,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.MIDNUMLET,11,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.NEWLINE,12,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.NUMERIC,6,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.OTHER,0,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.REGIONAL_INDICATOR,13,,,, +I,24,I:android/icu/lang/UCharacter$WordBreak.SINGLE_QUOTE,15,,,, +I,29,I:android/icu/lang/UCharacter$WordBreak.WSEGSPACE,22,,,, +I,26,I:android/icu/lang/UCharacter$WordBreak.ZWJ,21,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.ARABIC_NUMBER,5,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.BLOCK_SEPARATOR,7,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.BOUNDARY_NEUTRAL,18,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.COMMON_NUMBER_SEPARATOR,6,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.DIR_NON_SPACING_MARK,17,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER,2,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER_SEPARATOR,3,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.EUROPEAN_NUMBER_TERMINATOR,4,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT,0,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT_EMBEDDING,11,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.LEFT_TO_RIGHT_OVERRIDE,12,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.OTHER_NEUTRAL,10,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.POP_DIRECTIONAL_FORMAT,16,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT,1,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_ARABIC,13,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_EMBEDDING,14,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.RIGHT_TO_LEFT_OVERRIDE,15,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.SEGMENT_SEPARATOR,8,,,, +I,24,I:android/icu/lang/UCharacterEnums$ECharacterDirection.WHITE_SPACE_NEUTRAL,9,,,, +I,24,I:android/icu/lang/UProperty.AGE,16384,,,, +I,24,I:android/icu/lang/UProperty.ALPHABETIC,0,,,, +I,24,I:android/icu/lang/UProperty.ASCII_HEX_DIGIT,1,,,, +I,24,I:android/icu/lang/UProperty.BIDI_CLASS,4096,,,, +I,24,I:android/icu/lang/UProperty.BIDI_CONTROL,2,,,, +I,24,I:android/icu/lang/UProperty.BIDI_MIRRORED,3,,,, +I,24,I:android/icu/lang/UProperty.BIDI_MIRRORING_GLYPH,16385,,,, +I,24,I:android/icu/lang/UProperty.BIDI_PAIRED_BRACKET,16397,,,, +I,24,I:android/icu/lang/UProperty.BIDI_PAIRED_BRACKET_TYPE,4117,,,, +I,24,I:android/icu/lang/UProperty.BINARY_START,0,,,, +I,24,I:android/icu/lang/UProperty.BLOCK,4097,,,, +I,24,I:android/icu/lang/UProperty.CANONICAL_COMBINING_CLASS,4098,,,, +I,24,I:android/icu/lang/UProperty.CASE_FOLDING,16386,,,, +I,24,I:android/icu/lang/UProperty.CASE_IGNORABLE,50,,,, +I,24,I:android/icu/lang/UProperty.CASE_SENSITIVE,34,,,, +I,24,I:android/icu/lang/UProperty.CASED,49,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_CASEFOLDED,54,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_CASEMAPPED,55,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_LOWERCASED,51,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_NFKC_CASEFOLDED,56,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_TITLECASED,53,,,, +I,24,I:android/icu/lang/UProperty.CHANGES_WHEN_UPPERCASED,52,,,, +I,24,I:android/icu/lang/UProperty.DASH,4,,,, +I,24,I:android/icu/lang/UProperty.DECOMPOSITION_TYPE,4099,,,, +I,24,I:android/icu/lang/UProperty.DEFAULT_IGNORABLE_CODE_POINT,5,,,, +I,24,I:android/icu/lang/UProperty.DEPRECATED,6,,,, +I,24,I:android/icu/lang/UProperty.DIACRITIC,7,,,, +I,24,I:android/icu/lang/UProperty.DOUBLE_START,12288,,,, +I,24,I:android/icu/lang/UProperty.EAST_ASIAN_WIDTH,4100,,,, +I,28,I:android/icu/lang/UProperty.EMOJI,57,,,, +I,28,I:android/icu/lang/UProperty.EMOJI_COMPONENT,61,,,, +I,28,I:android/icu/lang/UProperty.EMOJI_MODIFIER,59,,,, +I,28,I:android/icu/lang/UProperty.EMOJI_MODIFIER_BASE,60,,,, +I,28,I:android/icu/lang/UProperty.EMOJI_PRESENTATION,58,,,, +I,29,I:android/icu/lang/UProperty.EXTENDED_PICTOGRAPHIC,64,,,, +I,24,I:android/icu/lang/UProperty.EXTENDER,8,,,, +I,24,I:android/icu/lang/UProperty.FULL_COMPOSITION_EXCLUSION,9,,,, +I,24,I:android/icu/lang/UProperty.GENERAL_CATEGORY,4101,,,, +I,24,I:android/icu/lang/UProperty.GENERAL_CATEGORY_MASK,8192,,,, +I,24,I:android/icu/lang/UProperty.GRAPHEME_BASE,10,,,, +I,24,I:android/icu/lang/UProperty.GRAPHEME_CLUSTER_BREAK,4114,,,, +I,24,I:android/icu/lang/UProperty.GRAPHEME_EXTEND,11,,,, +I,24,I:android/icu/lang/UProperty.GRAPHEME_LINK,12,,,, +I,24,I:android/icu/lang/UProperty.HANGUL_SYLLABLE_TYPE,4107,,,, +I,24,I:android/icu/lang/UProperty.HEX_DIGIT,13,,,, +I,24,I:android/icu/lang/UProperty.HYPHEN,14,,,, +I,24,I:android/icu/lang/UProperty.ID_CONTINUE,15,,,, +I,24,I:android/icu/lang/UProperty.ID_START,16,,,, +I,24,I:android/icu/lang/UProperty.IDEOGRAPHIC,17,,,, +I,24,I:android/icu/lang/UProperty.IDS_BINARY_OPERATOR,18,,,, +I,24,I:android/icu/lang/UProperty.IDS_TRINARY_OPERATOR,19,,,, +I,29,I:android/icu/lang/UProperty.INDIC_POSITIONAL_CATEGORY,4118,,,, +I,29,I:android/icu/lang/UProperty.INDIC_SYLLABIC_CATEGORY,4119,,,, +I,24,I:android/icu/lang/UProperty.INT_START,4096,,,, +I,24,I:android/icu/lang/UProperty.JOIN_CONTROL,20,,,, +I,24,I:android/icu/lang/UProperty.JOINING_GROUP,4102,,,, +I,24,I:android/icu/lang/UProperty.JOINING_TYPE,4103,,,, +I,24,I:android/icu/lang/UProperty.LEAD_CANONICAL_COMBINING_CLASS,4112,,,, +I,24,I:android/icu/lang/UProperty.LINE_BREAK,4104,,,, +I,24,I:android/icu/lang/UProperty.LOGICAL_ORDER_EXCEPTION,21,,,, +I,24,I:android/icu/lang/UProperty.LOWERCASE,22,,,, +I,24,I:android/icu/lang/UProperty.LOWERCASE_MAPPING,16388,,,, +I,24,I:android/icu/lang/UProperty.MASK_START,8192,,,, +I,24,I:android/icu/lang/UProperty.MATH,23,,,, +I,24,I:android/icu/lang/UProperty.NAME,16389,,,, +I,24,I:android/icu/lang/UProperty.NFC_INERT,39,,,, +I,24,I:android/icu/lang/UProperty.NFC_QUICK_CHECK,4110,,,, +I,24,I:android/icu/lang/UProperty.NFD_INERT,37,,,, +I,24,I:android/icu/lang/UProperty.NFD_QUICK_CHECK,4108,,,, +I,24,I:android/icu/lang/UProperty.NFKC_INERT,40,,,, +I,24,I:android/icu/lang/UProperty.NFKC_QUICK_CHECK,4111,,,, +I,24,I:android/icu/lang/UProperty.NFKD_INERT,38,,,, +I,24,I:android/icu/lang/UProperty.NFKD_QUICK_CHECK,4109,,,, +I,24,I:android/icu/lang/UProperty.NONCHARACTER_CODE_POINT,24,,,, +I,24,I:android/icu/lang/UProperty.NUMERIC_TYPE,4105,,,, +I,24,I:android/icu/lang/UProperty.NUMERIC_VALUE,12288,,,, +I,24,I:android/icu/lang/UProperty.OTHER_PROPERTY_START,28672,,,, +I,24,I:android/icu/lang/UProperty.PATTERN_SYNTAX,42,,,, +I,24,I:android/icu/lang/UProperty.PATTERN_WHITE_SPACE,43,,,, +I,24,I:android/icu/lang/UProperty.POSIX_ALNUM,44,,,, +I,24,I:android/icu/lang/UProperty.POSIX_BLANK,45,,,, +I,24,I:android/icu/lang/UProperty.POSIX_GRAPH,46,,,, +I,24,I:android/icu/lang/UProperty.POSIX_PRINT,47,,,, +I,24,I:android/icu/lang/UProperty.POSIX_XDIGIT,48,,,, +I,28,I:android/icu/lang/UProperty.PREPENDED_CONCATENATION_MARK,63,,,, +I,24,I:android/icu/lang/UProperty.QUOTATION_MARK,25,,,, +I,24,I:android/icu/lang/UProperty.RADICAL,26,,,, +I,28,I:android/icu/lang/UProperty.REGIONAL_INDICATOR,62,,,, +I,24,I:android/icu/lang/UProperty.S_TERM,35,,,, +I,24,I:android/icu/lang/UProperty.SCRIPT,4106,,,, +I,24,I:android/icu/lang/UProperty.SCRIPT_EXTENSIONS,28672,,,, +I,24,I:android/icu/lang/UProperty.SEGMENT_STARTER,41,,,, +I,24,I:android/icu/lang/UProperty.SENTENCE_BREAK,4115,,,, +I,24,I:android/icu/lang/UProperty.SIMPLE_CASE_FOLDING,16390,,,, +I,24,I:android/icu/lang/UProperty.SIMPLE_LOWERCASE_MAPPING,16391,,,, +I,24,I:android/icu/lang/UProperty.SIMPLE_TITLECASE_MAPPING,16392,,,, +I,24,I:android/icu/lang/UProperty.SIMPLE_UPPERCASE_MAPPING,16393,,,, +I,24,I:android/icu/lang/UProperty.SOFT_DOTTED,27,,,, +I,24,I:android/icu/lang/UProperty.STRING_START,16384,,,, +I,24,I:android/icu/lang/UProperty.TERMINAL_PUNCTUATION,28,,,, +I,24,I:android/icu/lang/UProperty.TITLECASE_MAPPING,16394,,,, +I,24,I:android/icu/lang/UProperty.TRAIL_CANONICAL_COMBINING_CLASS,4113,,,, +I,24,I:android/icu/lang/UProperty.UNIFIED_IDEOGRAPH,29,,,, +I,24,I:android/icu/lang/UProperty.UPPERCASE,30,,,, +I,24,I:android/icu/lang/UProperty.UPPERCASE_MAPPING,16396,,,, +I,24,I:android/icu/lang/UProperty.VARIATION_SELECTOR,36,,,, +I,29,I:android/icu/lang/UProperty.VERTICAL_ORIENTATION,4120,,,, +I,24,I:android/icu/lang/UProperty.WHITE_SPACE,31,,,, +I,24,I:android/icu/lang/UProperty.WORD_BREAK,4116,,,, +I,24,I:android/icu/lang/UProperty.XID_CONTINUE,32,,,, +I,24,I:android/icu/lang/UProperty.XID_START,33,,,, +I,24,I:android/icu/lang/UProperty$NameChoice.LONG,1,,,, +I,24,I:android/icu/lang/UProperty$NameChoice.SHORT,0,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.CURRENCY,4099,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.DEFAULT,-1,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.DIGIT,4100,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.FIRST,4096,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.NONE,103,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.OTHERS,103,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.PUNCTUATION,4097,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.SPACE,4096,,,, +I,24,I:android/icu/text/Collator$ReorderCodes.SYMBOL,4098,,,, E,24,I:android/icu/text/UnicodeMatcher.U_MATCH,2,Android.Icu.Text.UnicodeMatchResult,Match,remove, E,24,I:android/icu/text/UnicodeMatcher.U_MISMATCH,0,Android.Icu.Text.UnicodeMatchResult,Mismatch,remove, E,24,I:android/icu/text/UnicodeMatcher.U_PARTIAL_MATCH,1,Android.Icu.Text.UnicodeMatchResult,PartialMatch,remove, @@ -13444,19 +14357,19 @@ E,29,I:android/media/MicrophoneDirection.MIC_DIRECTION_AWAY_FROM_USER,2,Android. E,29,I:android/media/MicrophoneDirection.MIC_DIRECTION_EXTERNAL,3,Android.Media.MicDirection,External,remove, E,29,I:android/media/MicrophoneDirection.MIC_DIRECTION_TOWARDS_USER,1,Android.Media.MicDirection,TowardsUser,remove, E,29,I:android/media/MicrophoneDirection.MIC_DIRECTION_UNSPECIFIED,0,Android.Media.MicDirection,Unspecified,remove, -?,0,I:android/os/IBinder.DUMP_TRANSACTION,1598311760,,,, -?,0,I:android/os/IBinder.FIRST_CALL_TRANSACTION,1,,,, +I,0,I:android/os/IBinder.DUMP_TRANSACTION,1598311760,,,, +I,0,I:android/os/IBinder.FIRST_CALL_TRANSACTION,1,,,, A,0,,0,Android.OS.TransactionFlags,None,remove,flags E,10,I:android/os/IBinder.FLAG_ONEWAY,1,Android.OS.TransactionFlags,Oneway,remove,flags -?,0,I:android/os/IBinder.INTERFACE_TRANSACTION,1598968902,,,, -?,0,I:android/os/IBinder.LAST_CALL_TRANSACTION,16777215,,,, -?,15,I:android/os/IBinder.LIKE_TRANSACTION,1598835019,,,, -?,0,I:android/os/IBinder.PING_TRANSACTION,1599098439,,,, -?,15,I:android/os/IBinder.TWEET_TRANSACTION,1599362900,,,, +I,0,I:android/os/IBinder.INTERFACE_TRANSACTION,1598968902,,,, +I,0,I:android/os/IBinder.LAST_CALL_TRANSACTION,16777215,,,, +I,15,I:android/os/IBinder.LIKE_TRANSACTION,1598835019,,,, +I,0,I:android/os/IBinder.PING_TRANSACTION,1599098439,,,, +I,15,I:android/os/IBinder.TWEET_TRANSACTION,1599362900,,,, E,23,I:android/os/MessageQueue$OnFileDescriptorEventListener.EVENT_ERROR,4,Android.OS.MessageQueueEventType,Error,keep, E,23,I:android/os/MessageQueue$OnFileDescriptorEventListener.EVENT_INPUT,1,Android.OS.MessageQueueEventType,Input,keep, E,23,I:android/os/MessageQueue$OnFileDescriptorEventListener.EVENT_OUTPUT,2,Android.OS.MessageQueueEventType,Output,keep, -?,0,I:android/os/Parcelable.CONTENTS_FILE_DESCRIPTOR,1,,,, +I,0,I:android/os/Parcelable.CONTENTS_FILE_DESCRIPTOR,1,,,, A,0,,0,Android.OS.ParcelableWriteFlags,None,remove,flags E,10,I:android/os/Parcelable.PARCELABLE_WRITE_RETURN_VALUE,1,Android.OS.ParcelableWriteFlags,ReturnValue,remove,flags E,15,I:android/provider/CalendarContract$AttendeesColumns.ATTENDEE_STATUS_ACCEPTED,1,Android.Provider.CalendarAttendeesStatus,Accepted,remove, @@ -13502,7 +14415,7 @@ E,15,I:android/provider/CalendarContract$RemindersColumns.METHOD_ALERT,1,Android E,15,I:android/provider/CalendarContract$RemindersColumns.METHOD_DEFAULT,0,Android.Provider.RemindersMethod,Default,remove, E,15,I:android/provider/CalendarContract$RemindersColumns.METHOD_EMAIL,2,Android.Provider.RemindersMethod,Email,remove, E,15,I:android/provider/CalendarContract$RemindersColumns.METHOD_SMS,3,Android.Provider.RemindersMethod,Sms,remove, -?,15,I:android/provider/CalendarContract$RemindersColumns.MINUTES_DEFAULT,-1,,,, +I,15,I:android/provider/CalendarContract$RemindersColumns.MINUTES_DEFAULT,-1,,,, E,10,I:android/provider/Contacts$ContactMethodsColumns.TYPE_CUSTOM,0,Android.Provider.ContactMethodColumn,Custom,keep, E,10,I:android/provider/Contacts$ContactMethodsColumns.TYPE_HOME,1,Android.Provider.ContactMethodColumn,Home,keep, E,10,I:android/provider/Contacts$ContactMethodsColumns.TYPE_OTHER,3,Android.Provider.ContactMethodColumn,Other,keep, @@ -13524,8 +14437,8 @@ E,10,I:android/provider/Contacts$PresenceColumns.DO_NOT_DISTURB,4,Android.Provid E,10,I:android/provider/Contacts$PresenceColumns.IDLE,3,Android.Provider.ContactPresenceStatus,Idle,remove, E,10,I:android/provider/Contacts$PresenceColumns.INVISIBLE,1,Android.Provider.ContactPresenceStatus,Invisible,remove, E,10,I:android/provider/Contacts$PresenceColumns.OFFLINE,0,Android.Provider.ContactPresenceStatus,Offline,remove, -?,0,I:android/provider/ContactsContract$CommonDataKinds$BaseTypes.TYPE_CUSTOM,0,,,, -?,23,I:android/provider/ContactsContract$DataColumns.CARRIER_PRESENCE_VT_CAPABLE,1,,,, +I,0,I:android/provider/ContactsContract$CommonDataKinds$BaseTypes.TYPE_CUSTOM,0,,,, +I,23,I:android/provider/ContactsContract$DataColumns.CARRIER_PRESENCE_VT_CAPABLE,1,,,, E,15,I:android/provider/ContactsContract$DisplayNameSources.EMAIL,10,Android.Provider.DisplayNameSources,Email,remove, E,15,I:android/provider/ContactsContract$DisplayNameSources.NICKNAME,35,Android.Provider.DisplayNameSources,Nickname,remove, E,15,I:android/provider/ContactsContract$DisplayNameSources.ORGANIZATION,30,Android.Provider.DisplayNameSources,Organization,remove, @@ -13576,10 +14489,13 @@ E,19,I:android/provider/Telephony$TextBasedSmsColumns.STATUS_COMPLETE,0,Android. E,19,I:android/provider/Telephony$TextBasedSmsColumns.STATUS_FAILED,64,Android.Provider.SmsStatus,Failed,remove, E,19,I:android/provider/Telephony$TextBasedSmsColumns.STATUS_NONE,-1,Android.Provider.SmsStatus,None,remove, E,19,I:android/provider/Telephony$TextBasedSmsColumns.STATUS_PENDING,32,Android.Provider.SmsStatus,Pending,remove, +E,31,I:android/service/autofill/SavedDatasetsInfoCallback.ERROR_NEEDS_USER_ACTION,2,Android.Service.Autofill.SavedDatasetsErrorCode,NeedsUserAction,remove, +E,31,I:android/service/autofill/SavedDatasetsInfoCallback.ERROR_OTHER,0,Android.Service.Autofill.SavedDatasetsErrorCode,Other,remove, +E,31,I:android/service/autofill/SavedDatasetsInfoCallback.ERROR_UNSUPPORTED,1,Android.Service.Autofill.SavedDatasetsErrorCode,Unsupported,remove, E,30,I:android/telephony/ims/RegistrationManager.REGISTRATION_STATE_NOT_REGISTERED,0,Android.Telephony.Ims.RegistrationState,NotRegistered,remove, E,30,I:android/telephony/ims/RegistrationManager.REGISTRATION_STATE_REGISTERED,2,Android.Telephony.Ims.RegistrationState,Registered,remove, E,30,I:android/telephony/ims/RegistrationManager.REGISTRATION_STATE_REGISTERING,1,Android.Telephony.Ims.RegistrationState,Registering,remove, -?,29,I:android/telephony/mbms/GroupCallCallback.SIGNAL_STRENGTH_UNAVAILABLE,-1,,,, +I,29,I:android/telephony/mbms/GroupCallCallback.SIGNAL_STRENGTH_UNAVAILABLE,-1,,,, E,10,I:android/text/InputType.TYPE_CLASS_DATETIME,4,Android.Text.InputTypes,ClassDatetime,keep,flags E,10,I:android/text/InputType.TYPE_CLASS_NUMBER,2,Android.Text.InputTypes,ClassNumber,keep,flags E,10,I:android/text/InputType.TYPE_CLASS_PHONE,3,Android.Text.InputTypes,ClassPhone,keep,flags @@ -13634,6 +14550,12 @@ E,10,I:android/text/Spanned.SPAN_PRIORITY,16711680,Android.Text.SpanTypes,Priori E,10,I:android/text/Spanned.SPAN_PRIORITY_SHIFT,16,Android.Text.SpanTypes,PriorityShift,keep, E,10,I:android/text/Spanned.SPAN_USER,-16777216,Android.Text.SpanTypes,User,keep, E,10,I:android/text/Spanned.SPAN_USER_SHIFT,24,Android.Text.SpanTypes,UserShift,keep, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_INVALID_BOUNDS,-2,Android.Views.DisplayHash.DisplayHashErrorCode,InvalidBounds,remove, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_INVALID_HASH_ALGORITHM,-5,Android.Views.DisplayHash.DisplayHashErrorCode,InvalidHashAlgorithm,remove, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_MISSING_WINDOW,-3,Android.Views.DisplayHash.DisplayHashErrorCode,MissingWindow,remove, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_NOT_VISIBLE_ON_SCREEN,-4,Android.Views.DisplayHash.DisplayHashErrorCode,NotVisibleOnScreen,remove, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_TOO_MANY_REQUESTS,-6,Android.Views.DisplayHash.DisplayHashErrorCode,TooManyRequests,remove, +E,31,I:android/view/displayhash/DisplayHashResultCallback.DISPLAY_HASH_ERROR_UNKNOWN,-1,Android.Views.DisplayHash.DisplayHashErrorCode,Unknown,remove, E,21,I:android/view/inputmethod/InputConnection.CURSOR_UPDATE_IMMEDIATE,1,Android.Views.InputMethods.CursorUpdate,Immediate,keep, E,21,I:android/view/inputmethod/InputConnection.CURSOR_UPDATE_MONITOR,2,Android.Views.InputMethods.CursorUpdate,Monitor,keep, A,0,,0,Android.Views.InputMethods.TextExtractFlags,None,remove,flags @@ -13649,14 +14571,14 @@ E,10,I:android/view/Menu.CATEGORY_ALTERNATIVE,262144,Android.Views.MenuCategory, E,10,I:android/view/Menu.CATEGORY_CONTAINER,65536,Android.Views.MenuCategory,Container,keep, E,10,I:android/view/Menu.CATEGORY_SECONDARY,196608,Android.Views.MenuCategory,Secondary,keep, E,10,I:android/view/Menu.CATEGORY_SYSTEM,131072,Android.Views.MenuCategory,System,keep, -?,0,I:android/view/Menu.FIRST,1,,,, +I,0,I:android/view/Menu.FIRST,1,,,, A,0,,0,Android.Views.MenuPerformFlags,None,,flags E,10,I:android/view/Menu.FLAG_ALWAYS_PERFORM_CLOSE,2,Android.Views.MenuPerformFlags,AlwaysPerformClose,keep,flags A,0,,0,Android.Views.MenuAppendFlags,None,,flags E,10,I:android/view/Menu.FLAG_APPEND_TO_GROUP,1,Android.Views.MenuAppendFlags,AppendToGroup,keep,flags E,10,I:android/view/Menu.FLAG_PERFORM_NO_CLOSE,1,Android.Views.MenuPerformFlags,PerformNoClose,keep,flags -?,0,I:android/view/Menu.NONE,0,,,, -?,26,I:android/view/Menu.SUPPORTED_MODIFIERS_MASK,69647,,,, +I,0,I:android/view/Menu.NONE,0,,,, +I,26,I:android/view/Menu.SUPPORTED_MODIFIERS_MASK,69647,,,, E,15,I:android/view/MenuItem.SHOW_AS_ACTION_ALWAYS,2,Android.Views.ShowAsAction,Always,keep,flags E,15,I:android/view/MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW,8,Android.Views.ShowAsAction,CollapseActionView,keep,flags E,15,I:android/view/MenuItem.SHOW_AS_ACTION_IF_ROOM,1,Android.Views.ShowAsAction,IfRoom,keep,flags @@ -13669,300 +14591,301 @@ E,10,I:android/view/SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS,3,Android.Views.Surf A,0,,0,Android.Views.WindowInsetsControllerAppearance,None,remove, E,30,I:android/view/WindowInsetsController.APPEARANCE_LIGHT_NAVIGATION_BARS,16,Android.Views.WindowInsetsControllerAppearance,LightNavigationBars,remove, E,30,I:android/view/WindowInsetsController.APPEARANCE_LIGHT_STATUS_BARS,8,Android.Views.WindowInsetsControllerAppearance,LightStatusBars,remove, +E,31,I:android/view/WindowInsetsController.BEHAVIOR_DEFAULT,1,Android.Views.WindowInsetsControllerBehavior,Default,remove, E,30,I:android/view/WindowInsetsController.BEHAVIOR_SHOW_BARS_BY_SWIPE,1,Android.Views.WindowInsetsControllerBehavior,ShowBarsBySwipe,remove, E,30,I:android/view/WindowInsetsController.BEHAVIOR_SHOW_BARS_BY_TOUCH,0,Android.Views.WindowInsetsControllerBehavior,ShowBarsByTouch,remove, E,30,I:android/view/WindowInsetsController.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE,2,Android.Views.WindowInsetsControllerBehavior,ShowTransientBarsBySwipe,remove, E,10,I:android/widget/AbsListView$OnScrollListener.SCROLL_STATE_FLING,2,Android.Widget.ScrollState,Fling,keep, E,10,I:android/widget/AbsListView$OnScrollListener.SCROLL_STATE_IDLE,0,Android.Widget.ScrollState,Idle,keep, E,10,I:android/widget/AbsListView$OnScrollListener.SCROLL_STATE_TOUCH_SCROLL,1,Android.Widget.ScrollState,TouchScroll,keep, -?,0,I:android/widget/Adapter.IGNORE_ITEM_VIEW_TYPE,-1,,,, -?,0,I:android/widget/Adapter.NO_SELECTION,-2147483648,,,, +I,0,I:android/widget/Adapter.IGNORE_ITEM_VIEW_TYPE,-1,,,, +I,0,I:android/widget/Adapter.NO_SELECTION,-2147483648,,,, E,15,I:android/widget/NumberPicker$OnScrollListener.SCROLL_STATE_FLING,2,Android.Widget.NumberPickerScrollState,Fling,keep, E,15,I:android/widget/NumberPicker$OnScrollListener.SCROLL_STATE_IDLE,0,Android.Widget.NumberPickerScrollState,Idle,keep, E,15,I:android/widget/NumberPicker$OnScrollListener.SCROLL_STATE_TOUCH_SCROLL,1,Android.Widget.NumberPickerScrollState,TouchScroll,keep, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_DOUBLE,171,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_DOUBLE_2ADDR,203,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_FLOAT,166,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_FLOAT_2ADDR,198,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT,144,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_2ADDR,176,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_LIT16,208,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_LIT8,216,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_LONG,155,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ADD_LONG_2ADDR,187,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET,68,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_BOOLEAN,71,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_BYTE,72,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_CHAR,73,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_OBJECT,70,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_SHORT,74,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AGET_WIDE,69,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_INT,149,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_2ADDR,181,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_LIT16,213,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_LIT8,221,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_LONG,160,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_AND_LONG_2ADDR,192,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT,75,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_BOOLEAN,78,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_BYTE,79,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_CHAR,80,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_OBJECT,77,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_SHORT,81,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_APUT_WIDE,76,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_ARRAY_LENGTH,33,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_BREAKPOINT,236,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CHECK_CAST,31,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_CHECK_CAST_JUMBO,511,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CMP_LONG,49,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CMPG_DOUBLE,48,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CMPG_FLOAT,46,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CMPL_DOUBLE,47,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CMPL_FLOAT,45,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST,20,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_16,19,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_4,18,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_CLASS,28,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_CONST_CLASS_JUMBO,255,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_HIGH16,21,,,, -?,28,I:dalvik/bytecode/Opcodes.OP_CONST_METHOD_HANDLE,254,,,, -?,28,I:dalvik/bytecode/Opcodes.OP_CONST_METHOD_TYPE,255,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_STRING,26,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_STRING_JUMBO,27,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE,24,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_16,22,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_32,23,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_HIGH16,25,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_DOUBLE,174,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_DOUBLE_2ADDR,206,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_FLOAT,169,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_FLOAT_2ADDR,201,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT,147,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_2ADDR,179,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_LIT16,211,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_LIT8,219,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_LONG,158,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DIV_LONG_2ADDR,190,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_FLOAT,140,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_INT,138,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_LONG,139,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_EXECUTE_INLINE,238,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_EXECUTE_INLINE_RANGE,239,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FILL_ARRAY_DATA,38,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY,36,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY_JUMBO,1535,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY_RANGE,37,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_DOUBLE,137,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_INT,135,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_LONG,136,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_GOTO,40,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_GOTO_16,41,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_GOTO_32,42,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_EQ,50,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_EQZ,56,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_GE,53,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_GEZ,59,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_GT,54,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_GTZ,60,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_LE,55,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_LEZ,61,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_LT,52,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_LTZ,58,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_NE,51,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IF_NEZ,57,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET,82,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_BOOLEAN,85,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_BOOLEAN_JUMBO,2559,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_BYTE,86,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_BYTE_JUMBO,2815,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_CHAR,87,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_CHAR_JUMBO,3071,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_JUMBO,1791,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT,84,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT_JUMBO,2303,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT_QUICK,244,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_QUICK,242,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_SHORT,88,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_SHORT_JUMBO,3327,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE,83,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_JUMBO,2047,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_QUICK,243,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_VOLATILE,232,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INSTANCE_OF,32,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INSTANCE_OF_JUMBO,767,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_BYTE,141,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_CHAR,142,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_DOUBLE,131,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_FLOAT,130,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_LONG,129,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_SHORT,143,,,, -?,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_CUSTOM,252,,,, -?,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_CUSTOM_RANGE,253,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT,112,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_EMPTY,240,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_JUMBO,9471,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_RANGE,118,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE,114,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE_JUMBO,9983,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE_RANGE,120,,,, -?,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_POLYMORPHIC,250,,,, -?,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_POLYMORPHIC_RANGE,251,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC,113,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC_JUMBO,9727,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC_RANGE,119,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER,111,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_JUMBO,9215,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_QUICK,250,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_QUICK_RANGE,251,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_RANGE,117,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL,110,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_JUMBO,8959,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_QUICK,248,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_QUICK_RANGE,249,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_RANGE,116,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT,89,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_BOOLEAN,92,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_BOOLEAN_JUMBO,4351,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_BYTE,93,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_BYTE_JUMBO,4607,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_CHAR,94,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_CHAR_JUMBO,4863,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_JUMBO,3583,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT,91,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT_JUMBO,4095,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT_QUICK,247,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_QUICK,245,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_SHORT,95,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_SHORT_JUMBO,5119,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE,90,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_JUMBO,3839,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_QUICK,246,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_VOLATILE,233,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_DOUBLE,134,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_FLOAT,133,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_INT,132,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MONITOR_ENTER,29,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MONITOR_EXIT,30,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE,1,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_16,3,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_EXCEPTION,13,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_FROM16,2,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT,7,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT_16,9,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT_FROM16,8,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT,10,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT_OBJECT,12,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT_WIDE,11,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE,4,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE_16,6,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE_FROM16,5,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_DOUBLE,173,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_DOUBLE_2ADDR,205,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_FLOAT,168,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_FLOAT_2ADDR,200,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT,146,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_2ADDR,178,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_LIT16,210,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_LIT8,218,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_LONG,157,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_MUL_LONG_2ADDR,189,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEG_DOUBLE,128,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEG_FLOAT,127,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEG_INT,123,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEG_LONG,125,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEW_ARRAY,35,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_NEW_ARRAY_JUMBO,1279,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NEW_INSTANCE,34,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_NEW_INSTANCE_JUMBO,1023,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NOP,0,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NOT_INT,124,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_NOT_LONG,126,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_INT,150,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_2ADDR,182,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_LIT16,214,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_LIT8,222,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_LONG,161,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_OR_LONG_2ADDR,193,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_PACKED_SWITCH,43,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_DOUBLE,175,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_DOUBLE_2ADDR,207,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_FLOAT,170,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_FLOAT_2ADDR,202,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_INT,148,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_2ADDR,180,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_LIT16,212,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_LIT8,220,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_LONG,159,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_REM_LONG_2ADDR,191,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RETURN,15,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RETURN_OBJECT,17,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RETURN_VOID,14,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RETURN_WIDE,16,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RSUB_INT,209,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_RSUB_INT_LIT8,217,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET,96,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_BOOLEAN,99,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_BOOLEAN_JUMBO,6143,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_BYTE,100,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_BYTE_JUMBO,6399,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_CHAR,101,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_CHAR_JUMBO,6655,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_JUMBO,5375,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_OBJECT,98,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_OBJECT_JUMBO,5887,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_SHORT,102,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_SHORT_JUMBO,6911,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE,97,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE_JUMBO,5631,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE_VOLATILE,234,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT,152,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT_2ADDR,184,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT_LIT8,224,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHL_LONG,163,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHL_LONG_2ADDR,195,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT,153,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT_2ADDR,185,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT_LIT8,225,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHR_LONG,164,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SHR_LONG_2ADDR,196,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPARSE_SWITCH,44,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT,103,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_BOOLEAN,106,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_BOOLEAN_JUMBO,7935,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_BYTE,107,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_BYTE_JUMBO,8191,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_CHAR,108,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_CHAR_JUMBO,8447,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_JUMBO,7167,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_OBJECT,105,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_OBJECT_JUMBO,7679,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_SHORT,109,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_SHORT_JUMBO,8703,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE,104,,,, -?,15,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE_JUMBO,7423,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE_VOLATILE,235,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_DOUBLE,172,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_DOUBLE_2ADDR,204,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_FLOAT,167,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_FLOAT_2ADDR,199,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_INT,145,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_INT_2ADDR,177,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_LONG,156,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_SUB_LONG_2ADDR,188,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_THROW,39,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_THROW_VERIFICATION_ERROR,237,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT,154,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT_2ADDR,186,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT_LIT8,226,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_USHR_LONG,165,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_USHR_LONG_2ADDR,197,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT,151,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_2ADDR,183,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_LIT16,215,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_LIT8,223,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_LONG,162,,,, -?,0,I:dalvik/bytecode/Opcodes.OP_XOR_LONG_2ADDR,194,,,, -?,0,I:java/io/ObjectStreamConstants.baseWireHandle,8257536,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_DOUBLE,171,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_DOUBLE_2ADDR,203,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_FLOAT,166,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_FLOAT_2ADDR,198,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT,144,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_2ADDR,176,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_LIT16,208,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_INT_LIT8,216,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_LONG,155,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ADD_LONG_2ADDR,187,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET,68,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_BOOLEAN,71,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_BYTE,72,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_CHAR,73,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_OBJECT,70,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_SHORT,74,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AGET_WIDE,69,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_INT,149,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_2ADDR,181,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_LIT16,213,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_INT_LIT8,221,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_LONG,160,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_AND_LONG_2ADDR,192,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT,75,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_BOOLEAN,78,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_BYTE,79,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_CHAR,80,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_OBJECT,77,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_SHORT,81,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_APUT_WIDE,76,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_ARRAY_LENGTH,33,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_BREAKPOINT,236,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CHECK_CAST,31,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_CHECK_CAST_JUMBO,511,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CMP_LONG,49,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CMPG_DOUBLE,48,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CMPG_FLOAT,46,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CMPL_DOUBLE,47,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CMPL_FLOAT,45,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST,20,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_16,19,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_4,18,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_CLASS,28,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_CONST_CLASS_JUMBO,255,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_HIGH16,21,,,, +I,28,I:dalvik/bytecode/Opcodes.OP_CONST_METHOD_HANDLE,254,,,, +I,28,I:dalvik/bytecode/Opcodes.OP_CONST_METHOD_TYPE,255,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_STRING,26,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_STRING_JUMBO,27,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE,24,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_16,22,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_32,23,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_CONST_WIDE_HIGH16,25,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_DOUBLE,174,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_DOUBLE_2ADDR,206,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_FLOAT,169,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_FLOAT_2ADDR,201,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT,147,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_2ADDR,179,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_LIT16,211,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_INT_LIT8,219,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_LONG,158,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DIV_LONG_2ADDR,190,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_FLOAT,140,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_INT,138,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_DOUBLE_TO_LONG,139,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_EXECUTE_INLINE,238,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_EXECUTE_INLINE_RANGE,239,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FILL_ARRAY_DATA,38,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY,36,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY_JUMBO,1535,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FILLED_NEW_ARRAY_RANGE,37,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_DOUBLE,137,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_INT,135,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_FLOAT_TO_LONG,136,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_GOTO,40,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_GOTO_16,41,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_GOTO_32,42,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_EQ,50,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_EQZ,56,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_GE,53,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_GEZ,59,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_GT,54,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_GTZ,60,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_LE,55,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_LEZ,61,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_LT,52,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_LTZ,58,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_NE,51,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IF_NEZ,57,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET,82,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_BOOLEAN,85,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_BOOLEAN_JUMBO,2559,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_BYTE,86,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_BYTE_JUMBO,2815,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_CHAR,87,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_CHAR_JUMBO,3071,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_JUMBO,1791,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT,84,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT_JUMBO,2303,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_OBJECT_QUICK,244,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_QUICK,242,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_SHORT,88,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_SHORT_JUMBO,3327,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE,83,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_JUMBO,2047,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_QUICK,243,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IGET_WIDE_VOLATILE,232,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INSTANCE_OF,32,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INSTANCE_OF_JUMBO,767,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_BYTE,141,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_CHAR,142,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_DOUBLE,131,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_FLOAT,130,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_LONG,129,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INT_TO_SHORT,143,,,, +I,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_CUSTOM,252,,,, +I,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_CUSTOM_RANGE,253,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT,112,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_EMPTY,240,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_JUMBO,9471,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_DIRECT_RANGE,118,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE,114,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE_JUMBO,9983,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_INTERFACE_RANGE,120,,,, +I,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_POLYMORPHIC,250,,,, +I,26,I:dalvik/bytecode/Opcodes.OP_INVOKE_POLYMORPHIC_RANGE,251,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC,113,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC_JUMBO,9727,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_STATIC_RANGE,119,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER,111,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_JUMBO,9215,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_QUICK,250,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_QUICK_RANGE,251,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_SUPER_RANGE,117,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL,110,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_JUMBO,8959,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_QUICK,248,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_QUICK_RANGE,249,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_INVOKE_VIRTUAL_RANGE,116,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT,89,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_BOOLEAN,92,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_BOOLEAN_JUMBO,4351,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_BYTE,93,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_BYTE_JUMBO,4607,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_CHAR,94,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_CHAR_JUMBO,4863,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_JUMBO,3583,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT,91,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT_JUMBO,4095,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_OBJECT_QUICK,247,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_QUICK,245,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_SHORT,95,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_SHORT_JUMBO,5119,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE,90,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_JUMBO,3839,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_QUICK,246,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_IPUT_WIDE_VOLATILE,233,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_DOUBLE,134,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_FLOAT,133,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_LONG_TO_INT,132,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MONITOR_ENTER,29,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MONITOR_EXIT,30,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE,1,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_16,3,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_EXCEPTION,13,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_FROM16,2,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT,7,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT_16,9,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_OBJECT_FROM16,8,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT,10,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT_OBJECT,12,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_RESULT_WIDE,11,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE,4,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE_16,6,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MOVE_WIDE_FROM16,5,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_DOUBLE,173,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_DOUBLE_2ADDR,205,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_FLOAT,168,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_FLOAT_2ADDR,200,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT,146,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_2ADDR,178,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_LIT16,210,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_INT_LIT8,218,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_LONG,157,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_MUL_LONG_2ADDR,189,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEG_DOUBLE,128,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEG_FLOAT,127,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEG_INT,123,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEG_LONG,125,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEW_ARRAY,35,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_NEW_ARRAY_JUMBO,1279,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NEW_INSTANCE,34,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_NEW_INSTANCE_JUMBO,1023,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NOP,0,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NOT_INT,124,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_NOT_LONG,126,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_INT,150,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_2ADDR,182,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_LIT16,214,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_INT_LIT8,222,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_LONG,161,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_OR_LONG_2ADDR,193,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_PACKED_SWITCH,43,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_DOUBLE,175,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_DOUBLE_2ADDR,207,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_FLOAT,170,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_FLOAT_2ADDR,202,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_INT,148,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_2ADDR,180,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_LIT16,212,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_INT_LIT8,220,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_LONG,159,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_REM_LONG_2ADDR,191,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RETURN,15,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RETURN_OBJECT,17,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RETURN_VOID,14,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RETURN_WIDE,16,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RSUB_INT,209,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_RSUB_INT_LIT8,217,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET,96,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_BOOLEAN,99,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_BOOLEAN_JUMBO,6143,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_BYTE,100,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_BYTE_JUMBO,6399,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_CHAR,101,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_CHAR_JUMBO,6655,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_JUMBO,5375,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_OBJECT,98,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_OBJECT_JUMBO,5887,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_SHORT,102,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_SHORT_JUMBO,6911,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE,97,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE_JUMBO,5631,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SGET_WIDE_VOLATILE,234,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT,152,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT_2ADDR,184,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHL_INT_LIT8,224,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHL_LONG,163,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHL_LONG_2ADDR,195,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT,153,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT_2ADDR,185,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHR_INT_LIT8,225,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHR_LONG,164,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SHR_LONG_2ADDR,196,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPARSE_SWITCH,44,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT,103,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_BOOLEAN,106,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_BOOLEAN_JUMBO,7935,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_BYTE,107,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_BYTE_JUMBO,8191,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_CHAR,108,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_CHAR_JUMBO,8447,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_JUMBO,7167,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_OBJECT,105,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_OBJECT_JUMBO,7679,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_SHORT,109,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_SHORT_JUMBO,8703,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE,104,,,, +I,15,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE_JUMBO,7423,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SPUT_WIDE_VOLATILE,235,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_DOUBLE,172,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_DOUBLE_2ADDR,204,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_FLOAT,167,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_FLOAT_2ADDR,199,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_INT,145,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_INT_2ADDR,177,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_LONG,156,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_SUB_LONG_2ADDR,188,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_THROW,39,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_THROW_VERIFICATION_ERROR,237,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT,154,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT_2ADDR,186,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_USHR_INT_LIT8,226,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_USHR_LONG,165,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_USHR_LONG_2ADDR,197,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT,151,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_2ADDR,183,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_LIT16,215,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_INT_LIT8,223,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_LONG,162,,,, +I,0,I:dalvik/bytecode/Opcodes.OP_XOR_LONG_2ADDR,194,,,, +I,0,I:java/io/ObjectStreamConstants.baseWireHandle,8257536,,,, E,10,I:java/io/ObjectStreamConstants.PROTOCOL_VERSION_1,1,Java.IO.ObjectStreamProtocol,Version1,remove, E,10,I:java/io/ObjectStreamConstants.PROTOCOL_VERSION_2,2,Java.IO.ObjectStreamProtocol,Version2,remove, E,26,I:java/lang/invoke/MethodHandleInfo.REF_getField,1,Java.Lang.Invoke.ReferenceKind,Getfield,remove, @@ -13974,8 +14897,8 @@ E,26,I:java/lang/invoke/MethodHandleInfo.REF_invokeVirtual,5,Java.Lang.Invoke.Re E,26,I:java/lang/invoke/MethodHandleInfo.REF_newInvokeSpecial,8,Java.Lang.Invoke.ReferenceKind,Newinvokespecial,remove, E,26,I:java/lang/invoke/MethodHandleInfo.REF_putField,3,Java.Lang.Invoke.ReferenceKind,Putfield,remove, E,26,I:java/lang/invoke/MethodHandleInfo.REF_putStatic,4,Java.Lang.Invoke.ReferenceKind,Putstatic,remove, -?,0,I:java/lang/reflect/Member.DECLARED,1,,,, -?,0,I:java/lang/reflect/Member.PUBLIC,0,,,, +I,0,I:java/lang/reflect/Member.DECLARED,1,,,, +I,0,I:java/lang/reflect/Member.PUBLIC,0,,,, E,10,I:java/net/SocketOptions.IP_MULTICAST_IF,16,Java.Net.SocketOption,IpMulticastIf,remove, E,10,I:java/net/SocketOptions.IP_MULTICAST_IF2,31,Java.Net.SocketOption,IpMulticastIf2,remove, E,10,I:java/net/SocketOptions.IP_MULTICAST_LOOP,18,Java.Net.SocketOption,IpMulticastLoop,remove, @@ -13990,92 +14913,92 @@ E,10,I:java/net/SocketOptions.SO_REUSEADDR,4,Java.Net.SocketOption,SoReuseaddr,r E,10,I:java/net/SocketOptions.SO_SNDBUF,4097,Java.Net.SocketOption,SoSndbuf,remove, E,10,I:java/net/SocketOptions.SO_TIMEOUT,4102,Java.Net.SocketOption,SoTimeout,remove, E,10,I:java/net/SocketOptions.TCP_NODELAY,1,Java.Net.SocketOption,TcpNodelay,remove, -?,0,I:java/sql/Connection.TRANSACTION_NONE,0,,,, -?,0,I:java/sql/Connection.TRANSACTION_READ_COMMITTED,2,,,, -?,0,I:java/sql/Connection.TRANSACTION_READ_UNCOMMITTED,1,,,, -?,0,I:java/sql/Connection.TRANSACTION_REPEATABLE_READ,4,,,, -?,0,I:java/sql/Connection.TRANSACTION_SERIALIZABLE,8,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowNotPseudo,1,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowPseudo,2,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowSession,2,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowTemporary,0,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowTransaction,1,,,, -?,0,I:java/sql/DatabaseMetaData.bestRowUnknown,0,,,, -?,0,I:java/sql/DatabaseMetaData.columnNoNulls,0,,,, -?,0,I:java/sql/DatabaseMetaData.columnNullable,1,,,, -?,0,I:java/sql/DatabaseMetaData.columnNullableUnknown,2,,,, -?,0,I:java/sql/DatabaseMetaData.functionColumnIn,1,,,, -?,0,I:java/sql/DatabaseMetaData.functionColumnInOut,2,,,, -?,0,I:java/sql/DatabaseMetaData.functionColumnOut,3,,,, -?,0,I:java/sql/DatabaseMetaData.functionColumnResult,5,,,, -?,0,I:java/sql/DatabaseMetaData.functionColumnUnknown,0,,,, -?,0,I:java/sql/DatabaseMetaData.functionNoNulls,0,,,, -?,0,I:java/sql/DatabaseMetaData.functionNoTable,1,,,, -?,0,I:java/sql/DatabaseMetaData.functionNullable,1,,,, -?,0,I:java/sql/DatabaseMetaData.functionNullableUnknown,2,,,, -?,0,I:java/sql/DatabaseMetaData.functionResultUnknown,0,,,, -?,0,I:java/sql/DatabaseMetaData.functionReturn,4,,,, -?,0,I:java/sql/DatabaseMetaData.functionReturnsTable,2,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyCascade,0,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyInitiallyDeferred,5,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyInitiallyImmediate,6,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyNoAction,3,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyNotDeferrable,7,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeyRestrict,1,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeySetDefault,4,,,, -?,0,I:java/sql/DatabaseMetaData.importedKeySetNull,2,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnIn,1,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnInOut,2,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnOut,4,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnResult,3,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnReturn,5,,,, -?,0,I:java/sql/DatabaseMetaData.procedureColumnUnknown,0,,,, -?,0,I:java/sql/DatabaseMetaData.procedureNoNulls,0,,,, -?,0,I:java/sql/DatabaseMetaData.procedureNoResult,1,,,, -?,0,I:java/sql/DatabaseMetaData.procedureNullable,1,,,, -?,0,I:java/sql/DatabaseMetaData.procedureNullableUnknown,2,,,, -?,0,I:java/sql/DatabaseMetaData.procedureResultUnknown,0,,,, -?,0,I:java/sql/DatabaseMetaData.procedureReturnsResult,2,,,, -?,0,I:java/sql/DatabaseMetaData.sqlStateSQL,2,,,, -?,0,I:java/sql/DatabaseMetaData.sqlStateSQL99,2,,,, -?,0,I:java/sql/DatabaseMetaData.sqlStateXOpen,1,,,, -?,0,I:java/sql/DatabaseMetaData.typeNoNulls,0,,,, -?,0,I:java/sql/DatabaseMetaData.typeNullable,1,,,, -?,0,I:java/sql/DatabaseMetaData.typeNullableUnknown,2,,,, -?,0,I:java/sql/DatabaseMetaData.typePredBasic,2,,,, -?,0,I:java/sql/DatabaseMetaData.typePredChar,1,,,, -?,0,I:java/sql/DatabaseMetaData.typePredNone,0,,,, -?,0,I:java/sql/DatabaseMetaData.typeSearchable,3,,,, -?,0,I:java/sql/DatabaseMetaData.versionColumnNotPseudo,1,,,, -?,0,I:java/sql/DatabaseMetaData.versionColumnPseudo,2,,,, -?,0,I:java/sql/DatabaseMetaData.versionColumnUnknown,0,,,, -?,0,I:java/sql/ParameterMetaData.parameterModeIn,1,,,, -?,0,I:java/sql/ParameterMetaData.parameterModeInOut,2,,,, -?,0,I:java/sql/ParameterMetaData.parameterModeOut,4,,,, -?,0,I:java/sql/ParameterMetaData.parameterModeUnknown,0,,,, -?,0,I:java/sql/ParameterMetaData.parameterNoNulls,0,,,, -?,0,I:java/sql/ParameterMetaData.parameterNullable,1,,,, -?,0,I:java/sql/ParameterMetaData.parameterNullableUnknown,2,,,, -?,0,I:java/sql/ResultSet.CLOSE_CURSORS_AT_COMMIT,2,,,, -?,0,I:java/sql/ResultSet.CONCUR_READ_ONLY,1007,,,, -?,0,I:java/sql/ResultSet.CONCUR_UPDATABLE,1008,,,, -?,0,I:java/sql/ResultSet.FETCH_FORWARD,1000,,,, -?,0,I:java/sql/ResultSet.FETCH_REVERSE,1001,,,, -?,0,I:java/sql/ResultSet.FETCH_UNKNOWN,1002,,,, -?,0,I:java/sql/ResultSet.HOLD_CURSORS_OVER_COMMIT,1,,,, -?,0,I:java/sql/ResultSet.TYPE_FORWARD_ONLY,1003,,,, -?,0,I:java/sql/ResultSet.TYPE_SCROLL_INSENSITIVE,1004,,,, -?,0,I:java/sql/ResultSet.TYPE_SCROLL_SENSITIVE,1005,,,, -?,0,I:java/sql/ResultSetMetaData.columnNoNulls,0,,,, -?,0,I:java/sql/ResultSetMetaData.columnNullable,1,,,, -?,0,I:java/sql/ResultSetMetaData.columnNullableUnknown,2,,,, -?,0,I:java/sql/Statement.CLOSE_ALL_RESULTS,3,,,, -?,0,I:java/sql/Statement.CLOSE_CURRENT_RESULT,1,,,, -?,0,I:java/sql/Statement.EXECUTE_FAILED,-3,,,, -?,0,I:java/sql/Statement.KEEP_CURRENT_RESULT,2,,,, -?,0,I:java/sql/Statement.NO_GENERATED_KEYS,2,,,, -?,0,I:java/sql/Statement.RETURN_GENERATED_KEYS,1,,,, -?,0,I:java/sql/Statement.SUCCESS_NO_INFO,-2,,,, +I,0,I:java/sql/Connection.TRANSACTION_NONE,0,,,, +I,0,I:java/sql/Connection.TRANSACTION_READ_COMMITTED,2,,,, +I,0,I:java/sql/Connection.TRANSACTION_READ_UNCOMMITTED,1,,,, +I,0,I:java/sql/Connection.TRANSACTION_REPEATABLE_READ,4,,,, +I,0,I:java/sql/Connection.TRANSACTION_SERIALIZABLE,8,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowNotPseudo,1,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowPseudo,2,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowSession,2,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowTemporary,0,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowTransaction,1,,,, +I,0,I:java/sql/DatabaseMetaData.bestRowUnknown,0,,,, +I,0,I:java/sql/DatabaseMetaData.columnNoNulls,0,,,, +I,0,I:java/sql/DatabaseMetaData.columnNullable,1,,,, +I,0,I:java/sql/DatabaseMetaData.columnNullableUnknown,2,,,, +I,0,I:java/sql/DatabaseMetaData.functionColumnIn,1,,,, +I,0,I:java/sql/DatabaseMetaData.functionColumnInOut,2,,,, +I,0,I:java/sql/DatabaseMetaData.functionColumnOut,3,,,, +I,0,I:java/sql/DatabaseMetaData.functionColumnResult,5,,,, +I,0,I:java/sql/DatabaseMetaData.functionColumnUnknown,0,,,, +I,0,I:java/sql/DatabaseMetaData.functionNoNulls,0,,,, +I,0,I:java/sql/DatabaseMetaData.functionNoTable,1,,,, +I,0,I:java/sql/DatabaseMetaData.functionNullable,1,,,, +I,0,I:java/sql/DatabaseMetaData.functionNullableUnknown,2,,,, +I,0,I:java/sql/DatabaseMetaData.functionResultUnknown,0,,,, +I,0,I:java/sql/DatabaseMetaData.functionReturn,4,,,, +I,0,I:java/sql/DatabaseMetaData.functionReturnsTable,2,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyCascade,0,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyInitiallyDeferred,5,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyInitiallyImmediate,6,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyNoAction,3,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyNotDeferrable,7,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeyRestrict,1,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeySetDefault,4,,,, +I,0,I:java/sql/DatabaseMetaData.importedKeySetNull,2,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnIn,1,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnInOut,2,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnOut,4,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnResult,3,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnReturn,5,,,, +I,0,I:java/sql/DatabaseMetaData.procedureColumnUnknown,0,,,, +I,0,I:java/sql/DatabaseMetaData.procedureNoNulls,0,,,, +I,0,I:java/sql/DatabaseMetaData.procedureNoResult,1,,,, +I,0,I:java/sql/DatabaseMetaData.procedureNullable,1,,,, +I,0,I:java/sql/DatabaseMetaData.procedureNullableUnknown,2,,,, +I,0,I:java/sql/DatabaseMetaData.procedureResultUnknown,0,,,, +I,0,I:java/sql/DatabaseMetaData.procedureReturnsResult,2,,,, +I,0,I:java/sql/DatabaseMetaData.sqlStateSQL,2,,,, +I,0,I:java/sql/DatabaseMetaData.sqlStateSQL99,2,,,, +I,0,I:java/sql/DatabaseMetaData.sqlStateXOpen,1,,,, +I,0,I:java/sql/DatabaseMetaData.typeNoNulls,0,,,, +I,0,I:java/sql/DatabaseMetaData.typeNullable,1,,,, +I,0,I:java/sql/DatabaseMetaData.typeNullableUnknown,2,,,, +I,0,I:java/sql/DatabaseMetaData.typePredBasic,2,,,, +I,0,I:java/sql/DatabaseMetaData.typePredChar,1,,,, +I,0,I:java/sql/DatabaseMetaData.typePredNone,0,,,, +I,0,I:java/sql/DatabaseMetaData.typeSearchable,3,,,, +I,0,I:java/sql/DatabaseMetaData.versionColumnNotPseudo,1,,,, +I,0,I:java/sql/DatabaseMetaData.versionColumnPseudo,2,,,, +I,0,I:java/sql/DatabaseMetaData.versionColumnUnknown,0,,,, +I,0,I:java/sql/ParameterMetaData.parameterModeIn,1,,,, +I,0,I:java/sql/ParameterMetaData.parameterModeInOut,2,,,, +I,0,I:java/sql/ParameterMetaData.parameterModeOut,4,,,, +I,0,I:java/sql/ParameterMetaData.parameterModeUnknown,0,,,, +I,0,I:java/sql/ParameterMetaData.parameterNoNulls,0,,,, +I,0,I:java/sql/ParameterMetaData.parameterNullable,1,,,, +I,0,I:java/sql/ParameterMetaData.parameterNullableUnknown,2,,,, +I,0,I:java/sql/ResultSet.CLOSE_CURSORS_AT_COMMIT,2,,,, +I,0,I:java/sql/ResultSet.CONCUR_READ_ONLY,1007,,,, +I,0,I:java/sql/ResultSet.CONCUR_UPDATABLE,1008,,,, +I,0,I:java/sql/ResultSet.FETCH_FORWARD,1000,,,, +I,0,I:java/sql/ResultSet.FETCH_REVERSE,1001,,,, +I,0,I:java/sql/ResultSet.FETCH_UNKNOWN,1002,,,, +I,0,I:java/sql/ResultSet.HOLD_CURSORS_OVER_COMMIT,1,,,, +I,0,I:java/sql/ResultSet.TYPE_FORWARD_ONLY,1003,,,, +I,0,I:java/sql/ResultSet.TYPE_SCROLL_INSENSITIVE,1004,,,, +I,0,I:java/sql/ResultSet.TYPE_SCROLL_SENSITIVE,1005,,,, +I,0,I:java/sql/ResultSetMetaData.columnNoNulls,0,,,, +I,0,I:java/sql/ResultSetMetaData.columnNullable,1,,,, +I,0,I:java/sql/ResultSetMetaData.columnNullableUnknown,2,,,, +I,0,I:java/sql/Statement.CLOSE_ALL_RESULTS,3,,,, +I,0,I:java/sql/Statement.CLOSE_CURRENT_RESULT,1,,,, +I,0,I:java/sql/Statement.EXECUTE_FAILED,-3,,,, +I,0,I:java/sql/Statement.KEEP_CURRENT_RESULT,2,,,, +I,0,I:java/sql/Statement.NO_GENERATED_KEYS,2,,,, +I,0,I:java/sql/Statement.RETURN_GENERATED_KEYS,1,,,, +I,0,I:java/sql/Statement.SUCCESS_NO_INFO,-2,,,, E,24,I:java/util/Spliterator.CONCURRENT,4096,Java.Util.SpliteratorCharacteristics,Concurrent,remove, E,24,I:java/util/Spliterator.DISTINCT,1,Java.Util.SpliteratorCharacteristics,Distinct,remove, E,24,I:java/util/Spliterator.IMMUTABLE,1024,Java.Util.SpliteratorCharacteristics,Immutable,remove, @@ -14084,596 +15007,596 @@ E,24,I:java/util/Spliterator.ORDERED,16,Java.Util.SpliteratorCharacteristics,Ord E,24,I:java/util/Spliterator.SIZED,64,Java.Util.SpliteratorCharacteristics,Sized,remove, E,24,I:java/util/Spliterator.SORTED,4,Java.Util.SpliteratorCharacteristics,Sorted,remove, E,24,I:java/util/Spliterator.SUBSIZED,16384,Java.Util.SpliteratorCharacteristics,Subsized,remove, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_FORMAT,12424,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_MASK_SIZE,12350,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_SIZE,12321,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ACCESS,12290,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ALLOC,12291,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ATTRIBUTE,12292,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CONFIG,12293,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CONTEXT,12294,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CURRENT_SURFACE,12295,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_DISPLAY,12296,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_MATCH,12297,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_NATIVE_PIXMAP,12298,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_NATIVE_WINDOW,12299,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_PARAMETER,12300,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_SURFACE,12301,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BLUE_SIZE,12322,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_BUFFER_SIZE,12320,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_COLOR_BUFFER_TYPE,12351,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_COLORSPACE,12423,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_CONFIG_CAVEAT,12327,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_CONFIG_ID,12328,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_CORE_NATIVE_ENGINE,12379,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_DEPTH_SIZE,12325,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_DONT_CARE,-1,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_DRAW,12377,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_EXTENSIONS,12373,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_GREEN_SIZE,12323,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_HEIGHT,12374,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_HORIZONTAL_RESOLUTION,12432,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_LARGEST_PBUFFER,12376,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_LEVEL,12329,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_LUMINANCE_BUFFER,12431,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_LUMINANCE_SIZE,12349,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_HEIGHT,12330,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_PIXELS,12331,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_WIDTH,12332,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_RENDERABLE,12333,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_VISUAL_ID,12334,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_VISUAL_TYPE,12335,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NON_CONFORMANT_CONFIG,12369,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NONE,12344,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_NOT_INITIALIZED,12289,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_PBUFFER_BIT,1,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_PIXEL_ASPECT_RATIO,12434,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_PIXMAP_BIT,2,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_READ,12378,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_RED_SIZE,12324,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_RENDER_BUFFER,12422,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_RENDERABLE_TYPE,12352,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_RGB_BUFFER,12430,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SAMPLE_BUFFERS,12338,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SAMPLES,12337,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SINGLE_BUFFER,12421,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SLOW_CONFIG,12368,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_STENCIL_SIZE,12326,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SUCCESS,12288,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_SURFACE_TYPE,12339,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_BLUE_VALUE,12341,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_GREEN_VALUE,12342,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_RED_VALUE,12343,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_RGB,12370,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_TYPE,12340,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_VENDOR,12371,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_VERSION,12372,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_VERTICAL_RESOLUTION,12433,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_WIDTH,12375,,,, -?,0,I:javax/microedition/khronos/egl/EGL10.EGL_WINDOW_BIT,4,,,, -?,0,I:javax/microedition/khronos/egl/EGL11.EGL_CONTEXT_LOST,12302,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ADD,260,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA,6406,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA_BITS,3413,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA_TEST,3008,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ALWAYS,519,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_AMBIENT,4608,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_AMBIENT_AND_DIFFUSE,5634,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_AND,5377,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_AND_INVERTED,5380,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_AND_REVERSE,5378,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_BACK,1029,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_BLEND,3042,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_BLUE_BITS,3412,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_BYTE,5120,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CCW,2305,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CLAMP_TO_EDGE,33071,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CLEAR,5376,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_ARRAY,32886,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_BUFFER_BIT,16384,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_LOGIC_OP,3058,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_MATERIAL,2903,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CONSTANT_ATTENUATION,4615,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COPY,5379,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_COPY_INVERTED,5388,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CULL_FACE,2884,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_CW,2304,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DECAL,8449,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DECR,7683,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_BITS,3414,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_BUFFER_BIT,256,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_TEST,2929,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DIFFUSE,4609,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DITHER,3024,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DONT_CARE,4352,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DST_ALPHA,772,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_DST_COLOR,774,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EMISSION,5632,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EQUAL,514,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EQUIV,5385,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EXP,2048,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EXP2,2049,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_EXTENSIONS,7939,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FALSE,0,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FASTEST,4353,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FIXED,5132,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FLAT,7424,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FLOAT,5126,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG,2912,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_COLOR,2918,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_DENSITY,2914,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_END,2916,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_HINT,3156,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_MODE,2917,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_START,2915,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FRONT,1028,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_FRONT_AND_BACK,1032,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_GEQUAL,518,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_GREATER,516,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_GREEN_BITS,3411,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES,35739,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_IMPLEMENTATION_COLOR_READ_TYPE_OES,35738,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_INCR,7682,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_ENUM,1280,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_OPERATION,1282,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_VALUE,1281,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_INVERT,5386,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_KEEP,7680,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LEQUAL,515,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LESS,513,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT_MODEL_AMBIENT,2899,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT_MODEL_TWO_SIDE,2898,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT0,16384,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT1,16385,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT2,16386,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT3,16387,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT4,16388,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT5,16389,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT6,16390,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT7,16391,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHTING,2896,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_LOOP,2,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_SMOOTH,2848,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_SMOOTH_HINT,3154,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_STRIP,3,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR,9729,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_ATTENUATION,4616,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_MIPMAP_LINEAR,9987,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_MIPMAP_NEAREST,9985,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LINES,1,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LUMINANCE,6409,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_LUMINANCE_ALPHA,6410,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_ELEMENTS_INDICES,33001,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_ELEMENTS_VERTICES,33000,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_LIGHTS,3377,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_MODELVIEW_STACK_DEPTH,3382,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_PROJECTION_STACK_DEPTH,3384,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_SIZE,3379,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_STACK_DEPTH,3385,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_UNITS,34018,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_VIEWPORT_DIMS,3386,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MODELVIEW,5888,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MODULATE,8448,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_MULTISAMPLE,32925,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NAND,5390,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST,9728,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST_MIPMAP_LINEAR,9986,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST_MIPMAP_NEAREST,9984,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NEVER,512,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NICEST,4354,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NO_ERROR,0,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NOOP,5381,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NOR,5384,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NORMAL_ARRAY,32885,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NORMALIZE,2977,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NOTEQUAL,517,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE,1,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_DST_ALPHA,773,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_DST_COLOR,775,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_SRC_ALPHA,771,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_SRC_COLOR,769,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_OR,5383,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_OR_INVERTED,5389,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_OR_REVERSE,5387,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_OUT_OF_MEMORY,1285,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PACK_ALIGNMENT,3333,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_R5_G6_B5_OES,35730,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGB5_A1_OES,35732,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGB8_OES,35728,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGBA4_OES,35731,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGBA8_OES,35729,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_R5_G6_B5_OES,35735,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGB5_A1_OES,35737,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGB8_OES,35733,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGBA4_OES,35736,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGBA8_OES,35734,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PERSPECTIVE_CORRECTION_HINT,3152,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SIZE,2833,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SMOOTH,2832,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SMOOTH_HINT,3153,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POINTS,0,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POLYGON_OFFSET_FILL,32823,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POLYGON_SMOOTH_HINT,3155,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_POSITION,4611,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_PROJECTION,5889,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_QUADRATIC_ATTENUATION,4617,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_RED_BITS,3410,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_RENDERER,7937,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_REPEAT,10497,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_REPLACE,7681,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_RESCALE_NORMAL,32826,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_RGB,6407,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_RGBA,6408,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_ALPHA_TO_ONE,32927,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_COVERAGE,32928,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SCISSOR_TEST,3089,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SET,5391,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SHININESS,5633,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SHORT,5122,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH,7425,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH_LINE_WIDTH_RANGE,2850,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH_POINT_SIZE_RANGE,2834,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SPECULAR,4610,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_CUTOFF,4614,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_DIRECTION,4612,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_EXPONENT,4613,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_ALPHA,770,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_ALPHA_SATURATE,776,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_COLOR,768,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_STACK_OVERFLOW,1283,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_STACK_UNDERFLOW,1284,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_BITS,3415,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_BUFFER_BIT,1024,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_TEST,2960,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_SUBPIXEL_BITS,3408,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE,5890,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_2D,3553,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_COORD_ARRAY,32888,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV,8960,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV_COLOR,8705,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV_MODE,8704,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_MAG_FILTER,10240,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_MIN_FILTER,10241,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_WRAP_S,10242,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_WRAP_T,10243,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE0,33984,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE1,33985,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE10,33994,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE11,33995,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE12,33996,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE13,33997,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE14,33998,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE15,33999,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE16,34000,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE17,34001,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE18,34002,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE19,34003,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE2,33986,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE20,34004,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE21,34005,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE22,34006,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE23,34007,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE24,34008,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE25,34009,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE26,34010,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE27,34011,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE28,34012,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE29,34013,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE3,33987,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE30,34014,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE31,34015,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE4,33988,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE5,33989,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE6,33990,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE7,33991,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE8,33992,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE9,33993,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLE_FAN,6,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLE_STRIP,5,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLES,4,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_TRUE,1,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNPACK_ALIGNMENT,3317,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_BYTE,5121,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT,5123,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_5_6_5,33635,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_VENDOR,7936,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_VERSION,7938,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_VERTEX_ARRAY,32884,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_XOR,5382,,,, -?,0,I:javax/microedition/khronos/opengles/GL10.GL_ZERO,0,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ACTIVE_TEXTURE,34016,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ADD_SIGNED,34164,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_SCALE,3356,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_TEST_FUNC,3009,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_TEST_REF,3010,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ARRAY_BUFFER,34962,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ARRAY_BUFFER_BINDING,34964,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_BLEND_DST,3040,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_BLEND_SRC,3041,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_ACCESS,35003,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_SIZE,34660,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_USAGE,34661,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIENT_ACTIVE_TEXTURE,34017,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE0,12288,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE1,12289,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE2,12290,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE3,12291,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE4,12292,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE5,12293,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_BUFFER_BINDING,34968,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_POINTER,32912,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_SIZE,32897,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_STRIDE,32899,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_TYPE,32898,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_CLEAR_VALUE,3106,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_WRITEMASK,3107,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE,34160,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE_ALPHA,34162,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE_RGB,34161,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CONSTANT,34166,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_COORD_REPLACE_OES,34914,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CULL_FACE_MODE,2885,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_COLOR,2816,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_NORMAL,2818,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_TEXTURE_COORDS,2819,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_CLEAR_VALUE,2931,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_FUNC,2932,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_RANGE,2928,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_WRITEMASK,2930,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DOT3_RGB,34478,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DOT3_RGBA,34479,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_DYNAMIC_DRAW,35048,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ELEMENT_ARRAY_BUFFER,34963,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_FRONT_FACE,2886,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_GENERATE_MIPMAP,33169,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_GENERATE_MIPMAP_HINT,33170,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_INTERPOLATE,34165,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_LINE_WIDTH,2849,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_LOGIC_OP_MODE,3056,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_MATRIX_MODE,2976,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_MAX_CLIP_PLANES,3378,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_MATRIX,2982,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_STACK_DEPTH,2979,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_BUFFER_BINDING,34967,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_POINTER,32911,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_STRIDE,32895,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_TYPE,32894,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND0_ALPHA,34200,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND0_RGB,34192,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND1_ALPHA,34201,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND1_RGB,34193,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND2_ALPHA,34202,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND2_RGB,34194,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_DISTANCE_ATTENUATION,33065,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE,2833,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES,35743,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_OES,35740,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_POINTER_OES,35212,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_STRIDE_OES,35211,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_TYPE_OES,35210,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_MAX,33063,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_MIN,33062,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SPRITE_OES,34913,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POLYGON_OFFSET_FACTOR,32824,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_POLYGON_OFFSET_UNITS,10752,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_PREVIOUS,34168,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_PRIMARY_COLOR,34167,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_MATRIX,2983,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_STACK_DEPTH,2980,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_RGB_SCALE,34163,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_BUFFERS,32936,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_COVERAGE_INVERT,32939,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_COVERAGE_VALUE,32938,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLES,32937,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SCISSOR_BOX,3088,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SHADE_MODEL,2900,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC0_ALPHA,34184,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC0_RGB,34176,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC1_ALPHA,34185,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC1_RGB,34177,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC2_ALPHA,34186,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC2_RGB,34178,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STATIC_DRAW,35044,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_CLEAR_VALUE,2961,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_FAIL,2964,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_FUNC,2962,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_REF,2967,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_VALUE_MASK,2963,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_WRITEMASK,2968,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_SUBTRACT,34023,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_BINDING_2D,32873,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING,34970,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_POINTER,32914,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_SIZE,32904,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_STRIDE,32906,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_TYPE,32905,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_MATRIX,2984,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_STACK_DEPTH,2981,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_BUFFER_BINDING,34966,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_POINTER,32910,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_SIZE,32890,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_STRIDE,32892,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_TYPE,32891,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_VIEWPORT,2978,,,, -?,0,I:javax/microedition/khronos/opengles/GL11.GL_WRITE_ONLY,35001,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES,35742,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_OES,34884,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_POINTER_OES,34889,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_SIZE_OES,34886,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_STRIDE_OES,34888,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_TYPE_OES,34887,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_PALETTE_OES,34880,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MAX_PALETTE_MATRICES_OES,34882,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MAX_VERTEX_UNITS_OES,34468,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_TEXTURE_CROP_RECT_OES,35741,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_BUFFER_BINDING_OES,34974,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_OES,34477,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_POINTER_OES,34476,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_SIZE_OES,34475,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_STRIDE_OES,34474,,,, -?,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_TYPE_OES,34473,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_DST_ALPHA,32970,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_DST_RGB,32968,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION,32777,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION_ALPHA,34877,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION_RGB,32777,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_SRC_ALPHA,32971,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_SRC_RGB,32969,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT0_OES,36064,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT1_OES,36065,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT10_OES,36074,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT11_OES,36075,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT12_OES,36076,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT13_OES,36077,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT14_OES,36078,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT15_OES,36079,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT2_OES,36066,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT3_OES,36067,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT4_OES,36068,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT5_OES,36069,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT6_OES,36070,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT7_OES,36071,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT8_OES,36072,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT9_OES,36073,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DECR_WRAP,34056,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_ATTACHMENT_OES,36096,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT,6402,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT16,33189,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT24,33190,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT32,33191,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES,36049,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES,36048,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES,36051,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES,36050,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_BINDING_OES,36006,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_COMPLETE_OES,36053,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES,36054,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES,36057,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES,36059,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES,36058,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES,36055,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES,36060,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_OES,36160,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_UNSUPPORTED_OES,36061,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_ADD,32774,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_REVERSE_SUBTRACT,32779,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_SUBTRACT,32778,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_INCR_WRAP,34055,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_INVALID_FRAMEBUFFER_OPERATION_OES,1286,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_COLOR_ATTACHMENTS_OES,36063,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_CUBE_MAP_TEXTURE_SIZE,34076,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_RENDERBUFFER_SIZE_OES,34024,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MIRRORED_REPEAT,33648,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_NORMAL_MAP,34065,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_REFLECTION_MAP,34066,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_ALPHA_SIZE_OES,36179,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_BINDING_OES,36007,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_BLUE_SIZE_OES,36178,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_DEPTH_SIZE_OES,36180,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_GREEN_SIZE_OES,36177,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_HEIGHT_OES,36163,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_INTERNAL_FORMAT_OES,36164,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_OES,36161,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_RED_SIZE_OES,36176,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_STENCIL_SIZE_OES,36181,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_WIDTH_OES,36162,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB5_A1,32855,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB565_OES,36194,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB8,32849,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGBA4,32854,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGBA8,32856,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_ATTACHMENT_OES,36128,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX,6401,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX1_OES,36166,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX4_OES,36167,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX8_OES,36168,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STR,-1,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_BINDING_CUBE_MAP,34068,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP,34067,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,34070,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,34072,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,34074,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_X,34069,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,34071,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_Z,34073,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_GEN_MODE,9472,,,, -?,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_GEN_STR,36192,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.COMPLETE,0,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.CONNECT_PROXY,2,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.CONNECT_TARGET,1,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.LAYER_PROTOCOL,5,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.TUNNEL_PROXY,4,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.TUNNEL_TARGET,3,,,, -?,0,I:org/apache/http/conn/routing/HttpRouteDirector.UNREACHABLE,-1,,,, -?,0,I:org/apache/http/entity/ContentLengthStrategy.CHUNKED,-2,,,, -?,0,I:org/apache/http/entity/ContentLengthStrategy.IDENTITY,-1,,,, -?,0,I:org/apache/http/HttpStatus.SC_ACCEPTED,202,,,, -?,0,I:org/apache/http/HttpStatus.SC_BAD_GATEWAY,502,,,, -?,0,I:org/apache/http/HttpStatus.SC_BAD_REQUEST,400,,,, -?,0,I:org/apache/http/HttpStatus.SC_CONFLICT,409,,,, -?,0,I:org/apache/http/HttpStatus.SC_CONTINUE,100,,,, -?,0,I:org/apache/http/HttpStatus.SC_CREATED,201,,,, -?,0,I:org/apache/http/HttpStatus.SC_EXPECTATION_FAILED,417,,,, -?,0,I:org/apache/http/HttpStatus.SC_FAILED_DEPENDENCY,424,,,, -?,0,I:org/apache/http/HttpStatus.SC_FORBIDDEN,403,,,, -?,0,I:org/apache/http/HttpStatus.SC_GATEWAY_TIMEOUT,504,,,, -?,0,I:org/apache/http/HttpStatus.SC_GONE,410,,,, -?,0,I:org/apache/http/HttpStatus.SC_HTTP_VERSION_NOT_SUPPORTED,505,,,, -?,0,I:org/apache/http/HttpStatus.SC_INSUFFICIENT_SPACE_ON_RESOURCE,419,,,, -?,0,I:org/apache/http/HttpStatus.SC_INSUFFICIENT_STORAGE,507,,,, -?,0,I:org/apache/http/HttpStatus.SC_INTERNAL_SERVER_ERROR,500,,,, -?,0,I:org/apache/http/HttpStatus.SC_LENGTH_REQUIRED,411,,,, -?,0,I:org/apache/http/HttpStatus.SC_LOCKED,423,,,, -?,0,I:org/apache/http/HttpStatus.SC_METHOD_FAILURE,420,,,, -?,0,I:org/apache/http/HttpStatus.SC_METHOD_NOT_ALLOWED,405,,,, -?,0,I:org/apache/http/HttpStatus.SC_MOVED_PERMANENTLY,301,,,, -?,0,I:org/apache/http/HttpStatus.SC_MOVED_TEMPORARILY,302,,,, -?,0,I:org/apache/http/HttpStatus.SC_MULTI_STATUS,207,,,, -?,0,I:org/apache/http/HttpStatus.SC_MULTIPLE_CHOICES,300,,,, -?,0,I:org/apache/http/HttpStatus.SC_NO_CONTENT,204,,,, -?,0,I:org/apache/http/HttpStatus.SC_NON_AUTHORITATIVE_INFORMATION,203,,,, -?,0,I:org/apache/http/HttpStatus.SC_NOT_ACCEPTABLE,406,,,, -?,0,I:org/apache/http/HttpStatus.SC_NOT_FOUND,404,,,, -?,0,I:org/apache/http/HttpStatus.SC_NOT_IMPLEMENTED,501,,,, -?,0,I:org/apache/http/HttpStatus.SC_NOT_MODIFIED,304,,,, -?,0,I:org/apache/http/HttpStatus.SC_OK,200,,,, -?,0,I:org/apache/http/HttpStatus.SC_PARTIAL_CONTENT,206,,,, -?,0,I:org/apache/http/HttpStatus.SC_PAYMENT_REQUIRED,402,,,, -?,0,I:org/apache/http/HttpStatus.SC_PRECONDITION_FAILED,412,,,, -?,0,I:org/apache/http/HttpStatus.SC_PROCESSING,102,,,, -?,0,I:org/apache/http/HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED,407,,,, -?,0,I:org/apache/http/HttpStatus.SC_REQUEST_TIMEOUT,408,,,, -?,0,I:org/apache/http/HttpStatus.SC_REQUEST_TOO_LONG,413,,,, -?,0,I:org/apache/http/HttpStatus.SC_REQUEST_URI_TOO_LONG,414,,,, -?,0,I:org/apache/http/HttpStatus.SC_REQUESTED_RANGE_NOT_SATISFIABLE,416,,,, -?,0,I:org/apache/http/HttpStatus.SC_RESET_CONTENT,205,,,, -?,0,I:org/apache/http/HttpStatus.SC_SEE_OTHER,303,,,, -?,0,I:org/apache/http/HttpStatus.SC_SERVICE_UNAVAILABLE,503,,,, -?,0,I:org/apache/http/HttpStatus.SC_SWITCHING_PROTOCOLS,101,,,, -?,0,I:org/apache/http/HttpStatus.SC_TEMPORARY_REDIRECT,307,,,, -?,0,I:org/apache/http/HttpStatus.SC_UNAUTHORIZED,401,,,, -?,0,I:org/apache/http/HttpStatus.SC_UNPROCESSABLE_ENTITY,422,,,, -?,0,I:org/apache/http/HttpStatus.SC_UNSUPPORTED_MEDIA_TYPE,415,,,, -?,0,I:org/apache/http/HttpStatus.SC_USE_PROXY,305,,,, -?,0,I:org/w3c/dom/TypeInfo.DERIVATION_EXTENSION,2,,,, -?,0,I:org/w3c/dom/TypeInfo.DERIVATION_LIST,8,,,, -?,0,I:org/w3c/dom/TypeInfo.DERIVATION_RESTRICTION,1,,,, -?,0,I:org/w3c/dom/TypeInfo.DERIVATION_UNION,4,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_FORMAT,12424,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_MASK_SIZE,12350,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_ALPHA_SIZE,12321,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ACCESS,12290,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ALLOC,12291,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_ATTRIBUTE,12292,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CONFIG,12293,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CONTEXT,12294,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_CURRENT_SURFACE,12295,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_DISPLAY,12296,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_MATCH,12297,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_NATIVE_PIXMAP,12298,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_NATIVE_WINDOW,12299,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_PARAMETER,12300,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BAD_SURFACE,12301,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BLUE_SIZE,12322,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_BUFFER_SIZE,12320,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_COLOR_BUFFER_TYPE,12351,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_COLORSPACE,12423,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_CONFIG_CAVEAT,12327,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_CONFIG_ID,12328,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_CORE_NATIVE_ENGINE,12379,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_DEPTH_SIZE,12325,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_DONT_CARE,-1,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_DRAW,12377,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_EXTENSIONS,12373,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_GREEN_SIZE,12323,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_HEIGHT,12374,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_HORIZONTAL_RESOLUTION,12432,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_LARGEST_PBUFFER,12376,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_LEVEL,12329,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_LUMINANCE_BUFFER,12431,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_LUMINANCE_SIZE,12349,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_HEIGHT,12330,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_PIXELS,12331,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_MAX_PBUFFER_WIDTH,12332,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_RENDERABLE,12333,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_VISUAL_ID,12334,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NATIVE_VISUAL_TYPE,12335,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NON_CONFORMANT_CONFIG,12369,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NONE,12344,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_NOT_INITIALIZED,12289,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_PBUFFER_BIT,1,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_PIXEL_ASPECT_RATIO,12434,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_PIXMAP_BIT,2,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_READ,12378,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_RED_SIZE,12324,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_RENDER_BUFFER,12422,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_RENDERABLE_TYPE,12352,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_RGB_BUFFER,12430,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SAMPLE_BUFFERS,12338,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SAMPLES,12337,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SINGLE_BUFFER,12421,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SLOW_CONFIG,12368,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_STENCIL_SIZE,12326,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SUCCESS,12288,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_SURFACE_TYPE,12339,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_BLUE_VALUE,12341,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_GREEN_VALUE,12342,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_RED_VALUE,12343,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_RGB,12370,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_TRANSPARENT_TYPE,12340,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_VENDOR,12371,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_VERSION,12372,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_VERTICAL_RESOLUTION,12433,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_WIDTH,12375,,,, +I,0,I:javax/microedition/khronos/egl/EGL10.EGL_WINDOW_BIT,4,,,, +I,0,I:javax/microedition/khronos/egl/EGL11.EGL_CONTEXT_LOST,12302,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ADD,260,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALIASED_LINE_WIDTH_RANGE,33902,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALIASED_POINT_SIZE_RANGE,33901,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA,6406,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA_BITS,3413,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALPHA_TEST,3008,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ALWAYS,519,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_AMBIENT,4608,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_AMBIENT_AND_DIFFUSE,5634,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_AND,5377,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_AND_INVERTED,5380,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_AND_REVERSE,5378,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_BACK,1029,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_BLEND,3042,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_BLUE_BITS,3412,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_BYTE,5120,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CCW,2305,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CLAMP_TO_EDGE,33071,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CLEAR,5376,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_ARRAY,32886,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_BUFFER_BIT,16384,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_LOGIC_OP,3058,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COLOR_MATERIAL,2903,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COMPRESSED_TEXTURE_FORMATS,34467,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CONSTANT_ATTENUATION,4615,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COPY,5379,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_COPY_INVERTED,5388,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CULL_FACE,2884,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_CW,2304,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DECAL,8449,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DECR,7683,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_BITS,3414,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_BUFFER_BIT,256,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DEPTH_TEST,2929,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DIFFUSE,4609,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DITHER,3024,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DONT_CARE,4352,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DST_ALPHA,772,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_DST_COLOR,774,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EMISSION,5632,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EQUAL,514,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EQUIV,5385,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EXP,2048,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EXP2,2049,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_EXTENSIONS,7939,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FALSE,0,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FASTEST,4353,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FIXED,5132,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FLAT,7424,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FLOAT,5126,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG,2912,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_COLOR,2918,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_DENSITY,2914,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_END,2916,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_HINT,3156,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_MODE,2917,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FOG_START,2915,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FRONT,1028,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_FRONT_AND_BACK,1032,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_GEQUAL,518,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_GREATER,516,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_GREEN_BITS,3411,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES,35739,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_IMPLEMENTATION_COLOR_READ_TYPE_OES,35738,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_INCR,7682,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_ENUM,1280,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_OPERATION,1282,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_INVALID_VALUE,1281,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_INVERT,5386,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_KEEP,7680,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LEQUAL,515,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LESS,513,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT_MODEL_AMBIENT,2899,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT_MODEL_TWO_SIDE,2898,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT0,16384,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT1,16385,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT2,16386,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT3,16387,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT4,16388,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT5,16389,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT6,16390,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHT7,16391,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LIGHTING,2896,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_LOOP,2,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_SMOOTH,2848,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_SMOOTH_HINT,3154,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINE_STRIP,3,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR,9729,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_ATTENUATION,4616,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_MIPMAP_LINEAR,9987,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINEAR_MIPMAP_NEAREST,9985,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LINES,1,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LUMINANCE,6409,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_LUMINANCE_ALPHA,6410,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_ELEMENTS_INDICES,33001,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_ELEMENTS_VERTICES,33000,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_LIGHTS,3377,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_MODELVIEW_STACK_DEPTH,3382,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_PROJECTION_STACK_DEPTH,3384,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_SIZE,3379,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_STACK_DEPTH,3385,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_TEXTURE_UNITS,34018,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MAX_VIEWPORT_DIMS,3386,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MODELVIEW,5888,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MODULATE,8448,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_MULTISAMPLE,32925,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NAND,5390,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST,9728,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST_MIPMAP_LINEAR,9986,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NEAREST_MIPMAP_NEAREST,9984,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NEVER,512,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NICEST,4354,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NO_ERROR,0,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NOOP,5381,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NOR,5384,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NORMAL_ARRAY,32885,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NORMALIZE,2977,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NOTEQUAL,517,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_NUM_COMPRESSED_TEXTURE_FORMATS,34466,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE,1,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_DST_ALPHA,773,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_DST_COLOR,775,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_SRC_ALPHA,771,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ONE_MINUS_SRC_COLOR,769,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_OR,5383,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_OR_INVERTED,5389,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_OR_REVERSE,5387,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_OUT_OF_MEMORY,1285,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PACK_ALIGNMENT,3333,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_R5_G6_B5_OES,35730,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGB5_A1_OES,35732,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGB8_OES,35728,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGBA4_OES,35731,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE4_RGBA8_OES,35729,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_R5_G6_B5_OES,35735,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGB5_A1_OES,35737,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGB8_OES,35733,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGBA4_OES,35736,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PALETTE8_RGBA8_OES,35734,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PERSPECTIVE_CORRECTION_HINT,3152,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SIZE,2833,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SMOOTH,2832,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POINT_SMOOTH_HINT,3153,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POINTS,0,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POLYGON_OFFSET_FILL,32823,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POLYGON_SMOOTH_HINT,3155,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_POSITION,4611,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_PROJECTION,5889,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_QUADRATIC_ATTENUATION,4617,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_RED_BITS,3410,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_RENDERER,7937,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_REPEAT,10497,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_REPLACE,7681,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_RESCALE_NORMAL,32826,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_RGB,6407,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_RGBA,6408,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_ALPHA_TO_COVERAGE,32926,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_ALPHA_TO_ONE,32927,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SAMPLE_COVERAGE,32928,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SCISSOR_TEST,3089,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SET,5391,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SHININESS,5633,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SHORT,5122,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH,7425,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH_LINE_WIDTH_RANGE,2850,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SMOOTH_POINT_SIZE_RANGE,2834,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SPECULAR,4610,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_CUTOFF,4614,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_DIRECTION,4612,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SPOT_EXPONENT,4613,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_ALPHA,770,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_ALPHA_SATURATE,776,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SRC_COLOR,768,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_STACK_OVERFLOW,1283,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_STACK_UNDERFLOW,1284,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_BITS,3415,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_BUFFER_BIT,1024,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_STENCIL_TEST,2960,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_SUBPIXEL_BITS,3408,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE,5890,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_2D,3553,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_COORD_ARRAY,32888,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV,8960,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV_COLOR,8705,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_ENV_MODE,8704,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_MAG_FILTER,10240,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_MIN_FILTER,10241,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_WRAP_S,10242,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE_WRAP_T,10243,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE0,33984,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE1,33985,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE10,33994,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE11,33995,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE12,33996,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE13,33997,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE14,33998,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE15,33999,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE16,34000,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE17,34001,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE18,34002,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE19,34003,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE2,33986,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE20,34004,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE21,34005,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE22,34006,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE23,34007,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE24,34008,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE25,34009,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE26,34010,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE27,34011,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE28,34012,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE29,34013,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE3,33987,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE30,34014,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE31,34015,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE4,33988,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE5,33989,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE6,33990,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE7,33991,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE8,33992,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TEXTURE9,33993,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLE_FAN,6,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLE_STRIP,5,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TRIANGLES,4,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_TRUE,1,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNPACK_ALIGNMENT,3317,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_BYTE,5121,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT,5123,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_4_4_4_4,32819,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_5_5_5_1,32820,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_UNSIGNED_SHORT_5_6_5,33635,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_VENDOR,7936,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_VERSION,7938,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_VERTEX_ARRAY,32884,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_XOR,5382,,,, +I,0,I:javax/microedition/khronos/opengles/GL10.GL_ZERO,0,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ACTIVE_TEXTURE,34016,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ADD_SIGNED,34164,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_SCALE,3356,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_TEST_FUNC,3009,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ALPHA_TEST_REF,3010,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ARRAY_BUFFER,34962,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ARRAY_BUFFER_BINDING,34964,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_BLEND_DST,3040,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_BLEND_SRC,3041,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_ACCESS,35003,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_SIZE,34660,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_BUFFER_USAGE,34661,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIENT_ACTIVE_TEXTURE,34017,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE0,12288,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE1,12289,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE2,12290,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE3,12291,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE4,12292,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CLIP_PLANE5,12293,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_BUFFER_BINDING,34968,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_POINTER,32912,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_SIZE,32897,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_STRIDE,32899,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_ARRAY_TYPE,32898,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_CLEAR_VALUE,3106,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COLOR_WRITEMASK,3107,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE,34160,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE_ALPHA,34162,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COMBINE_RGB,34161,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CONSTANT,34166,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_COORD_REPLACE_OES,34914,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CULL_FACE_MODE,2885,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_COLOR,2816,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_NORMAL,2818,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_CURRENT_TEXTURE_COORDS,2819,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_CLEAR_VALUE,2931,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_FUNC,2932,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_RANGE,2928,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DEPTH_WRITEMASK,2930,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DOT3_RGB,34478,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DOT3_RGBA,34479,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_DYNAMIC_DRAW,35048,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ELEMENT_ARRAY_BUFFER,34963,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_ELEMENT_ARRAY_BUFFER_BINDING,34965,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_FRONT_FACE,2886,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_GENERATE_MIPMAP,33169,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_GENERATE_MIPMAP_HINT,33170,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_INTERPOLATE,34165,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_LINE_WIDTH,2849,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_LOGIC_OP_MODE,3056,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_MATRIX_MODE,2976,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_MAX_CLIP_PLANES,3378,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_MATRIX,2982,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES,35213,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_MODELVIEW_STACK_DEPTH,2979,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_BUFFER_BINDING,34967,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_POINTER,32911,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_STRIDE,32895,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_NORMAL_ARRAY_TYPE,32894,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND0_ALPHA,34200,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND0_RGB,34192,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND1_ALPHA,34201,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND1_RGB,34193,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND2_ALPHA,34202,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_OPERAND2_RGB,34194,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_DISTANCE_ATTENUATION,33065,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_FADE_THRESHOLD_SIZE,33064,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE,2833,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES,35743,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_OES,35740,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_POINTER_OES,35212,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_STRIDE_OES,35211,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_ARRAY_TYPE_OES,35210,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_MAX,33063,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SIZE_MIN,33062,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POINT_SPRITE_OES,34913,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POLYGON_OFFSET_FACTOR,32824,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_POLYGON_OFFSET_UNITS,10752,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_PREVIOUS,34168,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_PRIMARY_COLOR,34167,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_MATRIX,2983,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES,35214,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_PROJECTION_STACK_DEPTH,2980,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_RGB_SCALE,34163,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_BUFFERS,32936,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_COVERAGE_INVERT,32939,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLE_COVERAGE_VALUE,32938,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SAMPLES,32937,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SCISSOR_BOX,3088,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SHADE_MODEL,2900,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC0_ALPHA,34184,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC0_RGB,34176,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC1_ALPHA,34185,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC1_RGB,34177,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC2_ALPHA,34186,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SRC2_RGB,34178,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STATIC_DRAW,35044,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_CLEAR_VALUE,2961,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_FAIL,2964,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_FUNC,2962,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_PASS_DEPTH_FAIL,2965,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_PASS_DEPTH_PASS,2966,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_REF,2967,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_VALUE_MASK,2963,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_STENCIL_WRITEMASK,2968,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_SUBTRACT,34023,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_BINDING_2D,32873,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING,34970,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_POINTER,32914,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_SIZE,32904,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_STRIDE,32906,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_COORD_ARRAY_TYPE,32905,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_MATRIX,2984,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES,35215,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_TEXTURE_STACK_DEPTH,2981,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_BUFFER_BINDING,34966,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_POINTER,32910,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_SIZE,32890,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_STRIDE,32892,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VERTEX_ARRAY_TYPE,32891,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_VIEWPORT,2978,,,, +I,0,I:javax/microedition/khronos/opengles/GL11.GL_WRITE_ONLY,35001,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES,35742,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_OES,34884,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_POINTER_OES,34889,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_SIZE_OES,34886,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_STRIDE_OES,34888,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_INDEX_ARRAY_TYPE_OES,34887,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MATRIX_PALETTE_OES,34880,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MAX_PALETTE_MATRICES_OES,34882,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_MAX_VERTEX_UNITS_OES,34468,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_TEXTURE_CROP_RECT_OES,35741,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_BUFFER_BINDING_OES,34974,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_OES,34477,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_POINTER_OES,34476,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_SIZE_OES,34475,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_STRIDE_OES,34474,,,, +I,0,I:javax/microedition/khronos/opengles/GL11Ext.GL_WEIGHT_ARRAY_TYPE_OES,34473,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_DST_ALPHA,32970,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_DST_RGB,32968,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION,32777,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION_ALPHA,34877,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_EQUATION_RGB,32777,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_SRC_ALPHA,32971,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_BLEND_SRC_RGB,32969,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT0_OES,36064,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT1_OES,36065,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT10_OES,36074,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT11_OES,36075,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT12_OES,36076,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT13_OES,36077,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT14_OES,36078,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT15_OES,36079,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT2_OES,36066,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT3_OES,36067,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT4_OES,36068,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT5_OES,36069,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT6_OES,36070,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT7_OES,36071,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT8_OES,36072,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_COLOR_ATTACHMENT9_OES,36073,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DECR_WRAP,34056,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_ATTACHMENT_OES,36096,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT,6402,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT16,33189,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT24,33190,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_DEPTH_COMPONENT32,33191,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES,36049,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES,36048,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES,36051,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES,36050,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_BINDING_OES,36006,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_COMPLETE_OES,36053,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES,36054,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES,36057,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES,36059,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES,36058,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES,36055,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES,36060,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_OES,36160,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FRAMEBUFFER_UNSUPPORTED_OES,36061,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_ADD,32774,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_REVERSE_SUBTRACT,32779,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_FUNC_SUBTRACT,32778,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_INCR_WRAP,34055,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_INVALID_FRAMEBUFFER_OPERATION_OES,1286,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_COLOR_ATTACHMENTS_OES,36063,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_CUBE_MAP_TEXTURE_SIZE,34076,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MAX_RENDERBUFFER_SIZE_OES,34024,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_MIRRORED_REPEAT,33648,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_NORMAL_MAP,34065,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_REFLECTION_MAP,34066,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_ALPHA_SIZE_OES,36179,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_BINDING_OES,36007,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_BLUE_SIZE_OES,36178,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_DEPTH_SIZE_OES,36180,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_GREEN_SIZE_OES,36177,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_HEIGHT_OES,36163,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_INTERNAL_FORMAT_OES,36164,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_OES,36161,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_RED_SIZE_OES,36176,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_STENCIL_SIZE_OES,36181,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RENDERBUFFER_WIDTH_OES,36162,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB5_A1,32855,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB565_OES,36194,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGB8,32849,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGBA4,32854,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_RGBA8,32856,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_ATTACHMENT_OES,36128,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX,6401,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX1_OES,36166,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX4_OES,36167,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STENCIL_INDEX8_OES,36168,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_STR,-1,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_BINDING_CUBE_MAP,34068,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP,34067,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,34070,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,34072,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,34074,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_X,34069,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,34071,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_CUBE_MAP_POSITIVE_Z,34073,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_GEN_MODE,9472,,,, +I,0,I:javax/microedition/khronos/opengles/GL11ExtensionPack.GL_TEXTURE_GEN_STR,36192,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.COMPLETE,0,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.CONNECT_PROXY,2,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.CONNECT_TARGET,1,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.LAYER_PROTOCOL,5,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.TUNNEL_PROXY,4,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.TUNNEL_TARGET,3,,,, +I,0,I:org/apache/http/conn/routing/HttpRouteDirector.UNREACHABLE,-1,,,, +I,0,I:org/apache/http/entity/ContentLengthStrategy.CHUNKED,-2,,,, +I,0,I:org/apache/http/entity/ContentLengthStrategy.IDENTITY,-1,,,, +I,0,I:org/apache/http/HttpStatus.SC_ACCEPTED,202,,,, +I,0,I:org/apache/http/HttpStatus.SC_BAD_GATEWAY,502,,,, +I,0,I:org/apache/http/HttpStatus.SC_BAD_REQUEST,400,,,, +I,0,I:org/apache/http/HttpStatus.SC_CONFLICT,409,,,, +I,0,I:org/apache/http/HttpStatus.SC_CONTINUE,100,,,, +I,0,I:org/apache/http/HttpStatus.SC_CREATED,201,,,, +I,0,I:org/apache/http/HttpStatus.SC_EXPECTATION_FAILED,417,,,, +I,0,I:org/apache/http/HttpStatus.SC_FAILED_DEPENDENCY,424,,,, +I,0,I:org/apache/http/HttpStatus.SC_FORBIDDEN,403,,,, +I,0,I:org/apache/http/HttpStatus.SC_GATEWAY_TIMEOUT,504,,,, +I,0,I:org/apache/http/HttpStatus.SC_GONE,410,,,, +I,0,I:org/apache/http/HttpStatus.SC_HTTP_VERSION_NOT_SUPPORTED,505,,,, +I,0,I:org/apache/http/HttpStatus.SC_INSUFFICIENT_SPACE_ON_RESOURCE,419,,,, +I,0,I:org/apache/http/HttpStatus.SC_INSUFFICIENT_STORAGE,507,,,, +I,0,I:org/apache/http/HttpStatus.SC_INTERNAL_SERVER_ERROR,500,,,, +I,0,I:org/apache/http/HttpStatus.SC_LENGTH_REQUIRED,411,,,, +I,0,I:org/apache/http/HttpStatus.SC_LOCKED,423,,,, +I,0,I:org/apache/http/HttpStatus.SC_METHOD_FAILURE,420,,,, +I,0,I:org/apache/http/HttpStatus.SC_METHOD_NOT_ALLOWED,405,,,, +I,0,I:org/apache/http/HttpStatus.SC_MOVED_PERMANENTLY,301,,,, +I,0,I:org/apache/http/HttpStatus.SC_MOVED_TEMPORARILY,302,,,, +I,0,I:org/apache/http/HttpStatus.SC_MULTI_STATUS,207,,,, +I,0,I:org/apache/http/HttpStatus.SC_MULTIPLE_CHOICES,300,,,, +I,0,I:org/apache/http/HttpStatus.SC_NO_CONTENT,204,,,, +I,0,I:org/apache/http/HttpStatus.SC_NON_AUTHORITATIVE_INFORMATION,203,,,, +I,0,I:org/apache/http/HttpStatus.SC_NOT_ACCEPTABLE,406,,,, +I,0,I:org/apache/http/HttpStatus.SC_NOT_FOUND,404,,,, +I,0,I:org/apache/http/HttpStatus.SC_NOT_IMPLEMENTED,501,,,, +I,0,I:org/apache/http/HttpStatus.SC_NOT_MODIFIED,304,,,, +I,0,I:org/apache/http/HttpStatus.SC_OK,200,,,, +I,0,I:org/apache/http/HttpStatus.SC_PARTIAL_CONTENT,206,,,, +I,0,I:org/apache/http/HttpStatus.SC_PAYMENT_REQUIRED,402,,,, +I,0,I:org/apache/http/HttpStatus.SC_PRECONDITION_FAILED,412,,,, +I,0,I:org/apache/http/HttpStatus.SC_PROCESSING,102,,,, +I,0,I:org/apache/http/HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED,407,,,, +I,0,I:org/apache/http/HttpStatus.SC_REQUEST_TIMEOUT,408,,,, +I,0,I:org/apache/http/HttpStatus.SC_REQUEST_TOO_LONG,413,,,, +I,0,I:org/apache/http/HttpStatus.SC_REQUEST_URI_TOO_LONG,414,,,, +I,0,I:org/apache/http/HttpStatus.SC_REQUESTED_RANGE_NOT_SATISFIABLE,416,,,, +I,0,I:org/apache/http/HttpStatus.SC_RESET_CONTENT,205,,,, +I,0,I:org/apache/http/HttpStatus.SC_SEE_OTHER,303,,,, +I,0,I:org/apache/http/HttpStatus.SC_SERVICE_UNAVAILABLE,503,,,, +I,0,I:org/apache/http/HttpStatus.SC_SWITCHING_PROTOCOLS,101,,,, +I,0,I:org/apache/http/HttpStatus.SC_TEMPORARY_REDIRECT,307,,,, +I,0,I:org/apache/http/HttpStatus.SC_UNAUTHORIZED,401,,,, +I,0,I:org/apache/http/HttpStatus.SC_UNPROCESSABLE_ENTITY,422,,,, +I,0,I:org/apache/http/HttpStatus.SC_UNSUPPORTED_MEDIA_TYPE,415,,,, +I,0,I:org/apache/http/HttpStatus.SC_USE_PROXY,305,,,, +I,0,I:org/w3c/dom/TypeInfo.DERIVATION_EXTENSION,2,,,, +I,0,I:org/w3c/dom/TypeInfo.DERIVATION_LIST,8,,,, +I,0,I:org/w3c/dom/TypeInfo.DERIVATION_RESTRICTION,1,,,, +I,0,I:org/w3c/dom/TypeInfo.DERIVATION_UNION,4,,,, E,10,I:org/xmlpull/v1/XmlPullParser.CDSECT,5,Org.XmlPull.V1.XmlPullParserNode,Cdsect,keep, E,10,I:org/xmlpull/v1/XmlPullParser.COMMENT,9,Org.XmlPull.V1.XmlPullParserNode,Comment,keep, E,10,I:org/xmlpull/v1/XmlPullParser.DOCDECL,10,Org.XmlPull.V1.XmlPullParserNode,Docdecl,keep, @@ -14705,55 +15628,55 @@ E,10,java/awt/font/NumericShaper.TAMIL,256,Java.Awt.Font.Ranges,Tamil,remove, E,10,java/awt/font/NumericShaper.TELUGU,512,Java.Awt.Font.Ranges,Telugu,remove, E,10,java/awt/font/NumericShaper.THAI,4096,Java.Awt.Font.Ranges,Thai,remove, E,10,java/awt/font/NumericShaper.TIBETAN,16384,Java.Awt.Font.Ranges,Tibetan,remove, -?,0,java/io/PipedInputStream.PIPE_SIZE,1024,,,, +I,0,java/io/PipedInputStream.PIPE_SIZE,1024,,,, E,10,java/io/StreamTokenizer.TT_EOF,-1,Java.IO.TokenType,Eof,remove, E,10,java/io/StreamTokenizer.TT_EOL,10,Java.IO.TokenType,Eol,remove, E,10,java/io/StreamTokenizer.TT_NUMBER,-2,Java.IO.TokenType,Number,remove, E,10,java/io/StreamTokenizer.TT_WORD,-3,Java.IO.TokenType,Word,remove, -?,24,java/lang/Byte.BYTES,1,,,, -?,0,java/lang/Byte.SIZE,8,,,, -?,24,java/lang/Character.BYTES,2,,,, -?,0,java/lang/Character.MAX_CODE_POINT,1114111,,,, -?,0,java/lang/Character.MAX_RADIX,36,,,, -?,0,java/lang/Character.MIN_CODE_POINT,0,,,, -?,0,java/lang/Character.MIN_RADIX,2,,,, -?,0,java/lang/Character.MIN_SUPPLEMENTARY_CODE_POINT,65536,,,, -?,0,java/lang/Character.SIZE,16,,,, -?,24,java/lang/Double.BYTES,8,,,, -?,0,java/lang/Double.MAX_EXPONENT,1023,,,, -?,0,java/lang/Double.MIN_EXPONENT,-1022,,,, -?,0,java/lang/Double.SIZE,64,,,, -?,24,java/lang/Float.BYTES,4,,,, -?,0,java/lang/Float.MAX_EXPONENT,127,,,, -?,0,java/lang/Float.MIN_EXPONENT,-126,,,, -?,0,java/lang/Float.SIZE,32,,,, -?,24,java/lang/Integer.BYTES,4,,,, -?,0,java/lang/Integer.MAX_VALUE,2147483647,,,, -?,0,java/lang/Integer.MIN_VALUE,-2147483648,,,, -?,0,java/lang/Integer.SIZE,32,,,, +I,24,java/lang/Byte.BYTES,1,,,, +I,0,java/lang/Byte.SIZE,8,,,, +I,24,java/lang/Character.BYTES,2,,,, +I,0,java/lang/Character.MAX_CODE_POINT,1114111,,,, +I,0,java/lang/Character.MAX_RADIX,36,,,, +I,0,java/lang/Character.MIN_CODE_POINT,0,,,, +I,0,java/lang/Character.MIN_RADIX,2,,,, +I,0,java/lang/Character.MIN_SUPPLEMENTARY_CODE_POINT,65536,,,, +I,0,java/lang/Character.SIZE,16,,,, +I,24,java/lang/Double.BYTES,8,,,, +I,0,java/lang/Double.MAX_EXPONENT,1023,,,, +I,0,java/lang/Double.MIN_EXPONENT,-1022,,,, +I,0,java/lang/Double.SIZE,64,,,, +I,24,java/lang/Float.BYTES,4,,,, +I,0,java/lang/Float.MAX_EXPONENT,127,,,, +I,0,java/lang/Float.MIN_EXPONENT,-126,,,, +I,0,java/lang/Float.SIZE,32,,,, +I,24,java/lang/Integer.BYTES,4,,,, +I,0,java/lang/Integer.MAX_VALUE,2147483647,,,, +I,0,java/lang/Integer.MIN_VALUE,-2147483648,,,, +I,0,java/lang/Integer.SIZE,32,,,, E,26,java/lang/invoke/MethodHandles$Lookup.PACKAGE,8,Java.Lang.Invoke.MethodLookupModes,Package,remove, E,26,java/lang/invoke/MethodHandles$Lookup.PRIVATE,2,Java.Lang.Invoke.MethodLookupModes,Private,remove, E,26,java/lang/invoke/MethodHandles$Lookup.PROTECTED,4,Java.Lang.Invoke.MethodLookupModes,Protected,remove, E,26,java/lang/invoke/MethodHandles$Lookup.PUBLIC,1,Java.Lang.Invoke.MethodLookupModes,Public,remove, -?,24,java/lang/Long.BYTES,8,,,, -?,0,java/lang/Long.SIZE,64,,,, -?,0,java/lang/reflect/Modifier.ABSTRACT,1024,,,, -?,0,java/lang/reflect/Modifier.FINAL,16,,,, -?,0,java/lang/reflect/Modifier.INTERFACE,512,,,, -?,0,java/lang/reflect/Modifier.NATIVE,256,,,, -?,0,java/lang/reflect/Modifier.PRIVATE,2,,,, -?,0,java/lang/reflect/Modifier.PROTECTED,4,,,, -?,0,java/lang/reflect/Modifier.PUBLIC,1,,,, -?,0,java/lang/reflect/Modifier.STATIC,8,,,, -?,0,java/lang/reflect/Modifier.STRICT,2048,,,, -?,0,java/lang/reflect/Modifier.SYNCHRONIZED,32,,,, -?,0,java/lang/reflect/Modifier.TRANSIENT,128,,,, -?,0,java/lang/reflect/Modifier.VOLATILE,64,,,, -?,24,java/lang/Short.BYTES,2,,,, -?,0,java/lang/Short.SIZE,16,,,, -?,0,java/lang/Thread.MAX_PRIORITY,10,,,, -?,0,java/lang/Thread.MIN_PRIORITY,1,,,, -?,0,java/lang/Thread.NORM_PRIORITY,5,,,, +I,24,java/lang/Long.BYTES,8,,,, +I,0,java/lang/Long.SIZE,64,,,, +I,0,java/lang/reflect/Modifier.ABSTRACT,1024,,,, +I,0,java/lang/reflect/Modifier.FINAL,16,,,, +I,0,java/lang/reflect/Modifier.INTERFACE,512,,,, +I,0,java/lang/reflect/Modifier.NATIVE,256,,,, +I,0,java/lang/reflect/Modifier.PRIVATE,2,,,, +I,0,java/lang/reflect/Modifier.PROTECTED,4,,,, +I,0,java/lang/reflect/Modifier.PUBLIC,1,,,, +I,0,java/lang/reflect/Modifier.STATIC,8,,,, +I,0,java/lang/reflect/Modifier.STRICT,2048,,,, +I,0,java/lang/reflect/Modifier.SYNCHRONIZED,32,,,, +I,0,java/lang/reflect/Modifier.TRANSIENT,128,,,, +I,0,java/lang/reflect/Modifier.VOLATILE,64,,,, +I,24,java/lang/Short.BYTES,2,,,, +I,0,java/lang/Short.SIZE,16,,,, +I,0,java/lang/Thread.MAX_PRIORITY,10,,,, +I,0,java/lang/Thread.MIN_PRIORITY,1,,,, +I,0,java/lang/Thread.NORM_PRIORITY,5,,,, E,10,java/math/BigDecimal.ROUND_CEILING,2,Java.Math.RoundOptions,Ceiling,remove, E,10,java/math/BigDecimal.ROUND_DOWN,1,Java.Math.RoundOptions,Down,remove, E,10,java/math/BigDecimal.ROUND_FLOOR,3,Java.Math.RoundOptions,Floor,remove, @@ -14809,128 +15732,128 @@ E,10,java/nio/channels/SelectionKey.OP_WRITE,4,Java.Nio.Channels.Operations,Writ E,10,java/security/Signature.SIGN,2,Java.Security.SignatureState,Sign,remove, E,10,java/security/Signature.UNINITIALIZED,0,Java.Security.SignatureState,Uninitialized,remove, E,10,java/security/Signature.VERIFY,3,Java.Security.SignatureState,Verify,remove, -?,0,java/sql/Types.ARRAY,2003,,,, -?,0,java/sql/Types.BIGINT,-5,,,, -?,0,java/sql/Types.BINARY,-2,,,, -?,0,java/sql/Types.BIT,-7,,,, -?,0,java/sql/Types.BLOB,2004,,,, -?,0,java/sql/Types.BOOLEAN,16,,,, -?,0,java/sql/Types.CHAR,1,,,, -?,0,java/sql/Types.CLOB,2005,,,, -?,0,java/sql/Types.DATALINK,70,,,, -?,0,java/sql/Types.DATE,91,,,, -?,0,java/sql/Types.DECIMAL,3,,,, -?,0,java/sql/Types.DISTINCT,2001,,,, -?,0,java/sql/Types.DOUBLE,8,,,, -?,0,java/sql/Types.FLOAT,6,,,, -?,0,java/sql/Types.INTEGER,4,,,, -?,0,java/sql/Types.JAVA_OBJECT,2000,,,, -?,0,java/sql/Types.LONGNVARCHAR,-16,,,, -?,0,java/sql/Types.LONGVARBINARY,-4,,,, -?,0,java/sql/Types.LONGVARCHAR,-1,,,, -?,0,java/sql/Types.NCHAR,-15,,,, -?,0,java/sql/Types.NCLOB,2011,,,, -?,0,java/sql/Types.NULL,0,,,, -?,0,java/sql/Types.NUMERIC,2,,,, -?,0,java/sql/Types.NVARCHAR,-9,,,, -?,0,java/sql/Types.OTHER,1111,,,, -?,0,java/sql/Types.REAL,7,,,, -?,0,java/sql/Types.REF,2006,,,, -?,0,java/sql/Types.ROWID,-8,,,, -?,0,java/sql/Types.SMALLINT,5,,,, -?,0,java/sql/Types.SQLXML,2009,,,, -?,0,java/sql/Types.STRUCT,2002,,,, -?,0,java/sql/Types.TIME,92,,,, -?,0,java/sql/Types.TIMESTAMP,93,,,, -?,0,java/sql/Types.TINYINT,-6,,,, -?,0,java/sql/Types.VARBINARY,-3,,,, -?,0,java/sql/Types.VARCHAR,12,,,, -?,0,java/text/Bidi.DIRECTION_DEFAULT_LEFT_TO_RIGHT,-2,,,, -?,0,java/text/Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT,-1,,,, -?,0,java/text/Bidi.DIRECTION_LEFT_TO_RIGHT,0,,,, -?,0,java/text/Bidi.DIRECTION_RIGHT_TO_LEFT,1,,,, -?,0,java/text/BreakIterator.DONE,-1,,,, -?,0,java/text/CollationElementIterator.NULLORDER,-1,,,, -?,0,java/text/Collator.CANONICAL_DECOMPOSITION,1,,,, -?,0,java/text/Collator.FULL_DECOMPOSITION,2,,,, -?,0,java/text/Collator.IDENTICAL,3,,,, -?,0,java/text/Collator.NO_DECOMPOSITION,0,,,, -?,0,java/text/Collator.PRIMARY,0,,,, -?,0,java/text/Collator.SECONDARY,1,,,, -?,0,java/text/Collator.TERTIARY,2,,,, -?,0,java/text/DateFormat.AM_PM_FIELD,14,,,, -?,0,java/text/DateFormat.DATE_FIELD,3,,,, -?,0,java/text/DateFormat.DAY_OF_WEEK_FIELD,9,,,, -?,0,java/text/DateFormat.DAY_OF_WEEK_IN_MONTH_FIELD,11,,,, -?,0,java/text/DateFormat.DAY_OF_YEAR_FIELD,10,,,, -?,0,java/text/DateFormat.DEFAULT,2,,,, -?,0,java/text/DateFormat.ERA_FIELD,0,,,, -?,0,java/text/DateFormat.FULL,0,,,, -?,0,java/text/DateFormat.HOUR_OF_DAY0_FIELD,5,,,, -?,0,java/text/DateFormat.HOUR_OF_DAY1_FIELD,4,,,, -?,0,java/text/DateFormat.HOUR0_FIELD,16,,,, -?,0,java/text/DateFormat.HOUR1_FIELD,15,,,, -?,0,java/text/DateFormat.LONG,1,,,, -?,0,java/text/DateFormat.MEDIUM,2,,,, -?,0,java/text/DateFormat.MILLISECOND_FIELD,8,,,, -?,0,java/text/DateFormat.MINUTE_FIELD,6,,,, -?,0,java/text/DateFormat.MONTH_FIELD,2,,,, -?,0,java/text/DateFormat.SECOND_FIELD,7,,,, -?,0,java/text/DateFormat.SHORT,3,,,, -?,0,java/text/DateFormat.TIMEZONE_FIELD,17,,,, -?,0,java/text/DateFormat.WEEK_OF_MONTH_FIELD,13,,,, -?,0,java/text/DateFormat.WEEK_OF_YEAR_FIELD,12,,,, -?,0,java/text/DateFormat.YEAR_FIELD,1,,,, -?,0,java/text/NumberFormat.FRACTION_FIELD,1,,,, -?,0,java/text/NumberFormat.INTEGER_FIELD,0,,,, -?,26,java/time/Year.MAX_VALUE,999999999,,,, -?,26,java/time/Year.MIN_VALUE,-999999999,,,, +I,0,java/sql/Types.ARRAY,2003,,,, +I,0,java/sql/Types.BIGINT,-5,,,, +I,0,java/sql/Types.BINARY,-2,,,, +I,0,java/sql/Types.BIT,-7,,,, +I,0,java/sql/Types.BLOB,2004,,,, +I,0,java/sql/Types.BOOLEAN,16,,,, +I,0,java/sql/Types.CHAR,1,,,, +I,0,java/sql/Types.CLOB,2005,,,, +I,0,java/sql/Types.DATALINK,70,,,, +I,0,java/sql/Types.DATE,91,,,, +I,0,java/sql/Types.DECIMAL,3,,,, +I,0,java/sql/Types.DISTINCT,2001,,,, +I,0,java/sql/Types.DOUBLE,8,,,, +I,0,java/sql/Types.FLOAT,6,,,, +I,0,java/sql/Types.INTEGER,4,,,, +I,0,java/sql/Types.JAVA_OBJECT,2000,,,, +I,0,java/sql/Types.LONGNVARCHAR,-16,,,, +I,0,java/sql/Types.LONGVARBINARY,-4,,,, +I,0,java/sql/Types.LONGVARCHAR,-1,,,, +I,0,java/sql/Types.NCHAR,-15,,,, +I,0,java/sql/Types.NCLOB,2011,,,, +I,0,java/sql/Types.NULL,0,,,, +I,0,java/sql/Types.NUMERIC,2,,,, +I,0,java/sql/Types.NVARCHAR,-9,,,, +I,0,java/sql/Types.OTHER,1111,,,, +I,0,java/sql/Types.REAL,7,,,, +I,0,java/sql/Types.REF,2006,,,, +I,0,java/sql/Types.ROWID,-8,,,, +I,0,java/sql/Types.SMALLINT,5,,,, +I,0,java/sql/Types.SQLXML,2009,,,, +I,0,java/sql/Types.STRUCT,2002,,,, +I,0,java/sql/Types.TIME,92,,,, +I,0,java/sql/Types.TIMESTAMP,93,,,, +I,0,java/sql/Types.TINYINT,-6,,,, +I,0,java/sql/Types.VARBINARY,-3,,,, +I,0,java/sql/Types.VARCHAR,12,,,, +I,0,java/text/Bidi.DIRECTION_DEFAULT_LEFT_TO_RIGHT,-2,,,, +I,0,java/text/Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT,-1,,,, +I,0,java/text/Bidi.DIRECTION_LEFT_TO_RIGHT,0,,,, +I,0,java/text/Bidi.DIRECTION_RIGHT_TO_LEFT,1,,,, +I,0,java/text/BreakIterator.DONE,-1,,,, +I,0,java/text/CollationElementIterator.NULLORDER,-1,,,, +I,0,java/text/Collator.CANONICAL_DECOMPOSITION,1,,,, +I,0,java/text/Collator.FULL_DECOMPOSITION,2,,,, +I,0,java/text/Collator.IDENTICAL,3,,,, +I,0,java/text/Collator.NO_DECOMPOSITION,0,,,, +I,0,java/text/Collator.PRIMARY,0,,,, +I,0,java/text/Collator.SECONDARY,1,,,, +I,0,java/text/Collator.TERTIARY,2,,,, +I,0,java/text/DateFormat.AM_PM_FIELD,14,,,, +I,0,java/text/DateFormat.DATE_FIELD,3,,,, +I,0,java/text/DateFormat.DAY_OF_WEEK_FIELD,9,,,, +I,0,java/text/DateFormat.DAY_OF_WEEK_IN_MONTH_FIELD,11,,,, +I,0,java/text/DateFormat.DAY_OF_YEAR_FIELD,10,,,, +I,0,java/text/DateFormat.DEFAULT,2,,,, +I,0,java/text/DateFormat.ERA_FIELD,0,,,, +I,0,java/text/DateFormat.FULL,0,,,, +I,0,java/text/DateFormat.HOUR_OF_DAY0_FIELD,5,,,, +I,0,java/text/DateFormat.HOUR_OF_DAY1_FIELD,4,,,, +I,0,java/text/DateFormat.HOUR0_FIELD,16,,,, +I,0,java/text/DateFormat.HOUR1_FIELD,15,,,, +I,0,java/text/DateFormat.LONG,1,,,, +I,0,java/text/DateFormat.MEDIUM,2,,,, +I,0,java/text/DateFormat.MILLISECOND_FIELD,8,,,, +I,0,java/text/DateFormat.MINUTE_FIELD,6,,,, +I,0,java/text/DateFormat.MONTH_FIELD,2,,,, +I,0,java/text/DateFormat.SECOND_FIELD,7,,,, +I,0,java/text/DateFormat.SHORT,3,,,, +I,0,java/text/DateFormat.TIMEZONE_FIELD,17,,,, +I,0,java/text/DateFormat.WEEK_OF_MONTH_FIELD,13,,,, +I,0,java/text/DateFormat.WEEK_OF_YEAR_FIELD,12,,,, +I,0,java/text/DateFormat.YEAR_FIELD,1,,,, +I,0,java/text/NumberFormat.FRACTION_FIELD,1,,,, +I,0,java/text/NumberFormat.INTEGER_FIELD,0,,,, +I,26,java/time/Year.MAX_VALUE,999999999,,,, +I,26,java/time/Year.MIN_VALUE,-999999999,,,, E,10,java/util/Calendar.ALL_STYLES,0,Java.Util.CalendarStyle,AllStyles,remove, -?,0,java/util/Calendar.AM,0,,,, +I,0,java/util/Calendar.AM,0,,,, E,10,java/util/Calendar.AM_PM,9,Java.Util.CalendarField,AmPm,remove, -?,0,java/util/Calendar.APRIL,3,,,, -?,0,java/util/Calendar.AUGUST,7,,,, +I,0,java/util/Calendar.APRIL,3,,,, +I,0,java/util/Calendar.AUGUST,7,,,, E,10,java/util/Calendar.DATE,5,Java.Util.CalendarField,Date,remove, E,10,java/util/Calendar.DAY_OF_MONTH,5,Java.Util.CalendarField,DayOfMonth,remove, E,10,java/util/Calendar.DAY_OF_WEEK,7,Java.Util.CalendarField,DayOfWeek,remove, E,10,java/util/Calendar.DAY_OF_WEEK_IN_MONTH,8,Java.Util.CalendarField,DayOfWeekInMonth,remove, E,10,java/util/Calendar.DAY_OF_YEAR,6,Java.Util.CalendarField,DayOfYear,remove, -?,0,java/util/Calendar.DECEMBER,11,,,, +I,0,java/util/Calendar.DECEMBER,11,,,, E,10,java/util/Calendar.DST_OFFSET,16,Java.Util.CalendarField,DstOffset,remove, E,10,java/util/Calendar.ERA,0,Java.Util.CalendarField,Era,remove, -?,0,java/util/Calendar.FEBRUARY,1,,,, -?,0,java/util/Calendar.FIELD_COUNT,17,,,, -?,0,java/util/Calendar.FRIDAY,6,,,, +I,0,java/util/Calendar.FEBRUARY,1,,,, +I,0,java/util/Calendar.FIELD_COUNT,17,,,, +I,0,java/util/Calendar.FRIDAY,6,,,, E,10,java/util/Calendar.HOUR,10,Java.Util.CalendarField,Hour,remove, E,10,java/util/Calendar.HOUR_OF_DAY,11,Java.Util.CalendarField,HourOfDay,remove, -?,0,java/util/Calendar.JANUARY,0,,,, -?,0,java/util/Calendar.JULY,6,,,, -?,0,java/util/Calendar.JUNE,5,,,, +I,0,java/util/Calendar.JANUARY,0,,,, +I,0,java/util/Calendar.JULY,6,,,, +I,0,java/util/Calendar.JUNE,5,,,, E,10,java/util/Calendar.LONG,2,Java.Util.CalendarStyle,Long,remove, -?,26,java/util/Calendar.LONG_FORMAT,2,,,, -?,26,java/util/Calendar.LONG_STANDALONE,32770,,,, -?,0,java/util/Calendar.MARCH,2,,,, -?,0,java/util/Calendar.MAY,4,,,, +I,26,java/util/Calendar.LONG_FORMAT,2,,,, +I,26,java/util/Calendar.LONG_STANDALONE,32770,,,, +I,0,java/util/Calendar.MARCH,2,,,, +I,0,java/util/Calendar.MAY,4,,,, E,10,java/util/Calendar.MILLISECOND,14,Java.Util.CalendarField,Millisecond,remove, E,10,java/util/Calendar.MINUTE,12,Java.Util.CalendarField,Minute,remove, -?,0,java/util/Calendar.MONDAY,2,,,, +I,0,java/util/Calendar.MONDAY,2,,,, E,10,java/util/Calendar.MONTH,2,Java.Util.CalendarField,Month,remove, -?,26,java/util/Calendar.NARROW_FORMAT,4,,,, -?,26,java/util/Calendar.NARROW_STANDALONE,32772,,,, -?,0,java/util/Calendar.NOVEMBER,10,,,, -?,0,java/util/Calendar.OCTOBER,9,,,, -?,0,java/util/Calendar.PM,1,,,, -?,0,java/util/Calendar.SATURDAY,7,,,, +I,26,java/util/Calendar.NARROW_FORMAT,4,,,, +I,26,java/util/Calendar.NARROW_STANDALONE,32772,,,, +I,0,java/util/Calendar.NOVEMBER,10,,,, +I,0,java/util/Calendar.OCTOBER,9,,,, +I,0,java/util/Calendar.PM,1,,,, +I,0,java/util/Calendar.SATURDAY,7,,,, E,10,java/util/Calendar.SECOND,13,Java.Util.CalendarField,Second,remove, -?,0,java/util/Calendar.SEPTEMBER,8,,,, +I,0,java/util/Calendar.SEPTEMBER,8,,,, E,10,java/util/Calendar.SHORT,1,Java.Util.CalendarStyle,Short,remove, -?,26,java/util/Calendar.SHORT_FORMAT,1,,,, -?,26,java/util/Calendar.SHORT_STANDALONE,32769,,,, -?,0,java/util/Calendar.SUNDAY,1,,,, -?,0,java/util/Calendar.THURSDAY,5,,,, -?,0,java/util/Calendar.TUESDAY,3,,,, -?,0,java/util/Calendar.UNDECIMBER,12,,,, -?,0,java/util/Calendar.WEDNESDAY,4,,,, +I,26,java/util/Calendar.SHORT_FORMAT,1,,,, +I,26,java/util/Calendar.SHORT_STANDALONE,32769,,,, +I,0,java/util/Calendar.SUNDAY,1,,,, +I,0,java/util/Calendar.THURSDAY,5,,,, +I,0,java/util/Calendar.TUESDAY,3,,,, +I,0,java/util/Calendar.UNDECIMBER,12,,,, +I,0,java/util/Calendar.WEDNESDAY,4,,,, E,10,java/util/Calendar.WEEK_OF_MONTH,4,Java.Util.CalendarField,WeekOfMonth,remove, E,10,java/util/Calendar.WEEK_OF_YEAR,3,Java.Util.CalendarField,WeekOfYear,remove, E,10,java/util/Calendar.YEAR,1,Java.Util.CalendarField,Year,remove, @@ -14938,161 +15861,161 @@ E,10,java/util/Calendar.ZONE_OFFSET,15,Java.Util.CalendarField,ZoneOffset,remove E,10,java/util/FormattableFlags.ALTERNATE,4,Java.Util.FormatFlags,Alternate,remove,flags E,10,java/util/FormattableFlags.LEFT_JUSTIFY,1,Java.Util.FormatFlags,LeftJustify,remove,flags E,10,java/util/FormattableFlags.UPPERCASE,2,Java.Util.FormatFlags,Uppercase,remove,flags -?,0,java/util/GregorianCalendar.AD,1,,,, -?,0,java/util/GregorianCalendar.BC,0,,,, -?,29,java/util/jar/JarEntry.CENATT,36,,,, -?,29,java/util/jar/JarEntry.CENATX,38,,,, -?,29,java/util/jar/JarEntry.CENCOM,32,,,, -?,29,java/util/jar/JarEntry.CENCRC,16,,,, -?,29,java/util/jar/JarEntry.CENDSK,34,,,, -?,29,java/util/jar/JarEntry.CENEXT,30,,,, -?,29,java/util/jar/JarEntry.CENFLG,8,,,, -?,29,java/util/jar/JarEntry.CENHDR,46,,,, -?,29,java/util/jar/JarEntry.CENHOW,10,,,, -?,29,java/util/jar/JarEntry.CENLEN,24,,,, -?,29,java/util/jar/JarEntry.CENNAM,28,,,, -?,29,java/util/jar/JarEntry.CENOFF,42,,,, -?,29,java/util/jar/JarEntry.CENSIZ,20,,,, -?,29,java/util/jar/JarEntry.CENTIM,12,,,, -?,29,java/util/jar/JarEntry.CENVEM,4,,,, -?,29,java/util/jar/JarEntry.CENVER,6,,,, -?,29,java/util/jar/JarEntry.ENDCOM,20,,,, -?,29,java/util/jar/JarEntry.ENDHDR,22,,,, -?,29,java/util/jar/JarEntry.ENDOFF,16,,,, -?,29,java/util/jar/JarEntry.ENDSIZ,12,,,, -?,29,java/util/jar/JarEntry.ENDSUB,8,,,, -?,29,java/util/jar/JarEntry.ENDTOT,10,,,, -?,29,java/util/jar/JarEntry.EXTCRC,4,,,, -?,29,java/util/jar/JarEntry.EXTHDR,16,,,, -?,29,java/util/jar/JarEntry.EXTLEN,12,,,, -?,29,java/util/jar/JarEntry.EXTSIZ,8,,,, -?,29,java/util/jar/JarEntry.LOCCRC,14,,,, -?,29,java/util/jar/JarEntry.LOCEXT,28,,,, -?,29,java/util/jar/JarEntry.LOCFLG,6,,,, -?,29,java/util/jar/JarEntry.LOCHDR,30,,,, -?,29,java/util/jar/JarEntry.LOCHOW,8,,,, -?,29,java/util/jar/JarEntry.LOCLEN,22,,,, -?,29,java/util/jar/JarEntry.LOCNAM,26,,,, -?,29,java/util/jar/JarEntry.LOCSIZ,18,,,, -?,29,java/util/jar/JarEntry.LOCTIM,10,,,, -?,29,java/util/jar/JarEntry.LOCVER,4,,,, -?,29,java/util/jar/JarFile.CENATT,36,,,, -?,29,java/util/jar/JarFile.CENATX,38,,,, -?,29,java/util/jar/JarFile.CENCOM,32,,,, -?,29,java/util/jar/JarFile.CENCRC,16,,,, -?,29,java/util/jar/JarFile.CENDSK,34,,,, -?,29,java/util/jar/JarFile.CENEXT,30,,,, -?,29,java/util/jar/JarFile.CENFLG,8,,,, -?,29,java/util/jar/JarFile.CENHDR,46,,,, -?,29,java/util/jar/JarFile.CENHOW,10,,,, -?,29,java/util/jar/JarFile.CENLEN,24,,,, -?,29,java/util/jar/JarFile.CENNAM,28,,,, -?,29,java/util/jar/JarFile.CENOFF,42,,,, -?,29,java/util/jar/JarFile.CENSIZ,20,,,, -?,29,java/util/jar/JarFile.CENTIM,12,,,, -?,29,java/util/jar/JarFile.CENVEM,4,,,, -?,29,java/util/jar/JarFile.CENVER,6,,,, -?,29,java/util/jar/JarFile.ENDCOM,20,,,, -?,29,java/util/jar/JarFile.ENDHDR,22,,,, -?,29,java/util/jar/JarFile.ENDOFF,16,,,, -?,29,java/util/jar/JarFile.ENDSIZ,12,,,, -?,29,java/util/jar/JarFile.ENDSUB,8,,,, -?,29,java/util/jar/JarFile.ENDTOT,10,,,, -?,29,java/util/jar/JarFile.EXTCRC,4,,,, -?,29,java/util/jar/JarFile.EXTHDR,16,,,, -?,29,java/util/jar/JarFile.EXTLEN,12,,,, -?,29,java/util/jar/JarFile.EXTSIZ,8,,,, -?,29,java/util/jar/JarFile.LOCCRC,14,,,, -?,29,java/util/jar/JarFile.LOCEXT,28,,,, -?,29,java/util/jar/JarFile.LOCFLG,6,,,, -?,29,java/util/jar/JarFile.LOCHDR,30,,,, -?,29,java/util/jar/JarFile.LOCHOW,8,,,, -?,29,java/util/jar/JarFile.LOCLEN,22,,,, -?,29,java/util/jar/JarFile.LOCNAM,26,,,, -?,29,java/util/jar/JarFile.LOCSIZ,18,,,, -?,29,java/util/jar/JarFile.LOCTIM,10,,,, -?,29,java/util/jar/JarFile.LOCVER,4,,,, -?,29,java/util/jar/JarInputStream.CENATT,36,,,, -?,29,java/util/jar/JarInputStream.CENATX,38,,,, -?,29,java/util/jar/JarInputStream.CENCOM,32,,,, -?,29,java/util/jar/JarInputStream.CENCRC,16,,,, -?,29,java/util/jar/JarInputStream.CENDSK,34,,,, -?,29,java/util/jar/JarInputStream.CENEXT,30,,,, -?,29,java/util/jar/JarInputStream.CENFLG,8,,,, -?,29,java/util/jar/JarInputStream.CENHDR,46,,,, -?,29,java/util/jar/JarInputStream.CENHOW,10,,,, -?,29,java/util/jar/JarInputStream.CENLEN,24,,,, -?,29,java/util/jar/JarInputStream.CENNAM,28,,,, -?,29,java/util/jar/JarInputStream.CENOFF,42,,,, -?,29,java/util/jar/JarInputStream.CENSIZ,20,,,, -?,29,java/util/jar/JarInputStream.CENTIM,12,,,, -?,29,java/util/jar/JarInputStream.CENVEM,4,,,, -?,29,java/util/jar/JarInputStream.CENVER,6,,,, -?,29,java/util/jar/JarInputStream.ENDCOM,20,,,, -?,29,java/util/jar/JarInputStream.ENDHDR,22,,,, -?,29,java/util/jar/JarInputStream.ENDOFF,16,,,, -?,29,java/util/jar/JarInputStream.ENDSIZ,12,,,, -?,29,java/util/jar/JarInputStream.ENDSUB,8,,,, -?,29,java/util/jar/JarInputStream.ENDTOT,10,,,, -?,29,java/util/jar/JarInputStream.EXTCRC,4,,,, -?,29,java/util/jar/JarInputStream.EXTHDR,16,,,, -?,29,java/util/jar/JarInputStream.EXTLEN,12,,,, -?,29,java/util/jar/JarInputStream.EXTSIZ,8,,,, -?,29,java/util/jar/JarInputStream.LOCCRC,14,,,, -?,29,java/util/jar/JarInputStream.LOCEXT,28,,,, -?,29,java/util/jar/JarInputStream.LOCFLG,6,,,, -?,29,java/util/jar/JarInputStream.LOCHDR,30,,,, -?,29,java/util/jar/JarInputStream.LOCHOW,8,,,, -?,29,java/util/jar/JarInputStream.LOCLEN,22,,,, -?,29,java/util/jar/JarInputStream.LOCNAM,26,,,, -?,29,java/util/jar/JarInputStream.LOCSIZ,18,,,, -?,29,java/util/jar/JarInputStream.LOCTIM,10,,,, -?,29,java/util/jar/JarInputStream.LOCVER,4,,,, -?,29,java/util/jar/JarOutputStream.CENATT,36,,,, -?,29,java/util/jar/JarOutputStream.CENATX,38,,,, -?,29,java/util/jar/JarOutputStream.CENCOM,32,,,, -?,29,java/util/jar/JarOutputStream.CENCRC,16,,,, -?,29,java/util/jar/JarOutputStream.CENDSK,34,,,, -?,29,java/util/jar/JarOutputStream.CENEXT,30,,,, -?,29,java/util/jar/JarOutputStream.CENFLG,8,,,, -?,29,java/util/jar/JarOutputStream.CENHDR,46,,,, -?,29,java/util/jar/JarOutputStream.CENHOW,10,,,, -?,29,java/util/jar/JarOutputStream.CENLEN,24,,,, -?,29,java/util/jar/JarOutputStream.CENNAM,28,,,, -?,29,java/util/jar/JarOutputStream.CENOFF,42,,,, -?,29,java/util/jar/JarOutputStream.CENSIZ,20,,,, -?,29,java/util/jar/JarOutputStream.CENTIM,12,,,, -?,29,java/util/jar/JarOutputStream.CENVEM,4,,,, -?,29,java/util/jar/JarOutputStream.CENVER,6,,,, -?,29,java/util/jar/JarOutputStream.ENDCOM,20,,,, -?,29,java/util/jar/JarOutputStream.ENDHDR,22,,,, -?,29,java/util/jar/JarOutputStream.ENDOFF,16,,,, -?,29,java/util/jar/JarOutputStream.ENDSIZ,12,,,, -?,29,java/util/jar/JarOutputStream.ENDSUB,8,,,, -?,29,java/util/jar/JarOutputStream.ENDTOT,10,,,, -?,29,java/util/jar/JarOutputStream.EXTCRC,4,,,, -?,29,java/util/jar/JarOutputStream.EXTHDR,16,,,, -?,29,java/util/jar/JarOutputStream.EXTLEN,12,,,, -?,29,java/util/jar/JarOutputStream.EXTSIZ,8,,,, -?,29,java/util/jar/JarOutputStream.LOCCRC,14,,,, -?,29,java/util/jar/JarOutputStream.LOCEXT,28,,,, -?,29,java/util/jar/JarOutputStream.LOCFLG,6,,,, -?,29,java/util/jar/JarOutputStream.LOCHDR,30,,,, -?,29,java/util/jar/JarOutputStream.LOCHOW,8,,,, -?,29,java/util/jar/JarOutputStream.LOCLEN,22,,,, -?,29,java/util/jar/JarOutputStream.LOCNAM,26,,,, -?,29,java/util/jar/JarOutputStream.LOCSIZ,18,,,, -?,29,java/util/jar/JarOutputStream.LOCTIM,10,,,, -?,29,java/util/jar/JarOutputStream.LOCVER,4,,,, -?,0,java/util/logging/ErrorManager.CLOSE_FAILURE,3,,,, -?,0,java/util/logging/ErrorManager.FLUSH_FAILURE,2,,,, -?,0,java/util/logging/ErrorManager.FORMAT_FAILURE,5,,,, -?,0,java/util/logging/ErrorManager.GENERIC_FAILURE,0,,,, -?,0,java/util/logging/ErrorManager.OPEN_FAILURE,4,,,, -?,0,java/util/logging/ErrorManager.WRITE_FAILURE,1,,,, -?,0,java/util/prefs/Preferences.MAX_KEY_LENGTH,80,,,, -?,0,java/util/prefs/Preferences.MAX_NAME_LENGTH,80,,,, -?,0,java/util/prefs/Preferences.MAX_VALUE_LENGTH,8192,,,, +I,0,java/util/GregorianCalendar.AD,1,,,, +I,0,java/util/GregorianCalendar.BC,0,,,, +I,29,java/util/jar/JarEntry.CENATT,36,,,, +I,29,java/util/jar/JarEntry.CENATX,38,,,, +I,29,java/util/jar/JarEntry.CENCOM,32,,,, +I,29,java/util/jar/JarEntry.CENCRC,16,,,, +I,29,java/util/jar/JarEntry.CENDSK,34,,,, +I,29,java/util/jar/JarEntry.CENEXT,30,,,, +I,29,java/util/jar/JarEntry.CENFLG,8,,,, +I,29,java/util/jar/JarEntry.CENHDR,46,,,, +I,29,java/util/jar/JarEntry.CENHOW,10,,,, +I,29,java/util/jar/JarEntry.CENLEN,24,,,, +I,29,java/util/jar/JarEntry.CENNAM,28,,,, +I,29,java/util/jar/JarEntry.CENOFF,42,,,, +I,29,java/util/jar/JarEntry.CENSIZ,20,,,, +I,29,java/util/jar/JarEntry.CENTIM,12,,,, +I,29,java/util/jar/JarEntry.CENVEM,4,,,, +I,29,java/util/jar/JarEntry.CENVER,6,,,, +I,29,java/util/jar/JarEntry.ENDCOM,20,,,, +I,29,java/util/jar/JarEntry.ENDHDR,22,,,, +I,29,java/util/jar/JarEntry.ENDOFF,16,,,, +I,29,java/util/jar/JarEntry.ENDSIZ,12,,,, +I,29,java/util/jar/JarEntry.ENDSUB,8,,,, +I,29,java/util/jar/JarEntry.ENDTOT,10,,,, +I,29,java/util/jar/JarEntry.EXTCRC,4,,,, +I,29,java/util/jar/JarEntry.EXTHDR,16,,,, +I,29,java/util/jar/JarEntry.EXTLEN,12,,,, +I,29,java/util/jar/JarEntry.EXTSIZ,8,,,, +I,29,java/util/jar/JarEntry.LOCCRC,14,,,, +I,29,java/util/jar/JarEntry.LOCEXT,28,,,, +I,29,java/util/jar/JarEntry.LOCFLG,6,,,, +I,29,java/util/jar/JarEntry.LOCHDR,30,,,, +I,29,java/util/jar/JarEntry.LOCHOW,8,,,, +I,29,java/util/jar/JarEntry.LOCLEN,22,,,, +I,29,java/util/jar/JarEntry.LOCNAM,26,,,, +I,29,java/util/jar/JarEntry.LOCSIZ,18,,,, +I,29,java/util/jar/JarEntry.LOCTIM,10,,,, +I,29,java/util/jar/JarEntry.LOCVER,4,,,, +I,29,java/util/jar/JarFile.CENATT,36,,,, +I,29,java/util/jar/JarFile.CENATX,38,,,, +I,29,java/util/jar/JarFile.CENCOM,32,,,, +I,29,java/util/jar/JarFile.CENCRC,16,,,, +I,29,java/util/jar/JarFile.CENDSK,34,,,, +I,29,java/util/jar/JarFile.CENEXT,30,,,, +I,29,java/util/jar/JarFile.CENFLG,8,,,, +I,29,java/util/jar/JarFile.CENHDR,46,,,, +I,29,java/util/jar/JarFile.CENHOW,10,,,, +I,29,java/util/jar/JarFile.CENLEN,24,,,, +I,29,java/util/jar/JarFile.CENNAM,28,,,, +I,29,java/util/jar/JarFile.CENOFF,42,,,, +I,29,java/util/jar/JarFile.CENSIZ,20,,,, +I,29,java/util/jar/JarFile.CENTIM,12,,,, +I,29,java/util/jar/JarFile.CENVEM,4,,,, +I,29,java/util/jar/JarFile.CENVER,6,,,, +I,29,java/util/jar/JarFile.ENDCOM,20,,,, +I,29,java/util/jar/JarFile.ENDHDR,22,,,, +I,29,java/util/jar/JarFile.ENDOFF,16,,,, +I,29,java/util/jar/JarFile.ENDSIZ,12,,,, +I,29,java/util/jar/JarFile.ENDSUB,8,,,, +I,29,java/util/jar/JarFile.ENDTOT,10,,,, +I,29,java/util/jar/JarFile.EXTCRC,4,,,, +I,29,java/util/jar/JarFile.EXTHDR,16,,,, +I,29,java/util/jar/JarFile.EXTLEN,12,,,, +I,29,java/util/jar/JarFile.EXTSIZ,8,,,, +I,29,java/util/jar/JarFile.LOCCRC,14,,,, +I,29,java/util/jar/JarFile.LOCEXT,28,,,, +I,29,java/util/jar/JarFile.LOCFLG,6,,,, +I,29,java/util/jar/JarFile.LOCHDR,30,,,, +I,29,java/util/jar/JarFile.LOCHOW,8,,,, +I,29,java/util/jar/JarFile.LOCLEN,22,,,, +I,29,java/util/jar/JarFile.LOCNAM,26,,,, +I,29,java/util/jar/JarFile.LOCSIZ,18,,,, +I,29,java/util/jar/JarFile.LOCTIM,10,,,, +I,29,java/util/jar/JarFile.LOCVER,4,,,, +I,29,java/util/jar/JarInputStream.CENATT,36,,,, +I,29,java/util/jar/JarInputStream.CENATX,38,,,, +I,29,java/util/jar/JarInputStream.CENCOM,32,,,, +I,29,java/util/jar/JarInputStream.CENCRC,16,,,, +I,29,java/util/jar/JarInputStream.CENDSK,34,,,, +I,29,java/util/jar/JarInputStream.CENEXT,30,,,, +I,29,java/util/jar/JarInputStream.CENFLG,8,,,, +I,29,java/util/jar/JarInputStream.CENHDR,46,,,, +I,29,java/util/jar/JarInputStream.CENHOW,10,,,, +I,29,java/util/jar/JarInputStream.CENLEN,24,,,, +I,29,java/util/jar/JarInputStream.CENNAM,28,,,, +I,29,java/util/jar/JarInputStream.CENOFF,42,,,, +I,29,java/util/jar/JarInputStream.CENSIZ,20,,,, +I,29,java/util/jar/JarInputStream.CENTIM,12,,,, +I,29,java/util/jar/JarInputStream.CENVEM,4,,,, +I,29,java/util/jar/JarInputStream.CENVER,6,,,, +I,29,java/util/jar/JarInputStream.ENDCOM,20,,,, +I,29,java/util/jar/JarInputStream.ENDHDR,22,,,, +I,29,java/util/jar/JarInputStream.ENDOFF,16,,,, +I,29,java/util/jar/JarInputStream.ENDSIZ,12,,,, +I,29,java/util/jar/JarInputStream.ENDSUB,8,,,, +I,29,java/util/jar/JarInputStream.ENDTOT,10,,,, +I,29,java/util/jar/JarInputStream.EXTCRC,4,,,, +I,29,java/util/jar/JarInputStream.EXTHDR,16,,,, +I,29,java/util/jar/JarInputStream.EXTLEN,12,,,, +I,29,java/util/jar/JarInputStream.EXTSIZ,8,,,, +I,29,java/util/jar/JarInputStream.LOCCRC,14,,,, +I,29,java/util/jar/JarInputStream.LOCEXT,28,,,, +I,29,java/util/jar/JarInputStream.LOCFLG,6,,,, +I,29,java/util/jar/JarInputStream.LOCHDR,30,,,, +I,29,java/util/jar/JarInputStream.LOCHOW,8,,,, +I,29,java/util/jar/JarInputStream.LOCLEN,22,,,, +I,29,java/util/jar/JarInputStream.LOCNAM,26,,,, +I,29,java/util/jar/JarInputStream.LOCSIZ,18,,,, +I,29,java/util/jar/JarInputStream.LOCTIM,10,,,, +I,29,java/util/jar/JarInputStream.LOCVER,4,,,, +I,29,java/util/jar/JarOutputStream.CENATT,36,,,, +I,29,java/util/jar/JarOutputStream.CENATX,38,,,, +I,29,java/util/jar/JarOutputStream.CENCOM,32,,,, +I,29,java/util/jar/JarOutputStream.CENCRC,16,,,, +I,29,java/util/jar/JarOutputStream.CENDSK,34,,,, +I,29,java/util/jar/JarOutputStream.CENEXT,30,,,, +I,29,java/util/jar/JarOutputStream.CENFLG,8,,,, +I,29,java/util/jar/JarOutputStream.CENHDR,46,,,, +I,29,java/util/jar/JarOutputStream.CENHOW,10,,,, +I,29,java/util/jar/JarOutputStream.CENLEN,24,,,, +I,29,java/util/jar/JarOutputStream.CENNAM,28,,,, +I,29,java/util/jar/JarOutputStream.CENOFF,42,,,, +I,29,java/util/jar/JarOutputStream.CENSIZ,20,,,, +I,29,java/util/jar/JarOutputStream.CENTIM,12,,,, +I,29,java/util/jar/JarOutputStream.CENVEM,4,,,, +I,29,java/util/jar/JarOutputStream.CENVER,6,,,, +I,29,java/util/jar/JarOutputStream.ENDCOM,20,,,, +I,29,java/util/jar/JarOutputStream.ENDHDR,22,,,, +I,29,java/util/jar/JarOutputStream.ENDOFF,16,,,, +I,29,java/util/jar/JarOutputStream.ENDSIZ,12,,,, +I,29,java/util/jar/JarOutputStream.ENDSUB,8,,,, +I,29,java/util/jar/JarOutputStream.ENDTOT,10,,,, +I,29,java/util/jar/JarOutputStream.EXTCRC,4,,,, +I,29,java/util/jar/JarOutputStream.EXTHDR,16,,,, +I,29,java/util/jar/JarOutputStream.EXTLEN,12,,,, +I,29,java/util/jar/JarOutputStream.EXTSIZ,8,,,, +I,29,java/util/jar/JarOutputStream.LOCCRC,14,,,, +I,29,java/util/jar/JarOutputStream.LOCEXT,28,,,, +I,29,java/util/jar/JarOutputStream.LOCFLG,6,,,, +I,29,java/util/jar/JarOutputStream.LOCHDR,30,,,, +I,29,java/util/jar/JarOutputStream.LOCHOW,8,,,, +I,29,java/util/jar/JarOutputStream.LOCLEN,22,,,, +I,29,java/util/jar/JarOutputStream.LOCNAM,26,,,, +I,29,java/util/jar/JarOutputStream.LOCSIZ,18,,,, +I,29,java/util/jar/JarOutputStream.LOCTIM,10,,,, +I,29,java/util/jar/JarOutputStream.LOCVER,4,,,, +I,0,java/util/logging/ErrorManager.CLOSE_FAILURE,3,,,, +I,0,java/util/logging/ErrorManager.FLUSH_FAILURE,2,,,, +I,0,java/util/logging/ErrorManager.FORMAT_FAILURE,5,,,, +I,0,java/util/logging/ErrorManager.GENERIC_FAILURE,0,,,, +I,0,java/util/logging/ErrorManager.OPEN_FAILURE,4,,,, +I,0,java/util/logging/ErrorManager.WRITE_FAILURE,1,,,, +I,0,java/util/prefs/Preferences.MAX_KEY_LENGTH,80,,,, +I,0,java/util/prefs/Preferences.MAX_NAME_LENGTH,80,,,, +I,0,java/util/prefs/Preferences.MAX_VALUE_LENGTH,8192,,,, E,10,java/util/regex/Pattern.CANON_EQ,128,Java.Util.Regex.RegexOptions,CanonEq,remove, E,10,java/util/regex/Pattern.CASE_INSENSITIVE,2,Java.Util.Regex.RegexOptions,CaseInsensitive,remove, E,10,java/util/regex/Pattern.COMMENTS,4,Java.Util.Regex.RegexOptions,Comments,remove, @@ -15107,168 +16030,168 @@ E,10,java/util/SimpleTimeZone.UTC_TIME,2,Java.Util.TimeZoneKind,UtcTime,remove, E,10,java/util/SimpleTimeZone.WALL_TIME,0,Java.Util.TimeZoneKind,WallTime,remove, E,10,java/util/TimeZone.LONG,1,Java.Util.TimeZoneStyle,Long,remove, E,10,java/util/TimeZone.SHORT,0,Java.Util.TimeZoneStyle,Short,remove, -?,0,java/util/zip/Deflater.BEST_COMPRESSION,9,,,, -?,0,java/util/zip/Deflater.BEST_SPEED,1,,,, -?,0,java/util/zip/Deflater.DEFAULT_COMPRESSION,-1,,,, -?,0,java/util/zip/Deflater.DEFAULT_STRATEGY,0,,,, -?,0,java/util/zip/Deflater.DEFLATED,8,,,, -?,0,java/util/zip/Deflater.FILTERED,1,,,, -?,19,java/util/zip/Deflater.FULL_FLUSH,3,,,, -?,0,java/util/zip/Deflater.HUFFMAN_ONLY,2,,,, -?,0,java/util/zip/Deflater.NO_COMPRESSION,0,,,, -?,19,java/util/zip/Deflater.NO_FLUSH,0,,,, -?,19,java/util/zip/Deflater.SYNC_FLUSH,2,,,, -?,0,java/util/zip/GZIPInputStream.GZIP_MAGIC,35615,,,, -?,21,java/util/zip/ZipEntry.CENATT,36,,,, -?,21,java/util/zip/ZipEntry.CENATX,38,,,, -?,21,java/util/zip/ZipEntry.CENCOM,32,,,, -?,21,java/util/zip/ZipEntry.CENCRC,16,,,, -?,21,java/util/zip/ZipEntry.CENDSK,34,,,, -?,21,java/util/zip/ZipEntry.CENEXT,30,,,, -?,21,java/util/zip/ZipEntry.CENFLG,8,,,, -?,21,java/util/zip/ZipEntry.CENHDR,46,,,, -?,21,java/util/zip/ZipEntry.CENHOW,10,,,, -?,21,java/util/zip/ZipEntry.CENLEN,24,,,, -?,21,java/util/zip/ZipEntry.CENNAM,28,,,, -?,21,java/util/zip/ZipEntry.CENOFF,42,,,, -?,21,java/util/zip/ZipEntry.CENSIZ,20,,,, -?,21,java/util/zip/ZipEntry.CENTIM,12,,,, -?,21,java/util/zip/ZipEntry.CENVEM,4,,,, -?,21,java/util/zip/ZipEntry.CENVER,6,,,, -?,0,java/util/zip/ZipEntry.DEFLATED,8,,,, -?,21,java/util/zip/ZipEntry.ENDCOM,20,,,, -?,21,java/util/zip/ZipEntry.ENDHDR,22,,,, -?,21,java/util/zip/ZipEntry.ENDOFF,16,,,, -?,21,java/util/zip/ZipEntry.ENDSIZ,12,,,, -?,21,java/util/zip/ZipEntry.ENDSUB,8,,,, -?,21,java/util/zip/ZipEntry.ENDTOT,10,,,, -?,21,java/util/zip/ZipEntry.EXTCRC,4,,,, -?,21,java/util/zip/ZipEntry.EXTHDR,16,,,, -?,21,java/util/zip/ZipEntry.EXTLEN,12,,,, -?,21,java/util/zip/ZipEntry.EXTSIZ,8,,,, -?,21,java/util/zip/ZipEntry.LOCCRC,14,,,, -?,21,java/util/zip/ZipEntry.LOCEXT,28,,,, -?,21,java/util/zip/ZipEntry.LOCFLG,6,,,, -?,21,java/util/zip/ZipEntry.LOCHDR,30,,,, -?,21,java/util/zip/ZipEntry.LOCHOW,8,,,, -?,21,java/util/zip/ZipEntry.LOCLEN,22,,,, -?,21,java/util/zip/ZipEntry.LOCNAM,26,,,, -?,21,java/util/zip/ZipEntry.LOCSIZ,18,,,, -?,21,java/util/zip/ZipEntry.LOCTIM,10,,,, -?,21,java/util/zip/ZipEntry.LOCVER,4,,,, -?,0,java/util/zip/ZipEntry.STORED,0,,,, -?,21,java/util/zip/ZipFile.CENATT,36,,,, -?,21,java/util/zip/ZipFile.CENATX,38,,,, -?,21,java/util/zip/ZipFile.CENCOM,32,,,, -?,21,java/util/zip/ZipFile.CENCRC,16,,,, -?,21,java/util/zip/ZipFile.CENDSK,34,,,, -?,21,java/util/zip/ZipFile.CENEXT,30,,,, -?,21,java/util/zip/ZipFile.CENFLG,8,,,, -?,21,java/util/zip/ZipFile.CENHDR,46,,,, -?,21,java/util/zip/ZipFile.CENHOW,10,,,, -?,21,java/util/zip/ZipFile.CENLEN,24,,,, -?,21,java/util/zip/ZipFile.CENNAM,28,,,, -?,21,java/util/zip/ZipFile.CENOFF,42,,,, -?,21,java/util/zip/ZipFile.CENSIZ,20,,,, -?,21,java/util/zip/ZipFile.CENTIM,12,,,, -?,21,java/util/zip/ZipFile.CENVEM,4,,,, -?,21,java/util/zip/ZipFile.CENVER,6,,,, -?,21,java/util/zip/ZipFile.ENDCOM,20,,,, -?,21,java/util/zip/ZipFile.ENDHDR,22,,,, -?,21,java/util/zip/ZipFile.ENDOFF,16,,,, -?,21,java/util/zip/ZipFile.ENDSIZ,12,,,, -?,21,java/util/zip/ZipFile.ENDSUB,8,,,, -?,21,java/util/zip/ZipFile.ENDTOT,10,,,, -?,21,java/util/zip/ZipFile.EXTCRC,4,,,, -?,21,java/util/zip/ZipFile.EXTHDR,16,,,, -?,21,java/util/zip/ZipFile.EXTLEN,12,,,, -?,21,java/util/zip/ZipFile.EXTSIZ,8,,,, -?,21,java/util/zip/ZipFile.LOCCRC,14,,,, -?,21,java/util/zip/ZipFile.LOCEXT,28,,,, -?,21,java/util/zip/ZipFile.LOCFLG,6,,,, -?,21,java/util/zip/ZipFile.LOCHDR,30,,,, -?,21,java/util/zip/ZipFile.LOCHOW,8,,,, -?,21,java/util/zip/ZipFile.LOCLEN,22,,,, -?,21,java/util/zip/ZipFile.LOCNAM,26,,,, -?,21,java/util/zip/ZipFile.LOCSIZ,18,,,, -?,21,java/util/zip/ZipFile.LOCTIM,10,,,, -?,21,java/util/zip/ZipFile.LOCVER,4,,,, -?,0,java/util/zip/ZipFile.OPEN_DELETE,4,,,, -?,0,java/util/zip/ZipFile.OPEN_READ,1,,,, -?,21,java/util/zip/ZipInputStream.CENATT,36,,,, -?,21,java/util/zip/ZipInputStream.CENATX,38,,,, -?,21,java/util/zip/ZipInputStream.CENCOM,32,,,, -?,21,java/util/zip/ZipInputStream.CENCRC,16,,,, -?,21,java/util/zip/ZipInputStream.CENDSK,34,,,, -?,21,java/util/zip/ZipInputStream.CENEXT,30,,,, -?,21,java/util/zip/ZipInputStream.CENFLG,8,,,, -?,21,java/util/zip/ZipInputStream.CENHDR,46,,,, -?,21,java/util/zip/ZipInputStream.CENHOW,10,,,, -?,21,java/util/zip/ZipInputStream.CENLEN,24,,,, -?,21,java/util/zip/ZipInputStream.CENNAM,28,,,, -?,21,java/util/zip/ZipInputStream.CENOFF,42,,,, -?,21,java/util/zip/ZipInputStream.CENSIZ,20,,,, -?,21,java/util/zip/ZipInputStream.CENTIM,12,,,, -?,21,java/util/zip/ZipInputStream.CENVEM,4,,,, -?,21,java/util/zip/ZipInputStream.CENVER,6,,,, -?,21,java/util/zip/ZipInputStream.ENDCOM,20,,,, -?,21,java/util/zip/ZipInputStream.ENDHDR,22,,,, -?,21,java/util/zip/ZipInputStream.ENDOFF,16,,,, -?,21,java/util/zip/ZipInputStream.ENDSIZ,12,,,, -?,21,java/util/zip/ZipInputStream.ENDSUB,8,,,, -?,21,java/util/zip/ZipInputStream.ENDTOT,10,,,, -?,21,java/util/zip/ZipInputStream.EXTCRC,4,,,, -?,21,java/util/zip/ZipInputStream.EXTHDR,16,,,, -?,21,java/util/zip/ZipInputStream.EXTLEN,12,,,, -?,21,java/util/zip/ZipInputStream.EXTSIZ,8,,,, -?,21,java/util/zip/ZipInputStream.LOCCRC,14,,,, -?,21,java/util/zip/ZipInputStream.LOCEXT,28,,,, -?,21,java/util/zip/ZipInputStream.LOCFLG,6,,,, -?,21,java/util/zip/ZipInputStream.LOCHDR,30,,,, -?,21,java/util/zip/ZipInputStream.LOCHOW,8,,,, -?,21,java/util/zip/ZipInputStream.LOCLEN,22,,,, -?,21,java/util/zip/ZipInputStream.LOCNAM,26,,,, -?,21,java/util/zip/ZipInputStream.LOCSIZ,18,,,, -?,21,java/util/zip/ZipInputStream.LOCTIM,10,,,, -?,21,java/util/zip/ZipInputStream.LOCVER,4,,,, -?,21,java/util/zip/ZipOutputStream.CENATT,36,,,, -?,21,java/util/zip/ZipOutputStream.CENATX,38,,,, -?,21,java/util/zip/ZipOutputStream.CENCOM,32,,,, -?,21,java/util/zip/ZipOutputStream.CENCRC,16,,,, -?,21,java/util/zip/ZipOutputStream.CENDSK,34,,,, -?,21,java/util/zip/ZipOutputStream.CENEXT,30,,,, -?,21,java/util/zip/ZipOutputStream.CENFLG,8,,,, -?,21,java/util/zip/ZipOutputStream.CENHDR,46,,,, -?,21,java/util/zip/ZipOutputStream.CENHOW,10,,,, -?,21,java/util/zip/ZipOutputStream.CENLEN,24,,,, -?,21,java/util/zip/ZipOutputStream.CENNAM,28,,,, -?,21,java/util/zip/ZipOutputStream.CENOFF,42,,,, -?,21,java/util/zip/ZipOutputStream.CENSIZ,20,,,, -?,21,java/util/zip/ZipOutputStream.CENTIM,12,,,, -?,21,java/util/zip/ZipOutputStream.CENVEM,4,,,, -?,21,java/util/zip/ZipOutputStream.CENVER,6,,,, -?,0,java/util/zip/ZipOutputStream.DEFLATED,8,,,, -?,21,java/util/zip/ZipOutputStream.ENDCOM,20,,,, -?,21,java/util/zip/ZipOutputStream.ENDHDR,22,,,, -?,21,java/util/zip/ZipOutputStream.ENDOFF,16,,,, -?,21,java/util/zip/ZipOutputStream.ENDSIZ,12,,,, -?,21,java/util/zip/ZipOutputStream.ENDSUB,8,,,, -?,21,java/util/zip/ZipOutputStream.ENDTOT,10,,,, -?,21,java/util/zip/ZipOutputStream.EXTCRC,4,,,, -?,21,java/util/zip/ZipOutputStream.EXTHDR,16,,,, -?,21,java/util/zip/ZipOutputStream.EXTLEN,12,,,, -?,21,java/util/zip/ZipOutputStream.EXTSIZ,8,,,, -?,21,java/util/zip/ZipOutputStream.LOCCRC,14,,,, -?,21,java/util/zip/ZipOutputStream.LOCEXT,28,,,, -?,21,java/util/zip/ZipOutputStream.LOCFLG,6,,,, -?,21,java/util/zip/ZipOutputStream.LOCHDR,30,,,, -?,21,java/util/zip/ZipOutputStream.LOCHOW,8,,,, -?,21,java/util/zip/ZipOutputStream.LOCLEN,22,,,, -?,21,java/util/zip/ZipOutputStream.LOCNAM,26,,,, -?,21,java/util/zip/ZipOutputStream.LOCSIZ,18,,,, -?,21,java/util/zip/ZipOutputStream.LOCTIM,10,,,, -?,21,java/util/zip/ZipOutputStream.LOCVER,4,,,, -?,0,java/util/zip/ZipOutputStream.STORED,0,,,, +I,0,java/util/zip/Deflater.BEST_COMPRESSION,9,,,, +I,0,java/util/zip/Deflater.BEST_SPEED,1,,,, +I,0,java/util/zip/Deflater.DEFAULT_COMPRESSION,-1,,,, +I,0,java/util/zip/Deflater.DEFAULT_STRATEGY,0,,,, +I,0,java/util/zip/Deflater.DEFLATED,8,,,, +I,0,java/util/zip/Deflater.FILTERED,1,,,, +I,19,java/util/zip/Deflater.FULL_FLUSH,3,,,, +I,0,java/util/zip/Deflater.HUFFMAN_ONLY,2,,,, +I,0,java/util/zip/Deflater.NO_COMPRESSION,0,,,, +I,19,java/util/zip/Deflater.NO_FLUSH,0,,,, +I,19,java/util/zip/Deflater.SYNC_FLUSH,2,,,, +I,0,java/util/zip/GZIPInputStream.GZIP_MAGIC,35615,,,, +I,21,java/util/zip/ZipEntry.CENATT,36,,,, +I,21,java/util/zip/ZipEntry.CENATX,38,,,, +I,21,java/util/zip/ZipEntry.CENCOM,32,,,, +I,21,java/util/zip/ZipEntry.CENCRC,16,,,, +I,21,java/util/zip/ZipEntry.CENDSK,34,,,, +I,21,java/util/zip/ZipEntry.CENEXT,30,,,, +I,21,java/util/zip/ZipEntry.CENFLG,8,,,, +I,21,java/util/zip/ZipEntry.CENHDR,46,,,, +I,21,java/util/zip/ZipEntry.CENHOW,10,,,, +I,21,java/util/zip/ZipEntry.CENLEN,24,,,, +I,21,java/util/zip/ZipEntry.CENNAM,28,,,, +I,21,java/util/zip/ZipEntry.CENOFF,42,,,, +I,21,java/util/zip/ZipEntry.CENSIZ,20,,,, +I,21,java/util/zip/ZipEntry.CENTIM,12,,,, +I,21,java/util/zip/ZipEntry.CENVEM,4,,,, +I,21,java/util/zip/ZipEntry.CENVER,6,,,, +I,0,java/util/zip/ZipEntry.DEFLATED,8,,,, +I,21,java/util/zip/ZipEntry.ENDCOM,20,,,, +I,21,java/util/zip/ZipEntry.ENDHDR,22,,,, +I,21,java/util/zip/ZipEntry.ENDOFF,16,,,, +I,21,java/util/zip/ZipEntry.ENDSIZ,12,,,, +I,21,java/util/zip/ZipEntry.ENDSUB,8,,,, +I,21,java/util/zip/ZipEntry.ENDTOT,10,,,, +I,21,java/util/zip/ZipEntry.EXTCRC,4,,,, +I,21,java/util/zip/ZipEntry.EXTHDR,16,,,, +I,21,java/util/zip/ZipEntry.EXTLEN,12,,,, +I,21,java/util/zip/ZipEntry.EXTSIZ,8,,,, +I,21,java/util/zip/ZipEntry.LOCCRC,14,,,, +I,21,java/util/zip/ZipEntry.LOCEXT,28,,,, +I,21,java/util/zip/ZipEntry.LOCFLG,6,,,, +I,21,java/util/zip/ZipEntry.LOCHDR,30,,,, +I,21,java/util/zip/ZipEntry.LOCHOW,8,,,, +I,21,java/util/zip/ZipEntry.LOCLEN,22,,,, +I,21,java/util/zip/ZipEntry.LOCNAM,26,,,, +I,21,java/util/zip/ZipEntry.LOCSIZ,18,,,, +I,21,java/util/zip/ZipEntry.LOCTIM,10,,,, +I,21,java/util/zip/ZipEntry.LOCVER,4,,,, +I,0,java/util/zip/ZipEntry.STORED,0,,,, +I,21,java/util/zip/ZipFile.CENATT,36,,,, +I,21,java/util/zip/ZipFile.CENATX,38,,,, +I,21,java/util/zip/ZipFile.CENCOM,32,,,, +I,21,java/util/zip/ZipFile.CENCRC,16,,,, +I,21,java/util/zip/ZipFile.CENDSK,34,,,, +I,21,java/util/zip/ZipFile.CENEXT,30,,,, +I,21,java/util/zip/ZipFile.CENFLG,8,,,, +I,21,java/util/zip/ZipFile.CENHDR,46,,,, +I,21,java/util/zip/ZipFile.CENHOW,10,,,, +I,21,java/util/zip/ZipFile.CENLEN,24,,,, +I,21,java/util/zip/ZipFile.CENNAM,28,,,, +I,21,java/util/zip/ZipFile.CENOFF,42,,,, +I,21,java/util/zip/ZipFile.CENSIZ,20,,,, +I,21,java/util/zip/ZipFile.CENTIM,12,,,, +I,21,java/util/zip/ZipFile.CENVEM,4,,,, +I,21,java/util/zip/ZipFile.CENVER,6,,,, +I,21,java/util/zip/ZipFile.ENDCOM,20,,,, +I,21,java/util/zip/ZipFile.ENDHDR,22,,,, +I,21,java/util/zip/ZipFile.ENDOFF,16,,,, +I,21,java/util/zip/ZipFile.ENDSIZ,12,,,, +I,21,java/util/zip/ZipFile.ENDSUB,8,,,, +I,21,java/util/zip/ZipFile.ENDTOT,10,,,, +I,21,java/util/zip/ZipFile.EXTCRC,4,,,, +I,21,java/util/zip/ZipFile.EXTHDR,16,,,, +I,21,java/util/zip/ZipFile.EXTLEN,12,,,, +I,21,java/util/zip/ZipFile.EXTSIZ,8,,,, +I,21,java/util/zip/ZipFile.LOCCRC,14,,,, +I,21,java/util/zip/ZipFile.LOCEXT,28,,,, +I,21,java/util/zip/ZipFile.LOCFLG,6,,,, +I,21,java/util/zip/ZipFile.LOCHDR,30,,,, +I,21,java/util/zip/ZipFile.LOCHOW,8,,,, +I,21,java/util/zip/ZipFile.LOCLEN,22,,,, +I,21,java/util/zip/ZipFile.LOCNAM,26,,,, +I,21,java/util/zip/ZipFile.LOCSIZ,18,,,, +I,21,java/util/zip/ZipFile.LOCTIM,10,,,, +I,21,java/util/zip/ZipFile.LOCVER,4,,,, +I,0,java/util/zip/ZipFile.OPEN_DELETE,4,,,, +I,0,java/util/zip/ZipFile.OPEN_READ,1,,,, +I,21,java/util/zip/ZipInputStream.CENATT,36,,,, +I,21,java/util/zip/ZipInputStream.CENATX,38,,,, +I,21,java/util/zip/ZipInputStream.CENCOM,32,,,, +I,21,java/util/zip/ZipInputStream.CENCRC,16,,,, +I,21,java/util/zip/ZipInputStream.CENDSK,34,,,, +I,21,java/util/zip/ZipInputStream.CENEXT,30,,,, +I,21,java/util/zip/ZipInputStream.CENFLG,8,,,, +I,21,java/util/zip/ZipInputStream.CENHDR,46,,,, +I,21,java/util/zip/ZipInputStream.CENHOW,10,,,, +I,21,java/util/zip/ZipInputStream.CENLEN,24,,,, +I,21,java/util/zip/ZipInputStream.CENNAM,28,,,, +I,21,java/util/zip/ZipInputStream.CENOFF,42,,,, +I,21,java/util/zip/ZipInputStream.CENSIZ,20,,,, +I,21,java/util/zip/ZipInputStream.CENTIM,12,,,, +I,21,java/util/zip/ZipInputStream.CENVEM,4,,,, +I,21,java/util/zip/ZipInputStream.CENVER,6,,,, +I,21,java/util/zip/ZipInputStream.ENDCOM,20,,,, +I,21,java/util/zip/ZipInputStream.ENDHDR,22,,,, +I,21,java/util/zip/ZipInputStream.ENDOFF,16,,,, +I,21,java/util/zip/ZipInputStream.ENDSIZ,12,,,, +I,21,java/util/zip/ZipInputStream.ENDSUB,8,,,, +I,21,java/util/zip/ZipInputStream.ENDTOT,10,,,, +I,21,java/util/zip/ZipInputStream.EXTCRC,4,,,, +I,21,java/util/zip/ZipInputStream.EXTHDR,16,,,, +I,21,java/util/zip/ZipInputStream.EXTLEN,12,,,, +I,21,java/util/zip/ZipInputStream.EXTSIZ,8,,,, +I,21,java/util/zip/ZipInputStream.LOCCRC,14,,,, +I,21,java/util/zip/ZipInputStream.LOCEXT,28,,,, +I,21,java/util/zip/ZipInputStream.LOCFLG,6,,,, +I,21,java/util/zip/ZipInputStream.LOCHDR,30,,,, +I,21,java/util/zip/ZipInputStream.LOCHOW,8,,,, +I,21,java/util/zip/ZipInputStream.LOCLEN,22,,,, +I,21,java/util/zip/ZipInputStream.LOCNAM,26,,,, +I,21,java/util/zip/ZipInputStream.LOCSIZ,18,,,, +I,21,java/util/zip/ZipInputStream.LOCTIM,10,,,, +I,21,java/util/zip/ZipInputStream.LOCVER,4,,,, +I,21,java/util/zip/ZipOutputStream.CENATT,36,,,, +I,21,java/util/zip/ZipOutputStream.CENATX,38,,,, +I,21,java/util/zip/ZipOutputStream.CENCOM,32,,,, +I,21,java/util/zip/ZipOutputStream.CENCRC,16,,,, +I,21,java/util/zip/ZipOutputStream.CENDSK,34,,,, +I,21,java/util/zip/ZipOutputStream.CENEXT,30,,,, +I,21,java/util/zip/ZipOutputStream.CENFLG,8,,,, +I,21,java/util/zip/ZipOutputStream.CENHDR,46,,,, +I,21,java/util/zip/ZipOutputStream.CENHOW,10,,,, +I,21,java/util/zip/ZipOutputStream.CENLEN,24,,,, +I,21,java/util/zip/ZipOutputStream.CENNAM,28,,,, +I,21,java/util/zip/ZipOutputStream.CENOFF,42,,,, +I,21,java/util/zip/ZipOutputStream.CENSIZ,20,,,, +I,21,java/util/zip/ZipOutputStream.CENTIM,12,,,, +I,21,java/util/zip/ZipOutputStream.CENVEM,4,,,, +I,21,java/util/zip/ZipOutputStream.CENVER,6,,,, +I,0,java/util/zip/ZipOutputStream.DEFLATED,8,,,, +I,21,java/util/zip/ZipOutputStream.ENDCOM,20,,,, +I,21,java/util/zip/ZipOutputStream.ENDHDR,22,,,, +I,21,java/util/zip/ZipOutputStream.ENDOFF,16,,,, +I,21,java/util/zip/ZipOutputStream.ENDSIZ,12,,,, +I,21,java/util/zip/ZipOutputStream.ENDSUB,8,,,, +I,21,java/util/zip/ZipOutputStream.ENDTOT,10,,,, +I,21,java/util/zip/ZipOutputStream.EXTCRC,4,,,, +I,21,java/util/zip/ZipOutputStream.EXTHDR,16,,,, +I,21,java/util/zip/ZipOutputStream.EXTLEN,12,,,, +I,21,java/util/zip/ZipOutputStream.EXTSIZ,8,,,, +I,21,java/util/zip/ZipOutputStream.LOCCRC,14,,,, +I,21,java/util/zip/ZipOutputStream.LOCEXT,28,,,, +I,21,java/util/zip/ZipOutputStream.LOCFLG,6,,,, +I,21,java/util/zip/ZipOutputStream.LOCHDR,30,,,, +I,21,java/util/zip/ZipOutputStream.LOCHOW,8,,,, +I,21,java/util/zip/ZipOutputStream.LOCLEN,22,,,, +I,21,java/util/zip/ZipOutputStream.LOCNAM,26,,,, +I,21,java/util/zip/ZipOutputStream.LOCSIZ,18,,,, +I,21,java/util/zip/ZipOutputStream.LOCTIM,10,,,, +I,21,java/util/zip/ZipOutputStream.LOCVER,4,,,, +I,0,java/util/zip/ZipOutputStream.STORED,0,,,, E,10,javax/crypto/Cipher.DECRYPT_MODE,2,Javax.Crypto.CipherMode,DecryptMode,remove, E,10,javax/crypto/Cipher.ENCRYPT_MODE,1,Javax.Crypto.CipherMode,EncryptMode,remove, E,10,javax/crypto/Cipher.PRIVATE_KEY,2,Javax.Crypto.KeyType,PrivateKey,remove, @@ -15276,36 +16199,36 @@ E,10,javax/crypto/Cipher.PUBLIC_KEY,1,Javax.Crypto.KeyType,PublicKey,remove, E,10,javax/crypto/Cipher.SECRET_KEY,3,Javax.Crypto.KeyType,SecretKey,remove, E,10,javax/crypto/Cipher.UNWRAP_MODE,4,Javax.Crypto.CipherMode,UnwrapMode,remove, E,10,javax/crypto/Cipher.WRAP_MODE,3,Javax.Crypto.CipherMode,WrapMode,remove, -?,0,javax/crypto/spec/DESedeKeySpec.DES_EDE_KEY_LEN,24,,,, -?,0,javax/crypto/spec/DESKeySpec.DES_KEY_LEN,8,,,, -?,24,javax/net/ssl/StandardConstants.SNI_HOST_NAME,0,,,, -?,0,javax/xml/datatype/DatatypeConstants.APRIL,4,,,, -?,0,javax/xml/datatype/DatatypeConstants.AUGUST,8,,,, -?,0,javax/xml/datatype/DatatypeConstants.DECEMBER,12,,,, -?,0,javax/xml/datatype/DatatypeConstants.EQUAL,0,,,, -?,0,javax/xml/datatype/DatatypeConstants.FEBRUARY,2,,,, -?,0,javax/xml/datatype/DatatypeConstants.FIELD_UNDEFINED,-2147483648,,,, -?,0,javax/xml/datatype/DatatypeConstants.GREATER,1,,,, -?,0,javax/xml/datatype/DatatypeConstants.INDETERMINATE,2,,,, -?,0,javax/xml/datatype/DatatypeConstants.JANUARY,1,,,, -?,0,javax/xml/datatype/DatatypeConstants.JULY,7,,,, -?,0,javax/xml/datatype/DatatypeConstants.JUNE,6,,,, -?,0,javax/xml/datatype/DatatypeConstants.LESSER,-1,,,, -?,0,javax/xml/datatype/DatatypeConstants.MARCH,3,,,, -?,0,javax/xml/datatype/DatatypeConstants.MAX_TIMEZONE_OFFSET,-840,,,, -?,0,javax/xml/datatype/DatatypeConstants.MAY,5,,,, -?,0,javax/xml/datatype/DatatypeConstants.MIN_TIMEZONE_OFFSET,840,,,, -?,0,javax/xml/datatype/DatatypeConstants.NOVEMBER,11,,,, -?,0,javax/xml/datatype/DatatypeConstants.OCTOBER,10,,,, -?,0,javax/xml/datatype/DatatypeConstants.SEPTEMBER,9,,,, -?,0,org/apache/http/auth/AuthScope.ANY_PORT,-1,,,, -?,0,org/apache/http/conn/params/ConnManagerParams.DEFAULT_MAX_TOTAL_CONNECTIONS,20,,,, -?,0,org/apache/http/conn/params/ConnPerRouteBean.DEFAULT_MAX_CONNECTIONS_PER_ROUTE,2,,,, -?,0,org/apache/http/protocol/HTTP.CR,13,,,, -?,0,org/apache/http/protocol/HTTP.HT,9,,,, -?,0,org/apache/http/protocol/HTTP.LF,10,,,, -?,0,org/apache/http/protocol/HTTP.SP,32,,,, -?,0,org/apache/http/util/LangUtils.HASH_OFFSET,37,,,, -?,0,org/apache/http/util/LangUtils.HASH_SEED,17,,,, +I,0,javax/crypto/spec/DESedeKeySpec.DES_EDE_KEY_LEN,24,,,, +I,0,javax/crypto/spec/DESKeySpec.DES_KEY_LEN,8,,,, +I,24,javax/net/ssl/StandardConstants.SNI_HOST_NAME,0,,,, +I,0,javax/xml/datatype/DatatypeConstants.APRIL,4,,,, +I,0,javax/xml/datatype/DatatypeConstants.AUGUST,8,,,, +I,0,javax/xml/datatype/DatatypeConstants.DECEMBER,12,,,, +I,0,javax/xml/datatype/DatatypeConstants.EQUAL,0,,,, +I,0,javax/xml/datatype/DatatypeConstants.FEBRUARY,2,,,, +I,0,javax/xml/datatype/DatatypeConstants.FIELD_UNDEFINED,-2147483648,,,, +I,0,javax/xml/datatype/DatatypeConstants.GREATER,1,,,, +I,0,javax/xml/datatype/DatatypeConstants.INDETERMINATE,2,,,, +I,0,javax/xml/datatype/DatatypeConstants.JANUARY,1,,,, +I,0,javax/xml/datatype/DatatypeConstants.JULY,7,,,, +I,0,javax/xml/datatype/DatatypeConstants.JUNE,6,,,, +I,0,javax/xml/datatype/DatatypeConstants.LESSER,-1,,,, +I,0,javax/xml/datatype/DatatypeConstants.MARCH,3,,,, +I,0,javax/xml/datatype/DatatypeConstants.MAX_TIMEZONE_OFFSET,-840,,,, +I,0,javax/xml/datatype/DatatypeConstants.MAY,5,,,, +I,0,javax/xml/datatype/DatatypeConstants.MIN_TIMEZONE_OFFSET,840,,,, +I,0,javax/xml/datatype/DatatypeConstants.NOVEMBER,11,,,, +I,0,javax/xml/datatype/DatatypeConstants.OCTOBER,10,,,, +I,0,javax/xml/datatype/DatatypeConstants.SEPTEMBER,9,,,, +I,0,org/apache/http/auth/AuthScope.ANY_PORT,-1,,,, +I,0,org/apache/http/conn/params/ConnManagerParams.DEFAULT_MAX_TOTAL_CONNECTIONS,20,,,, +I,0,org/apache/http/conn/params/ConnPerRouteBean.DEFAULT_MAX_CONNECTIONS_PER_ROUTE,2,,,, +I,0,org/apache/http/protocol/HTTP.CR,13,,,, +I,0,org/apache/http/protocol/HTTP.HT,9,,,, +I,0,org/apache/http/protocol/HTTP.LF,10,,,, +I,0,org/apache/http/protocol/HTTP.SP,32,,,, +I,0,org/apache/http/util/LangUtils.HASH_OFFSET,37,,,, +I,0,org/apache/http/util/LangUtils.HASH_SEED,17,,,, A,0,,0,Android.App.BreadCrumbClickFlags,None,remove, A,0,,0,Android.Hardware.Fingerprints.FingerprintAuthenticationFlags,None,remove, diff --git a/src/Mono.Android/methodmap.csv b/src/Mono.Android/methodmap.csv index 6d3e4133c7d..48942847b60 100644 --- a/src/Mono.Android/methodmap.csv +++ b/src/Mono.Android/methodmap.csv @@ -2907,3 +2907,333 @@ 30,I:android/view,WindowInsetsController,setSystemBarsAppearance,appearance,Android.Views.WindowInsetsControllerAppearance 30,I:android/view,WindowInsetsController,setSystemBarsAppearance,mask,Android.Views.WindowInsetsControllerAppearance 30,I:android/view,WindowInsetsController,setSystemBarsBehavior,behavior,Android.Views.WindowInsetsControllerBehavior +31,android/accessibilityservice,AccessibilityGestureEvent,gestureIdToString,id,Android.AccessibilityServices.AccessibilityGesture +31,android/app/admin,DeviceAdminReceiver,onOperationSafetyStateChanged,reason,Android.App.Admin.OperationSafetyReason +31,android/app/admin,DevicePolicyManager,getNearbyAppStreamingPolicy,return,Android.App.Admin.NearbyStreaming +31,android/app/admin,DevicePolicyManager,getNearbyNotificationStreamingPolicy,return,Android.App.Admin.NearbyStreaming +31,android/app/admin,DevicePolicyManager,getRequiredPasswordComplexity,return,Android.App.Admin.PasswordComplexity +31,android/app/admin,DevicePolicyManager,isSafeOperation,reason,Android.App.Admin.OperationSafetyReason +31,android/app/admin,DevicePolicyManager,setNearbyAppStreamingPolicy,policy,Android.App.Admin.NearbyStreaming +31,android/app/admin,DevicePolicyManager,setNearbyNotificationStreamingPolicy,policy,Android.App.Admin.NearbyStreaming +31,android/app/admin,DevicePolicyManager,setRequiredPasswordComplexity,passwordComplexity,Android.App.Admin.PasswordComplexity +31,android/app/admin,UnsafeStateException,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/app,AppOpsManager,startProxyOp,return,Android.App.AppOpsManagerMode +31,android/app,AppOpsManager,startProxyOpNoThrow,return,Android.App.AppOpsManagerMode +31,android/app/appsearch,AppSearchBatchResult$Builder,setFailure,resultCode,Android.App.Appsearch.AppSearchResultCode +31,android/app/appsearch,AppSearchResult,getResultCode,return,Android.App.Appsearch.AppSearchResultCode +31,android/app/appsearch,AppSearchResult,newFailedResult,resultCode,Android.App.Appsearch.AppSearchResultCode +31,android/app/appsearch,AppSearchSchema$BooleanPropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$BytesPropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$DocumentPropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$DoublePropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$LongPropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$PropertyConfig,getCardinality,return,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$StringPropertyConfig,getIndexingType,return,Android.App.AppSearch.IndexingType +31,android/app/appsearch,AppSearchSchema$StringPropertyConfig,getTokenizerType,return,Android.App.AppSearch.TokenizerType +31,android/app/appsearch,AppSearchSchema$StringPropertyConfig$Builder,setCardinality,cardinality,Android.App.Appsearch.Cardinality +31,android/app/appsearch,AppSearchSchema$StringPropertyConfig$Builder,setTokenizerType,tokenizerType,Android.App.AppSearch.TokenizerType +31,android/app/appsearch/exceptions,AppSearchException,ctor,resultCode,Android.App.Appsearch.AppSearchResultCode +31,android/app/appsearch/exceptions,AppSearchException,getResultCode,return,Android.App.Appsearch.AppSearchResultCode +31,android/app/appsearch,SearchSpec,getOrder,return,Android.App.AppSearch.SearchOrder +31,android/app/appsearch,SearchSpec,getRankingStrategy,return,Android.App.AppSearch.RankingStrategy +31,android/app/appsearch,SearchSpec,getResultGroupingTypeFlags,return,Android.App.AppSearch.GroupingType +31,android/app/appsearch,SearchSpec,getTermMatch,return,Android.App.AppSearch.SearchTermMatch +31,android/app/appsearch,SearchSpec$Builder,setOrder,order,Android.App.AppSearch.SearchOrder +31,android/app/appsearch,SearchSpec$Builder,setRankingStrategy,rankingStrategy,Android.App.AppSearch.RankingStrategy +31,android/app/appsearch,SearchSpec$Builder,setResultGrouping,groupingTypeFlags,Android.App.AppSearch.GroupingType +31,android/app/appsearch,SearchSpec$Builder,setTermMatch,termMatchType,Android.App.AppSearch.SearchTermMatch +31,android/app,BackgroundServiceStartNotAllowedException,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/app,ForegroundServiceStartNotAllowedException,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/app,GameManager,getGameMode,return,Android.App.GameMode +31,android/app/job,JobParameters,getStopReason,return,Android.App.Job.StopReason +31,android/app,Notification$Builder,setForegroundServiceBehavior,behavior,Android.App.NotificationForegroundService +31,android/app,NotificationManager,getBubblePreference,return,Android.App.NotificationBubblePreference +31,android/app/people,ConversationStatus,getActivity,return,Android.App.People.ConversationActivity +31,android/app/people,ConversationStatus,getAvailability,return,Android.App.People.ConversationAvailability +31,android/app/people,ConversationStatus,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/app/people,ConversationStatus$Builder,ctor,activity,Android.App.People.ConversationActivity +31,android/app/people,ConversationStatus$Builder,setAvailability,availability,Android.App.People.ConversationAvailability +31,android/app,PictureInPictureUiState,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/app,UiModeManager,setApplicationNightMode,mode,Android.App.UiNightMode +31,android/app,WallpaperColors,ctor,colorHints,Android.App.WallpaperColorsHint +31,android/app,WallpaperColors,getColorHints,return,Android.App.WallpaperColorsHint +31,android/bluetooth,BluetoothDevice,setAlias,return,Android.Bluetooth.CurrentBluetoothStatusCodes +31,android/bluetooth,BluetoothLeAudio,getConnectionState,return,Android.Bluetooth.ProfileState +31,android/content,AttributionSource,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/content,ClipDescription,getClassificationStatus,return,Android.Content.ClipDescriptionClassification +31,android/content,Context,checkCallingOrSelfUriPermissions,modeFlags,Android.Content.ActivityFlags +31,android/content,Context,checkCallingUriPermissions,modeFlags,Android.Content.ActivityFlags +31,android/content,Context,checkUriPermissions,modeFlags,Android.Content.ActivityFlags +31,android/content,Context,createWindowContext,type,Android.Views.WindowManagerTypes +31,android/content/pm,ApkChecksum,getType,return,Android.Content.PM.ChecksumType +31,android/content/pm,ApkChecksum,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/content/pm,ApplicationInfo,compileSdkVersion,compileSdkVersion,Android.OS.BuildVersionCodes +31,android/content/pm,ApplicationInfo,getMemtagMode,return,Android.Content.PM.ApplicationInfoMemtag +31,android/content/pm,ApplicationInfo,getNativeHeapZeroInitialized,return,Android.Content.PM.ApplicationInfoZeroInit +31,android/content/pm,ApplicationInfo,getRequestRawExternalStorageAccess,return,Android.Content.PM.RawExternalStorageAccess +31,android/content/pm,Attribution,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/content/pm,Checksum,ctor,type,Android.Content.PM.ChecksumType +31,android/content/pm,Checksum,getType,return,Android.Content.PM.ChecksumType +31,android/content/pm,Checksum,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/content/pm,PackageInstaller$SessionInfo,getRequireUserAction,return,Android.Content.PM.PackageInstallUserAction +31,android/content/pm,PackageInstaller$SessionParams,setInstallScenario,installScenario,Android.Content.PM.PackageInstallScenario +31,android/content/pm,PackageInstaller$SessionParams,setRequireUserAction,requireUserAction,Android.Content.PM.PackageInstallUserAction +31,android/content/pm,PackageManager,requestChecksums,required,Android.Content.PM.ChecksumType +31,android/content/pm,PackageManager$Property,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/content/pm/verify/domain,DomainVerificationUserState,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/graphics,ParcelableColorSpace,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/hardware,BatteryState,getStatus,return,Android.Hardware.BatteryStatus +31,android/hardware/biometrics,BiometricManager,getStrings,authenticators,Android.Hardware.Biometrics.BiometricManagerAuthenticators +31,android/hardware/camera2,CameraExtensionCharacteristics,getEstimatedCaptureLatencyRangeMillis,extension,Android.Hardware.Camera2.CameraExtensionTypes +31,android/hardware/camera2,CameraExtensionCharacteristics,getEstimatedCaptureLatencyRangeMillis,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2,CameraExtensionCharacteristics,getExtensionSupportedSizes,extension,Android.Hardware.Camera2.CameraExtensionTypes +31,android/hardware/camera2,CameraExtensionCharacteristics,getExtensionSupportedSizes,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2,MultiResolutionImageReader,ctor,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2/params,ExtensionSessionConfiguration,ctor,extension,Android.Hardware.Camera2.CameraExtensionTypes +31,android/hardware/camera2/params,ExtensionSessionConfiguration,getExtension,return,Android.Hardware.Camera2.CameraExtensionTypes +31,android/hardware/camera2/params,InputConfiguration,ctor,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2/params,MultiResolutionStreamConfigurationMap,getInputInfo,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2/params,MultiResolutionStreamConfigurationMap,getOutputInfo,format,Android.Graphics.ImageFormatType +31,android/hardware/camera2/params,OutputConfiguration,addSensorPixelModeUsed,sensorPixelModeUsed,Android.Hardware.Camera2.SensorPixelMode +31,android/hardware/camera2/params,OutputConfiguration,removeSensorPixelModeUsed,sensorPixelModeUsed,Android.Hardware.Camera2.SensorPixelMode +31,android/hardware/display,DeviceProductInfo,ctor,connectionToSinkType,Android.Hardware.Display.ConnectionToSinkType +31,android/hardware/display,DeviceProductInfo,getConnectionToSinkType,return,Android.Hardware.Display.ConnectionToSinkType +31,android/hardware/display,DeviceProductInfo,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/hardware/display,DisplayManager,getMatchContentFrameRateUserPreference,return,Android.Hardware.Display.MatchContentFramerate +31,android/hardware/lights,Light,getType,return,Android.Hardware.Lights.LightType +31,android/hardware/lights,Light,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/hardware/lights,LightState,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/hardware,SensorPrivacyManager,supportsSensorToggle,sensor,Android.Hardware.PrivacySensors +31,android/location,GnssCapabilities,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/location,GnssMeasurementRequest,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/location,GnssStatus,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/location,LocationRequest,getQuality,return,Android.Location.LocationRequestQuality +31,android/location,LocationRequest,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/location,LocationRequest$Builder,setQuality,quality,Android.Location.LocationRequestQuality +31,android/location/provider,ProviderProperties,getAccuracy,return,Android.Location.Provider.ProviderAccuracy +31,android/location/provider,ProviderProperties,getPowerUsage,return,Android.Location.Provider.ProviderPowerUsage +31,android/location/provider,ProviderProperties,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/location/provider,ProviderProperties$Builder,setAccuracy,accuracy,Android.Location.Provider.ProviderAccuracy +31,android/location/provider,ProviderProperties$Builder,setPowerUsage,powerUsage,Android.Location.Provider.ProviderPowerUsage +31,android/media,ApplicationMediaCapabilities,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media,AudioDescriptor,getEncapsulationType,return,Android.Media.AudioEncapsulationType +31,android/media,AudioDescriptor,getStandard,return,Android.Media.AudioDescriptorStandard +31,android/media,AudioManager,getEncodedSurroundMode,return,Android.Media.EncodedSurroundOutput +31,android/media,AudioManager,getPlaybackOffloadSupport,return,Android.Media.PlaybackOffload +31,android/media,AudioManager,isSurroundFormatEnabled,audioFormat,Android.Media.Encoding +31,android/media,AudioManager,setEncodedSurroundMode,mode,Android.Media.EncodedSurroundOutput +31,android/media,AudioManager,setSurroundFormatEnabled,audioFormat,Android.Media.Encoding +31,android/media,I:AudioManager$OnModeChangedListener,onModeChanged,onModeChanged,Android.Media.Mode +31,android/media,AudioProfile,getEncapsulationType,return,Android.Media.AudioEncapsulationType +31,android/media,AudioProfile,getFormat,return,Android.Media.Encoding +31,android/media,CamcorderProfile,getAll,quality,Android.Media.CamcorderQuality +31,android/media,EncoderProfiles,getRecommendedFileFormat,return,Android.Media.OutputFormat +31,android/media,EncoderProfiles$AudioProfile,getCodec,return,Android.Media.AudioEncoder +31,android/media,EncoderProfiles$VideoProfile,getCodec,return,Android.Media.VideoEncoder +31,android/media,MediaCas,ctor,priorityHint,Android.Media.TV.PriorityHintUseCase +31,android/media,MediaCodec$ParameterDescriptor,getType,return,Android.Media.MediaFormatType +31,android/media,MediaDrm,requiresSecureDecoder,level,Android.Media.SecurityLevel +31,android/media,MediaDrm$LogMessage,getPriority,return,Android.Util.LogPriority +31,android/media,MediaDrm$MediaDrmStateException,getErrorCode,return,Android.Media.DrmErrorCode +31,android/media,MediaSyncEvent,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,NetworkEvent,getNetworkType,return,Android.Media.Metrics.NetworkType +31,android/media/metrics,NetworkEvent,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,NetworkEvent$Builder,setNetworkType,value,Android.Media.Metrics.NetworkType +31,android/media/metrics,PlaybackErrorEvent,getErrorCode,return,Android.Media.Metrics.PlaybackError +31,android/media/metrics,PlaybackErrorEvent,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,PlaybackErrorEvent$Builder,setErrorCode,value,Android.Media.Metrics.PlaybackError +31,android/media/metrics,PlaybackMetrics,getContentType,return,Android.Media.Metrics.PlaybackContentType +31,android/media/metrics,PlaybackMetrics,getDrmType,return,Android.Media.Metrics.PlaybackDrmType +31,android/media/metrics,PlaybackMetrics,getPlaybackType,return,Android.Media.Metrics.PlaybackType +31,android/media/metrics,PlaybackMetrics,getStreamSource,return,Android.Media.Metrics.PlaybackStreamSource +31,android/media/metrics,PlaybackMetrics,getStreamType,return,Android.Media.Metrics.PlaybackStreamType +31,android/media/metrics,PlaybackMetrics,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,PlaybackMetrics$Builder,setContentType,value,Android.Media.Metrics.PlaybackContentType +31,android/media/metrics,PlaybackMetrics$Builder,setDrmType,value,Android.Media.Metrics.PlaybackDrmType +31,android/media/metrics,PlaybackMetrics$Builder,setPlaybackType,value,Android.Media.Metrics.PlaybackType +31,android/media/metrics,PlaybackMetrics$Builder,setStreamSource,value,Android.Media.Metrics.PlaybackStreamSource +31,android/media/metrics,PlaybackMetrics$Builder,setStreamType,value,Android.Media.Metrics.PlaybackStreamType +31,android/media/metrics,PlaybackStateEvent,getState,return,Android.Media.Metrics.PlaybackState +31,android/media/metrics,PlaybackStateEvent,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,PlaybackStateEvent$Builder,setState,value,Android.Media.Metrics.PlaybackState +31,android/media/metrics,TrackChangeEvent,getTrackChangeReason,return,Android.Media.Metrics.TrackChangeReason +31,android/media/metrics,TrackChangeEvent,getTrackState,return,Android.Media.Metrics.TrackState +31,android/media/metrics,TrackChangeEvent,getTrackType,return,Android.Media.Metrics.TrackType +31,android/media/metrics,TrackChangeEvent,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/media/metrics,TrackChangeEvent$Builder,ctor,type,Android.Media.Metrics.TrackType +31,android/media/metrics,TrackChangeEvent$Builder,setTrackChangeReason,value,Android.Media.Metrics.TrackChangeReason +31,android/media/metrics,TrackChangeEvent$Builder,setTrackState,value,Android.Media.Metrics.TrackState +31,android/net,ConnectivityManager$NetworkCallback,ctor,flags,Android.Net.NetworkCallbackFlags +31,android/net/eap,EapSessionConfig$Builder,setEapAkaConfig,apptype,Android.Telephony.UiccApplicationType +31,android/net/eap,EapSessionConfig$Builder,setEapAkaPrimeConfig,apptype,Android.Telephony.UiccApplicationType +31,android/net/eap,EapSessionConfig$Builder,setEapSimConfig,apptype,Android.Telephony.UiccApplicationType +31,android/net/eap,EapSessionConfig$EapAkaConfig,getAppType,return,Android.Telephony.UiccApplicationType +31,android/net/eap,EapSessionConfig$EapMethodConfig,getMethodType,return,Android.Net.Eap.EapType +31,android/net/eap,EapSessionConfig$EapSimConfig,getAppType,return,Android.Telephony.UiccApplicationType +31,android/net/ipsec/ike,ChildSaProposal$Builder,addDhGroup,dhGroup,Android.Net.IpSec.Ike.SaProposalDhGroup +31,android/net/ipsec/ike,ChildSaProposal$Builder,addEncryptionAlgorithm,algorithm,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm +31,android/net/ipsec/ike,ChildSaProposal$Builder,addIntegrityAlgorithm,algorithm,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm +31,android/net/ipsec/ike,I:ChildSessionCallback,onIpSecTransformCreated,direction,Android.Net.IpSecTransportDirection +31,android/net/ipsec/ike,I:ChildSessionCallback,onIpSecTransformDeleted,direction,Android.Net.IpSecTransportDirection +31,android/net/ipsec/ike/exceptions,IkeProtocolException,getErrorType,return,Android.Net.Ipsec.Ike.Exceptions.IkeProtocolErrorType +31,android/net/ipsec/ike/exceptions,InvalidKeException,ctor,dhGroup,Android.Net.IpSec.Ike.SaProposalDhGroup +31,android/net/ipsec/ike/exceptions,InvalidKeException,getDhGroup,return,Android.Net.IpSec.Ike.SaProposalDhGroup +31,android/net/ipsec/ike,IkeSaProposal$Builder,addDhGroup,dhGroup,Android.Net.IpSec.Ike.SaProposalDhGroup +31,android/net/ipsec/ike,IkeSaProposal$Builder,addEncryptionAlgorithm,algorithm,Android.Net.IpSec.Ike.SaProposalEncryptionAlgorithm +31,android/net/ipsec/ike,IkeSaProposal$Builder,addIntegrityAlgorithm,algorithm,Android.Net.IpSec.Ike.SaProposalIntegrityAlgorithm +31,android/net/ipsec/ike,IkeSaProposal$Builder,addPseudorandomFunction,algorithm,Android.Net.IpSec.Ike.SaProposalPseudorandomFunction +31,android/net/ipsec/ike,IkeSessionConfiguration,isIkeExtensionEnabled,extensionType,Android.Net.Ipsec.Ike.IkeSessionExtensionType +31,android/net/ipsec/ike,IkeSessionConfiguration$Builder,addIkeExtension,extensionType,Android.Net.Ipsec.Ike.IkeSessionExtensionType +31,android/net/ipsec/ike,IkeSessionParams,hasIkeOption,ikeOption,Android.Net.Ipsec.Ike.IkeSessionOption +31,android/net/ipsec/ike,IkeSessionParams$Builder,addIkeOption,ikeOption,Android.Net.Ipsec.Ike.IkeSessionOption +31,android/net/ipsec/ike,IkeSessionParams$Builder,removeIkeOption,ikeOption,Android.Net.Ipsec.Ike.IkeSessionOption +31,android/net/vcn,VcnConfig,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/net/vcn,VcnGatewayConnectionConfig$Builder,addExposedCapability,exposedCapability,Android.Net.NetCapability +31,android/net/vcn,VcnGatewayConnectionConfig$Builder,removeExposedCapability,exposedCapability,Android.Net.NetCapability +31,android/net/vcn,VcnManager$VcnStatusCallback,onGatewayConnectionError,errorCode,Android.Net.Vcn.VcnErrorCode +31,android/net/vcn,VcnManager$VcnStatusCallback,onStatusChanged,statusCode,Android.Net.Vcn.VcnStatusCode +31,android/net/wifi/aware,AwareResources,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/net/wifi/aware,DiscoverySessionCallback,onServiceLost,reason,Android.Net.Wifi.Aware.WifiAwareDiscoveryLostReason +31,android/net/wifi/p2p,WifiP2pWfdInfo,getDeviceInfo,return,Android.Net.Wifi.P2P.WfdInfoDeviceInfo +31,android/net/wifi/p2p,WifiP2pWfdInfo,getR2DeviceInfo,return,Android.Net.Wifi.P2P.WfdInfoDeviceInfo +31,android/net/wifi/p2p,WifiP2pWfdInfo,getR2DeviceType,return,Android.Net.Wifi.P2p.WfdInfoDeviceType +31,android/net/wifi/p2p,WifiP2pWfdInfo,setR2DeviceType,deviceType,Android.Net.Wifi.P2p.WfdInfoDeviceType +31,android/net/wifi,ScanResult,convertChannelToFrequencyMhzIfSupported,band,Android.Net.Wifi.WifiBand +31,android/net/wifi,ScanResult$InformationElement,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/net/wifi,WifiInfo,getCurrentSecurityType,return,Android.Net.Wifi.WifiSecurityType +31,android/net/wifi,WifiInfo$Builder,setCurrentSecurityType,securityType,Android.Net.Wifi.WifiSecurityType +31,android/net/wifi,WifiManager$AddNetworkResult,ctor,statusCode,Android.Net.Wifi.AddNetworkResultStatus +31,android/net/wifi,WifiManager$AddNetworkResult,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/net/wifi,I:WifiManager$SuggestionUserApprovalStatusListener,onUserApprovalStatusChange,status,Android.Net.Wifi.StatusSuggestionApproval +31,android/net/wifi,WifiNetworkSpecifier,getBand,return,Android.Net.Wifi.WifiBand +31,android/net/wifi,WifiNetworkSpecifier$Builder,setBand,band,Android.Net.Wifi.WifiBand +31,android/net/wifi,WifiNetworkSuggestion$Builder,setMacRandomizationSetting,macRandomizationSetting,Android.Net.Wifi.WifiNetworkSuggestionRandomization +31,android/os,BugreportManager$BugreportCallback,onError,errorCode,Android.Os.BugreportErrorCode +31,android/provider,ContactsContract$SimAccount,getEfType,return,Android.Provider.SimAccountType +31,android/provider,ContactsContract$SimAccount,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/provider,SimPhonebookContract$ElementaryFiles,getItemUri,efType,Android.Provider.SimElementaryFileType +31,android/provider,SimPhonebookContract$SimRecords,getContentUri,efType,Android.Provider.SimElementaryFileType +31,android/provider,SimPhonebookContract$SimRecords,getItemUri,efType,Android.Provider.SimElementaryFileType +31,android/security,AppUriAuthenticationPolicy,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/security/keystore,KeyInfo,getSecurityLevel,return,Android.Security.Keystore.KeyStoreSecurityLevel +31,android/service/autofill,FillEventHistory$Event,getNoSaveUiReason,return,Android.Service.Autofill.EventNoSaveUiReason +31,android/service/autofill,I:SavedDatasetsInfoCallback,onError,error,Android.Service.Autofill.SavedDatasetsErrorCode +31,android/service/controls/templates,ThumbnailTemplate,getTemplateType,return,Android.Service.Controls.Templates.ControlTemplateType +31,android/service/notification,NotificationListenerService,migrateNotificationFilter,defaultTypes,Android.Service.Notification.FlagFilterType +31,android/service/notification,NotificationListenerService$Ranking,getLockscreenVisibilityOverride,return,Android.App.NotificationVisibility +31,android/service/textservice,SpellCheckerService$Session,getSupportedAttributes,return,Android.Views.TextService.SuggestionsAttributes +31,android/speech/tts,TextToSpeech,addEarcon,return,Android.Speech.Tts.OperationResult +31,android/speech/tts,TextToSpeech,addSpeech,return,Android.Speech.Tts.OperationResult +31,android/telecom,Call$Details,getState,return,Android.Telecom.CallState +31,android/telecom,CallScreeningService$CallResponse,getCallComposerAttachmentsToShow,return,Android.Telecom.CallComposerAttachment +31,android/telecom,CallScreeningService$CallResponse$Builder,setCallComposerAttachmentsToShow,callComposerAttachmentsToShow,Android.Telecom.CallComposerAttachment +31,android/telecom,Conference,onAnswer,videoState,Android.Telecom.VideoProfileState +31,android/telephony/data,NetworkSliceInfo,getMappedHplmnSliceServiceType,return,Android.Telephony.Data.NetworkSliceServiceType +31,android/telephony/data,NetworkSliceInfo,getSliceServiceType,return,Android.Telephony.Data.NetworkSliceServiceType +31,android/telephony/data,NetworkSliceInfo,getStatus,return,Android.Telephony.Data.NetworkSliceStatus +31,android/telephony/data,NetworkSliceInfo,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony/data,NetworkSliceInfo$Builder,setMappedHplmnSliceServiceType,mappedHplmnSliceServiceType,Android.Telephony.Data.NetworkSliceServiceType +31,android/telephony/data,NetworkSliceInfo$Builder,setSliceServiceType,mSliceServiceType,Android.Telephony.Data.NetworkSliceServiceType +31,android/telephony/data,NetworkSliceInfo$Builder,setStatus,status,Android.Telephony.Data.NetworkSliceStatus +31,android/telephony/data,NetworkSlicingConfig,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony/data,RouteSelectionDescriptor,getSessionType,return,Android.Telephony.Data.RouteSelectionSessionType +31,android/telephony/data,RouteSelectionDescriptor,getSscMode,return,Android.Telephony.Data.RouteSelectionSscMode +31,android/telephony/data,RouteSelectionDescriptor,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony/data,TrafficDescriptor,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony/data,UrspRule,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony/ims/feature,MmTelFeature$MmTelCapabilities,isCapable,capabilities,Android.Telephony.Ims.Feature.MmTelCapabilityType +31,android/telephony/ims,ImsRegistrationAttributes,getAttributeFlags,return,Android.Telephony.Ims.RegistrationAttributes +31,android/telephony/ims,ImsRegistrationAttributes,getTransportType,return,Android.Telephony.Ims.AccessNetworkConstantsTransportType +31,android/telephony/ims,ImsRegistrationAttributes,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony,PhysicalChannelConfig,getConnectionStatus,return,Android.Telephony.PhysicalChannelConnectionStatus +31,android/telephony,PhysicalChannelConfig,getNetworkType,return,Android.Telephony.NetworkType +31,android/telephony,PhysicalChannelConfig,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony,PreciseDataConnectionState,getTransportType,return,Android.Telephony.Ims.AccessNetworkConstantsTransportType +31,android/telephony,SignalStrengthUpdateRequest,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony,SignalThresholdInfo,getRadioAccessNetworkType,return,Android.Telephony.AccessNetworkTypes +31,android/telephony,SignalThresholdInfo,getSignalMeasurementType,return,Android.Telephony.SignalMeasurementType +31,android/telephony,SignalThresholdInfo,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/telephony,SignalThresholdInfo$Builder,setRadioAccessNetworkType,ran,Android.Telephony.AccessNetworkTypes +31,android/telephony,SignalThresholdInfo$Builder,setSignalMeasurementType,signalMeasurementType,Android.Telephony.SignalMeasurementType +31,android/telephony,SubscriptionManager,getDeviceToDeviceStatusSharingPreference,return,Android.Telephony.D2DSharing +31,android/telephony,SubscriptionManager,setDeviceToDeviceStatusSharingPreference,sharing,Android.Telephony.D2DSharing +31,android/telephony,I:TelephonyCallback$CallDisconnectCauseListener,onCallDisconnectCauseChanged,disconnectCause,Android.Telephony.CallDisconnectCause +31,android/telephony,I:TelephonyCallback$CallStateListener,onCallStateChanged,state,Android.Telephony.CallState +31,android/telephony,I:TelephonyCallback$DataActivityListener,onDataActivity,direction,Android.Telephony.DataActivity +31,android/telephony,I:TelephonyCallback$DataConnectionStateListener,onDataConnectionStateChanged,networkType,Android.Telephony.NetworkType +31,android/telephony,I:TelephonyCallback$DataConnectionStateListener,onDataConnectionStateChanged,state,Android.Telephony.DataConnectionStatus +31,android/telephony,I:TelephonyCallback$RegistrationFailedListener,onRegistrationFailed,domain,Android.Telephony.NetworkRegistrationInfoDomain +31,android/telephony,TelephonyManager,getCallComposerStatus,return,Android.Telephony.CallComposerStatus +31,android/telephony,TelephonyManager,getCallStateForSubscription,return,Android.Telephony.CallState +31,android/telephony,TelephonyManager,isDataEnabledForReason,reason,Android.Telephony.DataEnabledReason +31,android/telephony,TelephonyManager,setCallComposerStatus,status,Android.Telephony.CallComposerStatus +31,android/telephony,TelephonyManager,setDataEnabledForReason,reason,Android.Telephony.DataEnabledReason +31,android/telephony,TelephonyManager$CallComposerException,ctor,errorCode,Android.Telephony.CallComposerErrorCode +31,android/telephony,TelephonyManager$CallComposerException,getErrorCode,return,Android.Telephony.CallComposerErrorCode +31,android/util,SizeF,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view,ContentInfo,getFlags,return,Android.Views.ContentInfoFlags +31,android/view,ContentInfo,getSource,return,Android.Views.ContentInfoSource +31,android/view,ContentInfo,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view,ContentInfo$Builder,ctor,source,Android.Views.ContentInfoSource +31,android/view,ContentInfo$Builder,setFlags,flags,Android.Views.ContentInfoFlags +31,android/view,ContentInfo$Builder,setSource,source,Android.Views.ContentInfoSource +31,android/view,Display,getRoundedCorner,position,Android.Views.RoundedCornerPosition +31,android/view/displayhash,DisplayHash,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/displayhash,I:DisplayHashResultCallback,onDisplayHashError,errorCode,Android.Views.DisplayHash.DisplayHashErrorCode +31,android/view/displayhash,VerifiedDisplayHash,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/inputmethod,BaseInputConnection,getSurroundingText,flags,Android.Views.InputMethods.GetTextFlags +31,android/view/inputmethod,EditorInfo,getInitialSurroundingText,flags,Android.Views.InputMethods.GetTextFlags +31,android/view/inputmethod,I:InputConnection,getSurroundingText,flags,Android.Views.InputMethods.GetTextFlags +31,android/view/inputmethod,InputConnectionWrapper,getSurroundingText,flags,Android.Views.InputMethods.GetTextFlags +31,android/view/inputmethod,InputMethodInfo,getConfigChanges,return,Android.Content.PM.ConfigChanges +31,android/view/inputmethod,SurroundingText,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view,KeyEvent,isMediaSessionKey,keyCode,Android.Views.Keycode +31,android/view,RoundedCorner,ctor,position,Android.Views.RoundedCornerPosition +31,android/view,RoundedCorner,getPosition,return,Android.Views.RoundedCornerPosition +31,android/view,RoundedCorner,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view,ScrollCaptureTarget,getHint,return,Android.Views.ScrollCaptureHint +31,android/view,SoundEffectConstants,getConstantForFocusDirection,direction,Android.Views.FocusSearchDirection +31,android/view,SoundEffectConstants,getConstantForFocusDirection,return,Android.Views.SoundEffects +31,android/view,Surface,setFrameRate,changeFrameRateStrategy,Android.Views.SurfaceChangeFrameRate +31,android/view,Surface,setFrameRate,compatibility,Android.Views.SurfaceFrameRateCompatibility +31,android/view,SurfaceControl$Transaction,setFrameRate,changeFrameRateStrategy,Android.Views.SurfaceChangeFrameRate +31,android/view,SurfaceControl$Transaction,setFrameRate,compatibility,Android.Views.SurfaceFrameRateCompatibility +31,android/view/textservice,SpellCheckerSession$SpellCheckerSessionParams,getSupportedAttributes,return,Android.Views.TextService.SuggestionsAttributes +31,android/view/textservice,SpellCheckerSession$SpellCheckerSessionParams$Builder,setSupportedAttributes,supportedAttributes,Android.Views.TextService.SuggestionsAttributes +31,android/view/translation,TranslationCapability,getState,return,Android.Views.Translation.TranslationState +31,android/view/translation,TranslationCapability,getSupportedTranslationFlags,return,Android.Views.Translation.TranslationContextFlags +31,android/view/translation,TranslationCapability,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationContext,getTranslationFlags,return,Android.Views.Translation.TranslationContextFlags +31,android/view/translation,TranslationContext,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationContext$Builder,setTranslationFlags,value,Android.Views.Translation.TranslationContextFlags +31,android/view/translation,TranslationManager,getOnDeviceTranslationCapabilities,sourceFormat,Android.Views.Translation.TranslationDataFormat +31,android/view/translation,TranslationManager,getOnDeviceTranslationCapabilities,targetFormat,Android.Views.Translation.TranslationDataFormat +31,android/view/translation,TranslationRequest,getFlags,return,Android.Views.Translation.TranslationRequestFlags +31,android/view/translation,TranslationRequest,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationRequest$Builder,setFlags,value,Android.Views.Translation.TranslationRequestFlags +31,android/view/translation,TranslationRequestValue,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationResponse,getTranslationStatus,return,Android.Views.Translation.TranslationResponseStatus +31,android/view/translation,TranslationResponse,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationResponse$Builder,ctor,translationStatus,Android.Views.Translation.TranslationResponseStatus +31,android/view/translation,TranslationResponseValue,getStatusCode,return,Android.Views.Translation.TranslationResponseValueStatus +31,android/view/translation,TranslationResponseValue,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,TranslationResponseValue$Builder,ctor,statusCode,Android.Views.Translation.TranslationResponseValueStatus +31,android/view/translation,TranslationSpec,ctor,dataFormat,Android.Views.Translation.TranslationDataFormat +31,android/view/translation,TranslationSpec,getDataFormat,return,Android.Views.Translation.TranslationDataFormat +31,android/view/translation,TranslationSpec,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,ViewTranslationRequest,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view/translation,ViewTranslationResponse,writeToParcel,flags,Android.OS.ParcelableWriteFlags +31,android/view,View,getScrollCaptureHint,return,Android.Views.ScrollCaptureHint +31,android/view,View,setScrollCaptureHint,hint,Android.Views.ScrollCaptureHint +31,android/view,WindowInsets,getRoundedCorner,position,Android.Views.RoundedCornerPosition +31,android/view,WindowInsets$Builder,setRoundedCorner,position,Android.Views.RoundedCornerPosition +31,android/widget,RemoteViews,setFloatDimen,unit,Android.Util.ComplexUnitType +31,android/widget,RemoteViews,setIntDimen,unit,Android.Util.ComplexUnitType +31,android/widget,RemoteViews,setViewLayoutHeight,units,Android.Util.ComplexUnitType +31,android/widget,RemoteViews,setViewLayoutMargin,type,Android.Widget.RemoteViewsMargin +31,android/widget,RemoteViews,setViewLayoutMargin,units,Android.Util.ComplexUnitType +31,android/widget,RemoteViews,setViewLayoutMarginAttr,type,Android.Widget.RemoteViewsMargin +31,android/widget,RemoteViews,setViewLayoutMarginDimen,type,Android.Widget.RemoteViewsMargin +31,android/widget,RemoteViews,setViewLayoutWidth,units,Android.Util.ComplexUnitType +31,android/widget,RemoteViews,setViewOutlinePreferredRadius,units,Android.Util.ComplexUnitType +31,android/widget,RemoteViews$RemoteCollectionItems,writeToParcel,flags,Android.OS.ParcelableWriteFlags