diff --git a/app/src/main/java/com/utsmm/kbz/ui/settings/InjectKeyFragment.java b/app/src/main/java/com/utsmm/kbz/ui/settings/InjectKeyFragment.java
new file mode 100644
index 0000000..59f1227
--- /dev/null
+++ b/app/src/main/java/com/utsmm/kbz/ui/settings/InjectKeyFragment.java
@@ -0,0 +1,193 @@
+package com.utsmm.kbz.ui.settings;
+
+import android.os.Bundle;
+import android.text.TextUtils;
+import android.view.View;
+import android.widget.Toast;
+
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+
+import com.nexgo.downloadkey.downloadflow.DownloadFEntity;
+import com.nexgo.downloadkey.downloadflow.DownloadFlow;
+import com.nexgo.downloadkey.downloadflow.DownloadFlowProcessListener;
+import com.nexgo.downloadkey.downloadflow.DownloadFlowResultEntity;
+import com.nexgo.downloadkey.downloadflow.DownloadResult;
+import com.utsmyanmar.baselib.fragment.DataBindingFragment;
+import com.utsmyanmar.baselib.util.DataBindingConfig;
+import com.utsmyanmar.paylibs.utils.core_utils.SystemParamsOperation;
+import com.utsmm.kbz.BR;
+import com.utsmm.kbz.R;
+import com.utsmm.kbz.databinding.FragmentInjectKeyBinding;
+import com.utsmyanmar.paylibs.utils.LogUtil;
+import com.utsmm.kbz.util.tms.TMSUtil;
+
+public class InjectKeyFragment extends DataBindingFragment {
+
+ private static final String TAG = InjectKeyFragment.class.getSimpleName();
+
+ // Data binding will handle view access automatically
+ private FragmentInjectKeyBinding binding;
+
+ // Key injection variables
+ private DownloadFlow mDownloadFlow;
+ private int keyIndexTmp = 8; // Default key index
+
+ @Override
+ protected void initViewModel() {
+ // No specific viewmodels needed for this fragment
+ }
+
+ @Override
+ protected DataBindingConfig getDataBindingConfig() {
+ // This is the key method that links the XML and fragment properly
+ return new DataBindingConfig(R.layout.fragment_inject_key, 0, null)
+ .addBindingParam(BR.click, new ClickEvent());
+ }
+
+ @Override
+ protected int currentId() {
+ return R.id.injectKeyFragment;
+ }
+
+ @Override
+ protected int hostId() {
+ return R.id.nav_host_fragment;
+ }
+
+ @Override
+ protected int routeId() {
+ return 0;
+ }
+
+ @Override
+ public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
+ super.onViewCreated(view, savedInstanceState);
+ try {
+
+ // Get the binding from the base class - this is automatically created
+ binding = (FragmentInjectKeyBinding) mBinding;
+
+ updateConfigurationInfo();
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ @Override
+ public void onResume() {
+ super.onResume();
+
+ setToolBarTitleWithBackIcon("Inject Key");
+
+ }
+
+ private void updateConfigurationInfo() {
+
+ String terminalId = SystemParamsOperation.getInstance().getTerminalId();
+ binding.terminalIdValue.setText(terminalId != null && !terminalId.isEmpty() ?
+ terminalId : "Not configured");
+
+ // Update Merchant ID
+ String merchantId = SystemParamsOperation.getInstance().getMerchantId();
+ binding.merchantIdValue.setText(merchantId != null && !merchantId.isEmpty() ?
+ merchantId : "Not configured");
+
+ // Update Serial Number
+ String serialNo = TMSUtil.getInstance().getSerialNumber();
+ binding.serialNumberValue.setText(serialNo != null && !serialNo.isEmpty() ?
+ serialNo : "Not configured");
+
+
+ }
+
+ private void loadKeyFromKeyPOS() {
+ try {
+ if (TextUtils.isEmpty(binding.etKeyIndex.getText())) {
+ Toast.makeText(getContext(), "Please input key index", Toast.LENGTH_SHORT).show();
+ return;
+ }
+
+ String keyIndexText = binding.etKeyIndex.getText().toString().trim();
+
+ try {
+ keyIndexTmp = Integer.parseInt(keyIndexText);
+ } catch (NumberFormatException e) {
+ Toast.makeText(getContext(), "Invalid key index format", Toast.LENGTH_SHORT).show();
+ return;
+ }
+
+ showLoadingDialog("Loading key...");
+
+ mDownloadFlow = DownloadFlow.getInstance();
+
+ String terminalId = SystemParamsOperation.getInstance().getTerminalId();
+ String merchantId = SystemParamsOperation.getInstance().getMerchantId();
+ String serialNo = TMSUtil.getInstance().getSerialNumber();
+
+ // Validate configuration
+ if (TextUtils.isEmpty(terminalId) || TextUtils.isEmpty(merchantId) || TextUtils.isEmpty(serialNo)) {
+ dismissLoadingDialog();
+ showDeclineDialog("Please configure Terminal ID, Merchant ID first in TMS Configuration");
+ return;
+ }
+
+ final DownloadFEntity downloadFEntity = new DownloadFEntity();
+ downloadFEntity.setSn(serialNo.getBytes());
+ downloadFEntity.setMid(merchantId.getBytes());
+ downloadFEntity.setTid(terminalId.getBytes());
+ downloadFEntity.setTmkIndex(keyIndexTmp);
+ downloadFEntity.setPort(0);
+ downloadFEntity.setTimeOut(10);
+
+ int result = mDownloadFlow.startLoadKey(getActivity(), downloadFEntity, onDownloadFlowProcessListener);
+ if (result != DownloadResult.Success) {
+ dismissLoadingDialog();
+ showDeclineDialog("Failed to start key injection process");
+ LogUtil.e(TAG, "Failed to start key injection, result: " + result);
+ }
+
+ } catch (Exception e) {
+ dismissLoadingDialog();
+ LogUtil.e(TAG, "Error in key injection: " + e.getMessage());
+ showDeclineDialog("Error occurred during key injection: " + e.getMessage());
+ }
+ }
+
+ private DownloadFlowProcessListener onDownloadFlowProcessListener = new DownloadFlowProcessListener() {
+ @Override
+ public void onFinish(int ret, DownloadFlowResultEntity downloadFlowResultEntity) {
+ try {
+ dismissLoadingDialog();
+
+ if (ret == DownloadResult.Success) {
+ // Show success dialog with key index
+ showSuccessDialog("Key injection successful!\nKey Index: " + keyIndexTmp);
+ LogUtil.d(TAG, "Key injection successful for index: " + keyIndexTmp);
+ } else {
+ // Show decline dialog
+ showDeclineDialog("Key injection failed!\nError code: " + ret);
+ LogUtil.e(TAG, "Key injection failed with error code: " + ret);
+ }
+ } catch (Exception e) {
+ LogUtil.e(TAG, "Error handling injection result: " + e.getMessage());
+ showDeclineDialog("Error processing injection result");
+ }
+ }
+ };
+
+ // ClickEvent class for data binding - this is the proper pattern
+ public class ClickEvent {
+
+ public void onInjectKeyClick() {
+ try {
+ LogUtil.d(TAG, "Inject key button clicked");
+ loadKeyFromKeyPOS();
+ } catch (Exception e) {
+ LogUtil.e(TAG, "Error in inject key click: " + e.getMessage());
+ showDeclineDialog("Error occurred: " + e.getMessage());
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/nexdlkey-lib/build.gradle b/nexdlkey-lib/build.gradle
new file mode 100644
index 0000000..22d3e4a
--- /dev/null
+++ b/nexdlkey-lib/build.gradle
@@ -0,0 +1,2 @@
+configurations.maybeCreate("default")
+artifacts.add("default", file('nexgo-sdk-dlkey-1.0.2.aar'))
\ No newline at end of file
diff --git a/nexdlkey-lib/build/.transforms/2210eae45331ebea97137f116e71ba5f/results.bin b/nexdlkey-lib/build/.transforms/2210eae45331ebea97137f116e71ba5f/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/3d66a1ab7308b56118b6296aa9355f49/results.bin b/nexdlkey-lib/build/.transforms/3d66a1ab7308b56118b6296aa9355f49/results.bin
new file mode 100644
index 0000000..c626d1b
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/3d66a1ab7308b56118b6296aa9355f49/results.bin
@@ -0,0 +1 @@
+i/jars/classes.jar
diff --git a/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/results.bin b/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/results.bin
new file mode 100644
index 0000000..5aac0ef
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/results.bin
@@ -0,0 +1 @@
+o/nexgo-sdk-dlkey-1.0.2-runtime
diff --git a/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/transformed/nexgo-sdk-dlkey-1.0.2-runtime/classes.dex b/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/transformed/nexgo-sdk-dlkey-1.0.2-runtime/classes.dex
new file mode 100644
index 0000000..0018052
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/71ecb5f2774ac00f4f022f4c2b6f3f0a/transformed/nexgo-sdk-dlkey-1.0.2-runtime/classes.dex differ
diff --git a/nexdlkey-lib/build/.transforms/730531c0f1e82928d65931c3d593db0e/results.bin b/nexdlkey-lib/build/.transforms/730531c0f1e82928d65931c3d593db0e/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/7730a39fa68f6fe3b499ed0eeb42a360/results.bin b/nexdlkey-lib/build/.transforms/7730a39fa68f6fe3b499ed0eeb42a360/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/results.bin b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/results.bin
new file mode 100644
index 0000000..e167f53
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/results.bin
@@ -0,0 +1 @@
+o/nexgo-sdk-dlkey-1.0.2
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/AndroidManifest.xml b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/AndroidManifest.xml
new file mode 100644
index 0000000..518d3e7
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/AndroidManifest.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/R.txt b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/R.txt
new file mode 100644
index 0000000..f7e7724
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/R.txt
@@ -0,0 +1,1428 @@
+int anim abc_fade_in 0x7f010001
+int anim abc_fade_out 0x7f010002
+int anim abc_grow_fade_in_from_bottom 0x7f010003
+int anim abc_popup_enter 0x7f010004
+int anim abc_popup_exit 0x7f010005
+int anim abc_shrink_fade_out_from_bottom 0x7f010006
+int anim abc_slide_in_bottom 0x7f010007
+int anim abc_slide_in_top 0x7f010008
+int anim abc_slide_out_bottom 0x7f010009
+int anim abc_slide_out_top 0x7f01000a
+int attr actionBarDivider 0x7f040001
+int attr actionBarItemBackground 0x7f040002
+int attr actionBarPopupTheme 0x7f040003
+int attr actionBarSize 0x7f040004
+int attr actionBarSplitStyle 0x7f040005
+int attr actionBarStyle 0x7f040006
+int attr actionBarTabBarStyle 0x7f040007
+int attr actionBarTabStyle 0x7f040008
+int attr actionBarTabTextStyle 0x7f040009
+int attr actionBarTheme 0x7f04000a
+int attr actionBarWidgetTheme 0x7f04000b
+int attr actionButtonStyle 0x7f04000c
+int attr actionDropDownStyle 0x7f04000d
+int attr actionLayout 0x7f04000e
+int attr actionMenuTextAppearance 0x7f04000f
+int attr actionMenuTextColor 0x7f040010
+int attr actionModeBackground 0x7f040011
+int attr actionModeCloseButtonStyle 0x7f040012
+int attr actionModeCloseDrawable 0x7f040013
+int attr actionModeCopyDrawable 0x7f040014
+int attr actionModeCutDrawable 0x7f040015
+int attr actionModeFindDrawable 0x7f040016
+int attr actionModePasteDrawable 0x7f040017
+int attr actionModePopupWindowStyle 0x7f040018
+int attr actionModeSelectAllDrawable 0x7f040019
+int attr actionModeShareDrawable 0x7f04001a
+int attr actionModeSplitBackground 0x7f04001b
+int attr actionModeStyle 0x7f04001c
+int attr actionModeWebSearchDrawable 0x7f04001d
+int attr actionOverflowButtonStyle 0x7f04001e
+int attr actionOverflowMenuStyle 0x7f04001f
+int attr actionProviderClass 0x7f040020
+int attr actionViewClass 0x7f040021
+int attr activityChooserViewStyle 0x7f040022
+int attr alertDialogButtonGroupStyle 0x7f040023
+int attr alertDialogCenterButtons 0x7f040024
+int attr alertDialogStyle 0x7f040025
+int attr alertDialogTheme 0x7f040026
+int attr allowStacking 0x7f040027
+int attr alpha 0x7f040028
+int attr arrowHeadLength 0x7f040029
+int attr arrowShaftLength 0x7f04002a
+int attr autoCompleteTextViewStyle 0x7f04002b
+int attr background 0x7f04002c
+int attr backgroundSplit 0x7f04002d
+int attr backgroundStacked 0x7f04002e
+int attr backgroundTint 0x7f04002f
+int attr backgroundTintMode 0x7f040030
+int attr barLength 0x7f040031
+int attr borderlessButtonStyle 0x7f040032
+int attr buttonBarButtonStyle 0x7f040033
+int attr buttonBarNegativeButtonStyle 0x7f040034
+int attr buttonBarNeutralButtonStyle 0x7f040035
+int attr buttonBarPositiveButtonStyle 0x7f040036
+int attr buttonBarStyle 0x7f040037
+int attr buttonGravity 0x7f040038
+int attr buttonPanelSideLayout 0x7f040039
+int attr buttonStyle 0x7f04003a
+int attr buttonStyleSmall 0x7f04003b
+int attr buttonTint 0x7f04003c
+int attr buttonTintMode 0x7f04003d
+int attr checkboxStyle 0x7f04003e
+int attr checkedTextViewStyle 0x7f04003f
+int attr closeIcon 0x7f040040
+int attr closeItemLayout 0x7f040041
+int attr collapseContentDescription 0x7f040042
+int attr collapseIcon 0x7f040043
+int attr color 0x7f040044
+int attr colorAccent 0x7f040045
+int attr colorBackgroundFloating 0x7f040046
+int attr colorButtonNormal 0x7f040047
+int attr colorControlActivated 0x7f040048
+int attr colorControlHighlight 0x7f040049
+int attr colorControlNormal 0x7f04004a
+int attr colorPrimary 0x7f04004b
+int attr colorPrimaryDark 0x7f04004c
+int attr colorSwitchThumbNormal 0x7f04004d
+int attr commitIcon 0x7f04004e
+int attr contentDescription 0x7f04004f
+int attr contentInsetEnd 0x7f040050
+int attr contentInsetEndWithActions 0x7f040051
+int attr contentInsetLeft 0x7f040052
+int attr contentInsetRight 0x7f040053
+int attr contentInsetStart 0x7f040054
+int attr contentInsetStartWithNavigation 0x7f040055
+int attr controlBackground 0x7f040056
+int attr customNavigationLayout 0x7f040057
+int attr defaultQueryHint 0x7f040058
+int attr dialogPreferredPadding 0x7f040059
+int attr dialogTheme 0x7f04005a
+int attr displayOptions 0x7f04005b
+int attr divider 0x7f04005c
+int attr dividerHorizontal 0x7f04005d
+int attr dividerPadding 0x7f04005e
+int attr dividerVertical 0x7f04005f
+int attr drawableSize 0x7f040060
+int attr drawerArrowStyle 0x7f040061
+int attr dropDownListViewStyle 0x7f040062
+int attr dropdownListPreferredItemHeight 0x7f040063
+int attr editTextBackground 0x7f040064
+int attr editTextColor 0x7f040065
+int attr editTextStyle 0x7f040066
+int attr elevation 0x7f040067
+int attr expandActivityOverflowButtonDrawable 0x7f040068
+int attr gapBetweenBars 0x7f040069
+int attr goIcon 0x7f04006a
+int attr height 0x7f04006b
+int attr hideOnContentScroll 0x7f04006c
+int attr homeAsUpIndicator 0x7f04006d
+int attr homeLayout 0x7f04006e
+int attr icon 0x7f04006f
+int attr iconifiedByDefault 0x7f040070
+int attr imageButtonStyle 0x7f040071
+int attr indeterminateProgressStyle 0x7f040072
+int attr initialActivityCount 0x7f040073
+int attr isLightTheme 0x7f040074
+int attr itemPadding 0x7f040075
+int attr layout 0x7f040076
+int attr listChoiceBackgroundIndicator 0x7f040077
+int attr listDividerAlertDialog 0x7f040078
+int attr listItemLayout 0x7f040079
+int attr listLayout 0x7f04007a
+int attr listMenuViewStyle 0x7f04007b
+int attr listPopupWindowStyle 0x7f04007c
+int attr listPreferredItemHeight 0x7f04007d
+int attr listPreferredItemHeightLarge 0x7f04007e
+int attr listPreferredItemHeightSmall 0x7f04007f
+int attr listPreferredItemPaddingLeft 0x7f040080
+int attr listPreferredItemPaddingRight 0x7f040081
+int attr logo 0x7f040082
+int attr logoDescription 0x7f040083
+int attr maxButtonHeight 0x7f040084
+int attr measureWithLargestChild 0x7f040085
+int attr multiChoiceItemLayout 0x7f040086
+int attr navigationContentDescription 0x7f040087
+int attr navigationIcon 0x7f040088
+int attr navigationMode 0x7f040089
+int attr overlapAnchor 0x7f04008a
+int attr paddingBottomNoButtons 0x7f04008b
+int attr paddingEnd 0x7f04008c
+int attr paddingStart 0x7f04008d
+int attr paddingTopNoTitle 0x7f04008e
+int attr panelBackground 0x7f04008f
+int attr panelMenuListTheme 0x7f040090
+int attr panelMenuListWidth 0x7f040091
+int attr popupMenuStyle 0x7f040092
+int attr popupTheme 0x7f040093
+int attr popupWindowStyle 0x7f040094
+int attr preserveIconSpacing 0x7f040095
+int attr progressBarPadding 0x7f040096
+int attr progressBarStyle 0x7f040097
+int attr queryBackground 0x7f040098
+int attr queryHint 0x7f040099
+int attr radioButtonStyle 0x7f04009a
+int attr ratingBarStyle 0x7f04009b
+int attr ratingBarStyleIndicator 0x7f04009c
+int attr ratingBarStyleSmall 0x7f04009d
+int attr searchHintIcon 0x7f04009e
+int attr searchIcon 0x7f04009f
+int attr searchViewStyle 0x7f0400a0
+int attr seekBarStyle 0x7f0400a1
+int attr selectableItemBackground 0x7f0400a2
+int attr selectableItemBackgroundBorderless 0x7f0400a3
+int attr showAsAction 0x7f0400a4
+int attr showDividers 0x7f0400a5
+int attr showText 0x7f0400a6
+int attr showTitle 0x7f0400a7
+int attr singleChoiceItemLayout 0x7f0400a8
+int attr spinBars 0x7f0400a9
+int attr spinnerDropDownItemStyle 0x7f0400aa
+int attr spinnerStyle 0x7f0400ab
+int attr splitTrack 0x7f0400ac
+int attr srcCompat 0x7f0400ad
+int attr state_above_anchor 0x7f0400ae
+int attr subMenuArrow 0x7f0400af
+int attr submitBackground 0x7f0400b0
+int attr subtitle 0x7f0400b1
+int attr subtitleTextAppearance 0x7f0400b2
+int attr subtitleTextColor 0x7f0400b3
+int attr subtitleTextStyle 0x7f0400b4
+int attr suggestionRowLayout 0x7f0400b5
+int attr switchMinWidth 0x7f0400b6
+int attr switchPadding 0x7f0400b7
+int attr switchStyle 0x7f0400b8
+int attr switchTextAppearance 0x7f0400b9
+int attr textAllCaps 0x7f0400ba
+int attr textAppearanceLargePopupMenu 0x7f0400bb
+int attr textAppearanceListItem 0x7f0400bc
+int attr textAppearanceListItemSmall 0x7f0400bd
+int attr textAppearancePopupMenuHeader 0x7f0400be
+int attr textAppearanceSearchResultSubtitle 0x7f0400bf
+int attr textAppearanceSearchResultTitle 0x7f0400c0
+int attr textAppearanceSmallPopupMenu 0x7f0400c1
+int attr textColorAlertDialogListItem 0x7f0400c2
+int attr textColorSearchUrl 0x7f0400c3
+int attr theme 0x7f0400c4
+int attr thickness 0x7f0400c5
+int attr thumbTextPadding 0x7f0400c6
+int attr thumbTint 0x7f0400c7
+int attr thumbTintMode 0x7f0400c8
+int attr tickMark 0x7f0400c9
+int attr tickMarkTint 0x7f0400ca
+int attr tickMarkTintMode 0x7f0400cb
+int attr title 0x7f0400cc
+int attr titleMargin 0x7f0400cd
+int attr titleMarginBottom 0x7f0400ce
+int attr titleMarginEnd 0x7f0400cf
+int attr titleMarginStart 0x7f0400d0
+int attr titleMarginTop 0x7f0400d1
+int attr titleMargins 0x7f0400d2
+int attr titleTextAppearance 0x7f0400d3
+int attr titleTextColor 0x7f0400d4
+int attr titleTextStyle 0x7f0400d5
+int attr toolbarNavigationButtonStyle 0x7f0400d6
+int attr toolbarStyle 0x7f0400d7
+int attr tooltipText 0x7f0400d8
+int attr track 0x7f0400d9
+int attr trackTint 0x7f0400da
+int attr trackTintMode 0x7f0400db
+int attr voiceIcon 0x7f0400dc
+int attr windowActionBar 0x7f0400dd
+int attr windowActionBarOverlay 0x7f0400de
+int attr windowActionModeOverlay 0x7f0400df
+int attr windowFixedHeightMajor 0x7f0400e0
+int attr windowFixedHeightMinor 0x7f0400e1
+int attr windowFixedWidthMajor 0x7f0400e2
+int attr windowFixedWidthMinor 0x7f0400e3
+int attr windowMinWidthMajor 0x7f0400e4
+int attr windowMinWidthMinor 0x7f0400e5
+int attr windowNoTitle 0x7f0400e6
+int bool abc_action_bar_embed_tabs 0x7f050001
+int bool abc_allow_stacked_button_bar 0x7f050002
+int bool abc_config_actionMenuItemAllCaps 0x7f050003
+int bool abc_config_closeDialogWhenTouchOutside 0x7f050004
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050005
+int color abc_background_cache_hint_selector_material_dark 0x7f060001
+int color abc_background_cache_hint_selector_material_light 0x7f060002
+int color abc_btn_colored_borderless_text_material 0x7f060003
+int color abc_btn_colored_text_material 0x7f060004
+int color abc_color_highlight_material 0x7f060005
+int color abc_hint_foreground_material_dark 0x7f060006
+int color abc_hint_foreground_material_light 0x7f060007
+int color abc_input_method_navigation_guard 0x7f060008
+int color abc_primary_text_disable_only_material_dark 0x7f060009
+int color abc_primary_text_disable_only_material_light 0x7f06000a
+int color abc_primary_text_material_dark 0x7f06000b
+int color abc_primary_text_material_light 0x7f06000c
+int color abc_search_url_text 0x7f06000d
+int color abc_search_url_text_normal 0x7f06000e
+int color abc_search_url_text_pressed 0x7f06000f
+int color abc_search_url_text_selected 0x7f060010
+int color abc_secondary_text_material_dark 0x7f060011
+int color abc_secondary_text_material_light 0x7f060012
+int color abc_tint_btn_checkable 0x7f060013
+int color abc_tint_default 0x7f060014
+int color abc_tint_edittext 0x7f060015
+int color abc_tint_seek_thumb 0x7f060016
+int color abc_tint_spinner 0x7f060017
+int color abc_tint_switch_thumb 0x7f060018
+int color abc_tint_switch_track 0x7f060019
+int color accent_material_dark 0x7f06001a
+int color accent_material_light 0x7f06001b
+int color background_floating_material_dark 0x7f06001c
+int color background_floating_material_light 0x7f06001d
+int color background_material_dark 0x7f06001e
+int color background_material_light 0x7f06001f
+int color bright_foreground_disabled_material_dark 0x7f060020
+int color bright_foreground_disabled_material_light 0x7f060021
+int color bright_foreground_inverse_material_dark 0x7f060022
+int color bright_foreground_inverse_material_light 0x7f060023
+int color bright_foreground_material_dark 0x7f060024
+int color bright_foreground_material_light 0x7f060025
+int color button_material_dark 0x7f060026
+int color button_material_light 0x7f060027
+int color dim_foreground_disabled_material_dark 0x7f060028
+int color dim_foreground_disabled_material_light 0x7f060029
+int color dim_foreground_material_dark 0x7f06002a
+int color dim_foreground_material_light 0x7f06002b
+int color foreground_material_dark 0x7f06002c
+int color foreground_material_light 0x7f06002d
+int color highlighted_text_material_dark 0x7f06002e
+int color highlighted_text_material_light 0x7f06002f
+int color material_blue_grey_800 0x7f060030
+int color material_blue_grey_900 0x7f060031
+int color material_blue_grey_950 0x7f060032
+int color material_deep_teal_200 0x7f060033
+int color material_deep_teal_500 0x7f060034
+int color material_grey_100 0x7f060035
+int color material_grey_300 0x7f060036
+int color material_grey_50 0x7f060037
+int color material_grey_600 0x7f060038
+int color material_grey_800 0x7f060039
+int color material_grey_850 0x7f06003a
+int color material_grey_900 0x7f06003b
+int color notification_action_color_filter 0x7f06003c
+int color notification_icon_bg_color 0x7f06003d
+int color notification_material_background_media_default_color 0x7f06003e
+int color primary_dark_material_dark 0x7f06003f
+int color primary_dark_material_light 0x7f060040
+int color primary_material_dark 0x7f060041
+int color primary_material_light 0x7f060042
+int color primary_text_default_material_dark 0x7f060043
+int color primary_text_default_material_light 0x7f060044
+int color primary_text_disabled_material_dark 0x7f060045
+int color primary_text_disabled_material_light 0x7f060046
+int color ripple_material_dark 0x7f060047
+int color ripple_material_light 0x7f060048
+int color secondary_text_default_material_dark 0x7f060049
+int color secondary_text_default_material_light 0x7f06004a
+int color secondary_text_disabled_material_dark 0x7f06004b
+int color secondary_text_disabled_material_light 0x7f06004c
+int color switch_thumb_disabled_material_dark 0x7f06004d
+int color switch_thumb_disabled_material_light 0x7f06004e
+int color switch_thumb_material_dark 0x7f06004f
+int color switch_thumb_material_light 0x7f060050
+int color switch_thumb_normal_material_dark 0x7f060051
+int color switch_thumb_normal_material_light 0x7f060052
+int dimen abc_action_bar_content_inset_material 0x7f080001
+int dimen abc_action_bar_content_inset_with_nav 0x7f080002
+int dimen abc_action_bar_default_height_material 0x7f080003
+int dimen abc_action_bar_default_padding_end_material 0x7f080004
+int dimen abc_action_bar_default_padding_start_material 0x7f080005
+int dimen abc_action_bar_elevation_material 0x7f080006
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f080007
+int dimen abc_action_bar_overflow_padding_end_material 0x7f080008
+int dimen abc_action_bar_overflow_padding_start_material 0x7f080009
+int dimen abc_action_bar_progress_bar_size 0x7f08000a
+int dimen abc_action_bar_stacked_max_height 0x7f08000b
+int dimen abc_action_bar_stacked_tab_max_width 0x7f08000c
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f08000d
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f08000e
+int dimen abc_action_button_min_height_material 0x7f08000f
+int dimen abc_action_button_min_width_material 0x7f080010
+int dimen abc_action_button_min_width_overflow_material 0x7f080011
+int dimen abc_alert_dialog_button_bar_height 0x7f080012
+int dimen abc_button_inset_horizontal_material 0x7f080013
+int dimen abc_button_inset_vertical_material 0x7f080014
+int dimen abc_button_padding_horizontal_material 0x7f080015
+int dimen abc_button_padding_vertical_material 0x7f080016
+int dimen abc_cascading_menus_min_smallest_width 0x7f080017
+int dimen abc_config_prefDialogWidth 0x7f080018
+int dimen abc_control_corner_material 0x7f080019
+int dimen abc_control_inset_material 0x7f08001a
+int dimen abc_control_padding_material 0x7f08001b
+int dimen abc_dialog_fixed_height_major 0x7f08001c
+int dimen abc_dialog_fixed_height_minor 0x7f08001d
+int dimen abc_dialog_fixed_width_major 0x7f08001e
+int dimen abc_dialog_fixed_width_minor 0x7f08001f
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f080020
+int dimen abc_dialog_list_padding_top_no_title 0x7f080021
+int dimen abc_dialog_min_width_major 0x7f080022
+int dimen abc_dialog_min_width_minor 0x7f080023
+int dimen abc_dialog_padding_material 0x7f080024
+int dimen abc_dialog_padding_top_material 0x7f080025
+int dimen abc_dialog_title_divider_material 0x7f080026
+int dimen abc_disabled_alpha_material_dark 0x7f080027
+int dimen abc_disabled_alpha_material_light 0x7f080028
+int dimen abc_dropdownitem_icon_width 0x7f080029
+int dimen abc_dropdownitem_text_padding_left 0x7f08002a
+int dimen abc_dropdownitem_text_padding_right 0x7f08002b
+int dimen abc_edit_text_inset_bottom_material 0x7f08002c
+int dimen abc_edit_text_inset_horizontal_material 0x7f08002d
+int dimen abc_edit_text_inset_top_material 0x7f08002e
+int dimen abc_floating_window_z 0x7f08002f
+int dimen abc_list_item_padding_horizontal_material 0x7f080030
+int dimen abc_panel_menu_list_width 0x7f080031
+int dimen abc_progress_bar_height_material 0x7f080032
+int dimen abc_search_view_preferred_height 0x7f080033
+int dimen abc_search_view_preferred_width 0x7f080034
+int dimen abc_seekbar_track_background_height_material 0x7f080035
+int dimen abc_seekbar_track_progress_height_material 0x7f080036
+int dimen abc_select_dialog_padding_start_material 0x7f080037
+int dimen abc_switch_padding 0x7f080038
+int dimen abc_text_size_body_1_material 0x7f080039
+int dimen abc_text_size_body_2_material 0x7f08003a
+int dimen abc_text_size_button_material 0x7f08003b
+int dimen abc_text_size_caption_material 0x7f08003c
+int dimen abc_text_size_display_1_material 0x7f08003d
+int dimen abc_text_size_display_2_material 0x7f08003e
+int dimen abc_text_size_display_3_material 0x7f08003f
+int dimen abc_text_size_display_4_material 0x7f080040
+int dimen abc_text_size_headline_material 0x7f080041
+int dimen abc_text_size_large_material 0x7f080042
+int dimen abc_text_size_medium_material 0x7f080043
+int dimen abc_text_size_menu_header_material 0x7f080044
+int dimen abc_text_size_menu_material 0x7f080045
+int dimen abc_text_size_small_material 0x7f080046
+int dimen abc_text_size_subhead_material 0x7f080047
+int dimen abc_text_size_subtitle_material_toolbar 0x7f080048
+int dimen abc_text_size_title_material 0x7f080049
+int dimen abc_text_size_title_material_toolbar 0x7f08004a
+int dimen disabled_alpha_material_dark 0x7f08004b
+int dimen disabled_alpha_material_light 0x7f08004c
+int dimen highlight_alpha_material_colored 0x7f08004d
+int dimen highlight_alpha_material_dark 0x7f08004e
+int dimen highlight_alpha_material_light 0x7f08004f
+int dimen hint_alpha_material_dark 0x7f080050
+int dimen hint_alpha_material_light 0x7f080051
+int dimen hint_pressed_alpha_material_dark 0x7f080052
+int dimen hint_pressed_alpha_material_light 0x7f080053
+int dimen notification_action_icon_size 0x7f080054
+int dimen notification_action_text_size 0x7f080055
+int dimen notification_big_circle_margin 0x7f080056
+int dimen notification_content_margin_start 0x7f080057
+int dimen notification_large_icon_height 0x7f080058
+int dimen notification_large_icon_width 0x7f080059
+int dimen notification_main_column_padding_top 0x7f08005a
+int dimen notification_media_narrow_margin 0x7f08005b
+int dimen notification_right_icon_size 0x7f08005c
+int dimen notification_right_side_padding_top 0x7f08005d
+int dimen notification_small_icon_background_padding 0x7f08005e
+int dimen notification_small_icon_size_as_large 0x7f08005f
+int dimen notification_subtext_size 0x7f080060
+int dimen notification_top_pad 0x7f080061
+int dimen notification_top_pad_large_text 0x7f080062
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f090001
+int drawable abc_action_bar_item_background_material 0x7f090002
+int drawable abc_btn_borderless_material 0x7f090003
+int drawable abc_btn_check_material 0x7f090004
+int drawable abc_btn_check_to_on_mtrl_000 0x7f090005
+int drawable abc_btn_check_to_on_mtrl_015 0x7f090006
+int drawable abc_btn_colored_material 0x7f090007
+int drawable abc_btn_default_mtrl_shape 0x7f090008
+int drawable abc_btn_radio_material 0x7f090009
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f09000a
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f09000b
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f09000c
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f09000d
+int drawable abc_cab_background_internal_bg 0x7f09000e
+int drawable abc_cab_background_top_material 0x7f09000f
+int drawable abc_cab_background_top_mtrl_alpha 0x7f090010
+int drawable abc_control_background_material 0x7f090011
+int drawable abc_dialog_material_background 0x7f090012
+int drawable abc_edit_text_material 0x7f090013
+int drawable abc_ic_ab_back_material 0x7f090014
+int drawable abc_ic_arrow_drop_right_black_24dp 0x7f090015
+int drawable abc_ic_clear_material 0x7f090016
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f090017
+int drawable abc_ic_go_search_api_material 0x7f090018
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f090019
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f09001a
+int drawable abc_ic_menu_overflow_material 0x7f09001b
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f09001c
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f09001d
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f09001e
+int drawable abc_ic_search_api_material 0x7f09001f
+int drawable abc_ic_star_black_16dp 0x7f090020
+int drawable abc_ic_star_black_36dp 0x7f090021
+int drawable abc_ic_star_black_48dp 0x7f090022
+int drawable abc_ic_star_half_black_16dp 0x7f090023
+int drawable abc_ic_star_half_black_36dp 0x7f090024
+int drawable abc_ic_star_half_black_48dp 0x7f090025
+int drawable abc_ic_voice_search_api_material 0x7f090026
+int drawable abc_item_background_holo_dark 0x7f090027
+int drawable abc_item_background_holo_light 0x7f090028
+int drawable abc_list_divider_mtrl_alpha 0x7f090029
+int drawable abc_list_focused_holo 0x7f09002a
+int drawable abc_list_longpressed_holo 0x7f09002b
+int drawable abc_list_pressed_holo_dark 0x7f09002c
+int drawable abc_list_pressed_holo_light 0x7f09002d
+int drawable abc_list_selector_background_transition_holo_dark 0x7f09002e
+int drawable abc_list_selector_background_transition_holo_light 0x7f09002f
+int drawable abc_list_selector_disabled_holo_dark 0x7f090030
+int drawable abc_list_selector_disabled_holo_light 0x7f090031
+int drawable abc_list_selector_holo_dark 0x7f090032
+int drawable abc_list_selector_holo_light 0x7f090033
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f090034
+int drawable abc_popup_background_mtrl_mult 0x7f090035
+int drawable abc_ratingbar_indicator_material 0x7f090036
+int drawable abc_ratingbar_material 0x7f090037
+int drawable abc_ratingbar_small_material 0x7f090038
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f090039
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f09003a
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f09003b
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f09003c
+int drawable abc_scrubber_track_mtrl_alpha 0x7f09003d
+int drawable abc_seekbar_thumb_material 0x7f09003e
+int drawable abc_seekbar_tick_mark_material 0x7f09003f
+int drawable abc_seekbar_track_material 0x7f090040
+int drawable abc_spinner_mtrl_am_alpha 0x7f090041
+int drawable abc_spinner_textfield_background_material 0x7f090042
+int drawable abc_switch_thumb_material 0x7f090043
+int drawable abc_switch_track_mtrl_alpha 0x7f090044
+int drawable abc_tab_indicator_material 0x7f090045
+int drawable abc_tab_indicator_mtrl_alpha 0x7f090046
+int drawable abc_text_cursor_material 0x7f090047
+int drawable abc_text_select_handle_left_mtrl_dark 0x7f090048
+int drawable abc_text_select_handle_left_mtrl_light 0x7f090049
+int drawable abc_text_select_handle_middle_mtrl_dark 0x7f09004a
+int drawable abc_text_select_handle_middle_mtrl_light 0x7f09004b
+int drawable abc_text_select_handle_right_mtrl_dark 0x7f09004c
+int drawable abc_text_select_handle_right_mtrl_light 0x7f09004d
+int drawable abc_textfield_activated_mtrl_alpha 0x7f09004e
+int drawable abc_textfield_default_mtrl_alpha 0x7f09004f
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f090050
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f090051
+int drawable abc_textfield_search_material 0x7f090052
+int drawable abc_vector_test 0x7f090053
+int drawable notification_action_background 0x7f090054
+int drawable notification_bg 0x7f090055
+int drawable notification_bg_low 0x7f090056
+int drawable notification_bg_low_normal 0x7f090057
+int drawable notification_bg_low_pressed 0x7f090058
+int drawable notification_bg_normal 0x7f090059
+int drawable notification_bg_normal_pressed 0x7f09005a
+int drawable notification_icon_background 0x7f09005b
+int drawable notification_template_icon_bg 0x7f09005c
+int drawable notification_template_icon_low_bg 0x7f09005d
+int drawable notification_tile_bg 0x7f09005e
+int drawable notify_panel_notification_icon_bg 0x7f09005f
+int id action0 0x7f0c0001
+int id action_bar 0x7f0c0002
+int id action_bar_activity_content 0x7f0c0003
+int id action_bar_container 0x7f0c0004
+int id action_bar_root 0x7f0c0005
+int id action_bar_spinner 0x7f0c0006
+int id action_bar_subtitle 0x7f0c0007
+int id action_bar_title 0x7f0c0008
+int id action_container 0x7f0c0009
+int id action_context_bar 0x7f0c000a
+int id action_divider 0x7f0c000b
+int id action_image 0x7f0c000c
+int id action_menu_divider 0x7f0c000d
+int id action_menu_presenter 0x7f0c000e
+int id action_mode_bar 0x7f0c000f
+int id action_mode_bar_stub 0x7f0c0010
+int id action_mode_close_button 0x7f0c0011
+int id action_text 0x7f0c0012
+int id actions 0x7f0c0013
+int id activity_chooser_view_content 0x7f0c0014
+int id add 0x7f0c0015
+int id alertTitle 0x7f0c0016
+int id always 0x7f0c0017
+int id beginning 0x7f0c0018
+int id bottom 0x7f0c0019
+int id buttonPanel 0x7f0c001a
+int id cancel_action 0x7f0c001b
+int id checkbox 0x7f0c001c
+int id chronometer 0x7f0c001d
+int id collapseActionView 0x7f0c001e
+int id contentPanel 0x7f0c001f
+int id custom 0x7f0c0020
+int id customPanel 0x7f0c0021
+int id decor_content_parent 0x7f0c0022
+int id default_activity_button 0x7f0c0023
+int id disableHome 0x7f0c0024
+int id edit_query 0x7f0c0025
+int id end 0x7f0c0026
+int id end_padder 0x7f0c0027
+int id expand_activities_button 0x7f0c0028
+int id expanded_menu 0x7f0c0029
+int id home 0x7f0c002a
+int id homeAsUp 0x7f0c002b
+int id icon 0x7f0c002c
+int id icon_group 0x7f0c002d
+int id ifRoom 0x7f0c002e
+int id image 0x7f0c002f
+int id info 0x7f0c0030
+int id line1 0x7f0c0031
+int id line3 0x7f0c0032
+int id listMode 0x7f0c0033
+int id list_item 0x7f0c0034
+int id media_actions 0x7f0c0035
+int id middle 0x7f0c0036
+int id multiply 0x7f0c0037
+int id never 0x7f0c0038
+int id none 0x7f0c0039
+int id normal 0x7f0c003a
+int id notification_background 0x7f0c003b
+int id notification_main_column 0x7f0c003c
+int id notification_main_column_container 0x7f0c003d
+int id parentPanel 0x7f0c003e
+int id progress_circular 0x7f0c003f
+int id progress_horizontal 0x7f0c0040
+int id radio 0x7f0c0041
+int id right_icon 0x7f0c0042
+int id right_side 0x7f0c0043
+int id screen 0x7f0c0044
+int id scrollIndicatorDown 0x7f0c0045
+int id scrollIndicatorUp 0x7f0c0046
+int id scrollView 0x7f0c0047
+int id search_badge 0x7f0c0048
+int id search_bar 0x7f0c0049
+int id search_button 0x7f0c004a
+int id search_close_btn 0x7f0c004b
+int id search_edit_frame 0x7f0c004c
+int id search_go_btn 0x7f0c004d
+int id search_mag_icon 0x7f0c004e
+int id search_plate 0x7f0c004f
+int id search_src_text 0x7f0c0050
+int id search_voice_btn 0x7f0c0051
+int id select_dialog_listview 0x7f0c0052
+int id shortcut 0x7f0c0053
+int id showCustom 0x7f0c0054
+int id showHome 0x7f0c0055
+int id showTitle 0x7f0c0056
+int id spacer 0x7f0c0057
+int id split_action_bar 0x7f0c0058
+int id src_atop 0x7f0c0059
+int id src_in 0x7f0c005a
+int id src_over 0x7f0c005b
+int id status_bar_latest_event_content 0x7f0c005c
+int id submenuarrow 0x7f0c005d
+int id submit_area 0x7f0c005e
+int id tabMode 0x7f0c005f
+int id text 0x7f0c0060
+int id text2 0x7f0c0061
+int id textSpacerNoButtons 0x7f0c0062
+int id textSpacerNoTitle 0x7f0c0063
+int id time 0x7f0c0064
+int id title 0x7f0c0065
+int id titleDividerNoCustom 0x7f0c0066
+int id title_template 0x7f0c0067
+int id top 0x7f0c0068
+int id topPanel 0x7f0c0069
+int id up 0x7f0c006a
+int id useLogo 0x7f0c006b
+int id withText 0x7f0c006c
+int id wrap_content 0x7f0c006d
+int integer abc_config_activityDefaultDur 0x7f0d0001
+int integer abc_config_activityShortDur 0x7f0d0002
+int integer cancel_button_image_alpha 0x7f0d0003
+int integer status_bar_notification_info_maxnum 0x7f0d0004
+int layout abc_action_bar_title_item 0x7f0f0001
+int layout abc_action_bar_up_container 0x7f0f0002
+int layout abc_action_bar_view_list_nav_layout 0x7f0f0003
+int layout abc_action_menu_item_layout 0x7f0f0004
+int layout abc_action_menu_layout 0x7f0f0005
+int layout abc_action_mode_bar 0x7f0f0006
+int layout abc_action_mode_close_item_material 0x7f0f0007
+int layout abc_activity_chooser_view 0x7f0f0008
+int layout abc_activity_chooser_view_list_item 0x7f0f0009
+int layout abc_alert_dialog_button_bar_material 0x7f0f000a
+int layout abc_alert_dialog_material 0x7f0f000b
+int layout abc_alert_dialog_title_material 0x7f0f000c
+int layout abc_dialog_title_material 0x7f0f000d
+int layout abc_expanded_menu_layout 0x7f0f000e
+int layout abc_list_menu_item_checkbox 0x7f0f000f
+int layout abc_list_menu_item_icon 0x7f0f0010
+int layout abc_list_menu_item_layout 0x7f0f0011
+int layout abc_list_menu_item_radio 0x7f0f0012
+int layout abc_popup_menu_header_item_layout 0x7f0f0013
+int layout abc_popup_menu_item_layout 0x7f0f0014
+int layout abc_screen_content_include 0x7f0f0015
+int layout abc_screen_simple 0x7f0f0016
+int layout abc_screen_simple_overlay_action_mode 0x7f0f0017
+int layout abc_screen_toolbar 0x7f0f0018
+int layout abc_search_dropdown_item_icons_2line 0x7f0f0019
+int layout abc_search_view 0x7f0f001a
+int layout abc_select_dialog_material 0x7f0f001b
+int layout notification_action 0x7f0f001c
+int layout notification_action_tombstone 0x7f0f001d
+int layout notification_media_action 0x7f0f001e
+int layout notification_media_cancel_action 0x7f0f001f
+int layout notification_template_big_media 0x7f0f0020
+int layout notification_template_big_media_custom 0x7f0f0021
+int layout notification_template_big_media_narrow 0x7f0f0022
+int layout notification_template_big_media_narrow_custom 0x7f0f0023
+int layout notification_template_custom_big 0x7f0f0024
+int layout notification_template_icon_group 0x7f0f0025
+int layout notification_template_lines_media 0x7f0f0026
+int layout notification_template_media 0x7f0f0027
+int layout notification_template_media_custom 0x7f0f0028
+int layout notification_template_part_chronometer 0x7f0f0029
+int layout notification_template_part_time 0x7f0f002a
+int layout select_dialog_item_material 0x7f0f002b
+int layout select_dialog_multichoice_material 0x7f0f002c
+int layout select_dialog_singlechoice_material 0x7f0f002d
+int layout support_simple_spinner_dropdown_item 0x7f0f002e
+int string abc_action_bar_home_description 0x7f150001
+int string abc_action_bar_home_description_format 0x7f150002
+int string abc_action_bar_home_subtitle_description_format 0x7f150003
+int string abc_action_bar_up_description 0x7f150004
+int string abc_action_menu_overflow_description 0x7f150005
+int string abc_action_mode_done 0x7f150006
+int string abc_activity_chooser_view_see_all 0x7f150007
+int string abc_activitychooserview_choose_application 0x7f150008
+int string abc_capital_off 0x7f150009
+int string abc_capital_on 0x7f15000a
+int string abc_font_family_body_1_material 0x7f15000b
+int string abc_font_family_body_2_material 0x7f15000c
+int string abc_font_family_button_material 0x7f15000d
+int string abc_font_family_caption_material 0x7f15000e
+int string abc_font_family_display_1_material 0x7f15000f
+int string abc_font_family_display_2_material 0x7f150010
+int string abc_font_family_display_3_material 0x7f150011
+int string abc_font_family_display_4_material 0x7f150012
+int string abc_font_family_headline_material 0x7f150013
+int string abc_font_family_menu_material 0x7f150014
+int string abc_font_family_subhead_material 0x7f150015
+int string abc_font_family_title_material 0x7f150016
+int string abc_search_hint 0x7f150017
+int string abc_searchview_description_clear 0x7f150018
+int string abc_searchview_description_query 0x7f150019
+int string abc_searchview_description_search 0x7f15001a
+int string abc_searchview_description_submit 0x7f15001b
+int string abc_searchview_description_voice 0x7f15001c
+int string abc_shareactionprovider_share_with 0x7f15001d
+int string abc_shareactionprovider_share_with_application 0x7f15001e
+int string abc_toolbar_collapse_description 0x7f15001f
+int string app_name 0x7f150020
+int string search_menu_title 0x7f150021
+int string status_bar_notification_info_overflow 0x7f150022
+int style AlertDialog_AppCompat 0x7f160001
+int style AlertDialog_AppCompat_Light 0x7f160002
+int style Animation_AppCompat_Dialog 0x7f160003
+int style Animation_AppCompat_DropDownUp 0x7f160004
+int style Base_AlertDialog_AppCompat 0x7f160005
+int style Base_AlertDialog_AppCompat_Light 0x7f160006
+int style Base_Animation_AppCompat_Dialog 0x7f160007
+int style Base_Animation_AppCompat_DropDownUp 0x7f160008
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f160009
+int style Base_DialogWindowTitle_AppCompat 0x7f16000a
+int style Base_TextAppearance_AppCompat 0x7f16000b
+int style Base_TextAppearance_AppCompat_Body1 0x7f16000c
+int style Base_TextAppearance_AppCompat_Body2 0x7f16000d
+int style Base_TextAppearance_AppCompat_Button 0x7f16000e
+int style Base_TextAppearance_AppCompat_Caption 0x7f16000f
+int style Base_TextAppearance_AppCompat_Display1 0x7f160010
+int style Base_TextAppearance_AppCompat_Display2 0x7f160011
+int style Base_TextAppearance_AppCompat_Display3 0x7f160012
+int style Base_TextAppearance_AppCompat_Display4 0x7f160013
+int style Base_TextAppearance_AppCompat_Headline 0x7f160014
+int style Base_TextAppearance_AppCompat_Inverse 0x7f160015
+int style Base_TextAppearance_AppCompat_Large 0x7f160016
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f160017
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f160018
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f160019
+int style Base_TextAppearance_AppCompat_Medium 0x7f16001a
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f16001b
+int style Base_TextAppearance_AppCompat_Menu 0x7f16001c
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f16001d
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f16001e
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f16001f
+int style Base_TextAppearance_AppCompat_Small 0x7f160020
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f160021
+int style Base_TextAppearance_AppCompat_Subhead 0x7f160022
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f160023
+int style Base_TextAppearance_AppCompat_Title 0x7f160024
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f160025
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f160026
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f160027
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f160028
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f160029
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f16002a
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f16002b
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f16002c
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f16002d
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f16002e
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f16002f
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f160030
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f160031
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f160032
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f160033
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f160034
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f160035
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f160036
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f160037
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f160038
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f160039
+int style Base_ThemeOverlay_AppCompat 0x7f16003a
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f16003b
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f16003c
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f16003d
+int style Base_ThemeOverlay_AppCompat_Dialog 0x7f16003e
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f16003f
+int style Base_ThemeOverlay_AppCompat_Light 0x7f160040
+int style Base_Theme_AppCompat 0x7f160041
+int style Base_Theme_AppCompat_CompactMenu 0x7f160042
+int style Base_Theme_AppCompat_Dialog 0x7f160043
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f160044
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f160045
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f160046
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f160047
+int style Base_Theme_AppCompat_Light 0x7f160048
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f160049
+int style Base_Theme_AppCompat_Light_Dialog 0x7f16004a
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f16004b
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f16004c
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f16004d
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f16004e
+int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f16004f
+int style Base_V11_Theme_AppCompat_Dialog 0x7f160050
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f160051
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f160052
+int style Base_V12_Widget_AppCompat_EditText 0x7f160053
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f160054
+int style Base_V21_Theme_AppCompat 0x7f160055
+int style Base_V21_Theme_AppCompat_Dialog 0x7f160056
+int style Base_V21_Theme_AppCompat_Light 0x7f160057
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f160058
+int style Base_V22_Theme_AppCompat 0x7f160059
+int style Base_V22_Theme_AppCompat_Light 0x7f16005a
+int style Base_V23_Theme_AppCompat 0x7f16005b
+int style Base_V23_Theme_AppCompat_Light 0x7f16005c
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f16005d
+int style Base_V7_Theme_AppCompat 0x7f16005e
+int style Base_V7_Theme_AppCompat_Dialog 0x7f16005f
+int style Base_V7_Theme_AppCompat_Light 0x7f160060
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f160061
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f160062
+int style Base_V7_Widget_AppCompat_EditText 0x7f160063
+int style Base_Widget_AppCompat_ActionBar 0x7f160064
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f160065
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f160066
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f160067
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f160068
+int style Base_Widget_AppCompat_ActionButton 0x7f160069
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f16006a
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f16006b
+int style Base_Widget_AppCompat_ActionMode 0x7f16006c
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f16006d
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f16006e
+int style Base_Widget_AppCompat_Button 0x7f16006f
+int style Base_Widget_AppCompat_ButtonBar 0x7f160070
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f160071
+int style Base_Widget_AppCompat_Button_Borderless 0x7f160072
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f160073
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f160074
+int style Base_Widget_AppCompat_Button_Colored 0x7f160075
+int style Base_Widget_AppCompat_Button_Small 0x7f160076
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f160077
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f160078
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f160079
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f16007a
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f16007b
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f16007c
+int style Base_Widget_AppCompat_EditText 0x7f16007d
+int style Base_Widget_AppCompat_ImageButton 0x7f16007e
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f16007f
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f160080
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f160081
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f160082
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f160083
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f160084
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f160085
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f160086
+int style Base_Widget_AppCompat_ListMenuView 0x7f160087
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f160088
+int style Base_Widget_AppCompat_ListView 0x7f160089
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f16008a
+int style Base_Widget_AppCompat_ListView_Menu 0x7f16008b
+int style Base_Widget_AppCompat_PopupMenu 0x7f16008c
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f16008d
+int style Base_Widget_AppCompat_PopupWindow 0x7f16008e
+int style Base_Widget_AppCompat_ProgressBar 0x7f16008f
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f160090
+int style Base_Widget_AppCompat_RatingBar 0x7f160091
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f160092
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f160093
+int style Base_Widget_AppCompat_SearchView 0x7f160094
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f160095
+int style Base_Widget_AppCompat_SeekBar 0x7f160096
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f160097
+int style Base_Widget_AppCompat_Spinner 0x7f160098
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f160099
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f16009a
+int style Base_Widget_AppCompat_Toolbar 0x7f16009b
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f16009c
+int style Platform_AppCompat 0x7f16009d
+int style Platform_AppCompat_Light 0x7f16009e
+int style Platform_ThemeOverlay_AppCompat 0x7f16009f
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1600a0
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f1600a1
+int style Platform_V11_AppCompat 0x7f1600a2
+int style Platform_V11_AppCompat_Light 0x7f1600a3
+int style Platform_V14_AppCompat 0x7f1600a4
+int style Platform_V14_AppCompat_Light 0x7f1600a5
+int style Platform_V21_AppCompat 0x7f1600a6
+int style Platform_V21_AppCompat_Light 0x7f1600a7
+int style Platform_V25_AppCompat 0x7f1600a8
+int style Platform_V25_AppCompat_Light 0x7f1600a9
+int style Platform_Widget_AppCompat_Spinner 0x7f1600aa
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1600ab
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1600ac
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1600ad
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1600ae
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1600af
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1600b0
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1600b1
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1600b2
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1600b3
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1600b4
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1600b5
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1600b6
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1600b7
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1600b8
+int style TextAppearance_AppCompat 0x7f1600b9
+int style TextAppearance_AppCompat_Body1 0x7f1600ba
+int style TextAppearance_AppCompat_Body2 0x7f1600bb
+int style TextAppearance_AppCompat_Button 0x7f1600bc
+int style TextAppearance_AppCompat_Caption 0x7f1600bd
+int style TextAppearance_AppCompat_Display1 0x7f1600be
+int style TextAppearance_AppCompat_Display2 0x7f1600bf
+int style TextAppearance_AppCompat_Display3 0x7f1600c0
+int style TextAppearance_AppCompat_Display4 0x7f1600c1
+int style TextAppearance_AppCompat_Headline 0x7f1600c2
+int style TextAppearance_AppCompat_Inverse 0x7f1600c3
+int style TextAppearance_AppCompat_Large 0x7f1600c4
+int style TextAppearance_AppCompat_Large_Inverse 0x7f1600c5
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1600c6
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1600c7
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1600c8
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1600c9
+int style TextAppearance_AppCompat_Medium 0x7f1600ca
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f1600cb
+int style TextAppearance_AppCompat_Menu 0x7f1600cc
+int style TextAppearance_AppCompat_Notification 0x7f1600cd
+int style TextAppearance_AppCompat_Notification_Info 0x7f1600ce
+int style TextAppearance_AppCompat_Notification_Info_Media 0x7f1600cf
+int style TextAppearance_AppCompat_Notification_Line2 0x7f1600d0
+int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f1600d1
+int style TextAppearance_AppCompat_Notification_Media 0x7f1600d2
+int style TextAppearance_AppCompat_Notification_Time 0x7f1600d3
+int style TextAppearance_AppCompat_Notification_Time_Media 0x7f1600d4
+int style TextAppearance_AppCompat_Notification_Title 0x7f1600d5
+int style TextAppearance_AppCompat_Notification_Title_Media 0x7f1600d6
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1600d7
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f1600d8
+int style TextAppearance_AppCompat_Small 0x7f1600d9
+int style TextAppearance_AppCompat_Small_Inverse 0x7f1600da
+int style TextAppearance_AppCompat_Subhead 0x7f1600db
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1600dc
+int style TextAppearance_AppCompat_Title 0x7f1600dd
+int style TextAppearance_AppCompat_Title_Inverse 0x7f1600de
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1600df
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1600e0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1600e1
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1600e2
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1600e3
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1600e4
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1600e5
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1600e6
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1600e7
+int style TextAppearance_AppCompat_Widget_Button 0x7f1600e8
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1600e9
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1600ea
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1600eb
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1600ec
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1600ed
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1600ee
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1600ef
+int style TextAppearance_AppCompat_Widget_Switch 0x7f1600f0
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1600f1
+int style TextAppearance_StatusBar_EventContent 0x7f1600f2
+int style TextAppearance_StatusBar_EventContent_Info 0x7f1600f3
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f1600f4
+int style TextAppearance_StatusBar_EventContent_Time 0x7f1600f5
+int style TextAppearance_StatusBar_EventContent_Title 0x7f1600f6
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1600f7
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1600f8
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1600f9
+int style ThemeOverlay_AppCompat 0x7f1600fa
+int style ThemeOverlay_AppCompat_ActionBar 0x7f1600fb
+int style ThemeOverlay_AppCompat_Dark 0x7f1600fc
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1600fd
+int style ThemeOverlay_AppCompat_Dialog 0x7f1600fe
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f1600ff
+int style ThemeOverlay_AppCompat_Light 0x7f160100
+int style Theme_AppCompat 0x7f160101
+int style Theme_AppCompat_CompactMenu 0x7f160102
+int style Theme_AppCompat_DayNight 0x7f160103
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f160104
+int style Theme_AppCompat_DayNight_Dialog 0x7f160105
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f160106
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f160107
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f160108
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f160109
+int style Theme_AppCompat_Dialog 0x7f16010a
+int style Theme_AppCompat_DialogWhenLarge 0x7f16010b
+int style Theme_AppCompat_Dialog_Alert 0x7f16010c
+int style Theme_AppCompat_Dialog_MinWidth 0x7f16010d
+int style Theme_AppCompat_Light 0x7f16010e
+int style Theme_AppCompat_Light_DarkActionBar 0x7f16010f
+int style Theme_AppCompat_Light_Dialog 0x7f160110
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f160111
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f160112
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f160113
+int style Theme_AppCompat_Light_NoActionBar 0x7f160114
+int style Theme_AppCompat_NoActionBar 0x7f160115
+int style Widget_AppCompat_ActionBar 0x7f160116
+int style Widget_AppCompat_ActionBar_Solid 0x7f160117
+int style Widget_AppCompat_ActionBar_TabBar 0x7f160118
+int style Widget_AppCompat_ActionBar_TabText 0x7f160119
+int style Widget_AppCompat_ActionBar_TabView 0x7f16011a
+int style Widget_AppCompat_ActionButton 0x7f16011b
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f16011c
+int style Widget_AppCompat_ActionButton_Overflow 0x7f16011d
+int style Widget_AppCompat_ActionMode 0x7f16011e
+int style Widget_AppCompat_ActivityChooserView 0x7f16011f
+int style Widget_AppCompat_AutoCompleteTextView 0x7f160120
+int style Widget_AppCompat_Button 0x7f160121
+int style Widget_AppCompat_ButtonBar 0x7f160122
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f160123
+int style Widget_AppCompat_Button_Borderless 0x7f160124
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f160125
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f160126
+int style Widget_AppCompat_Button_Colored 0x7f160127
+int style Widget_AppCompat_Button_Small 0x7f160128
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f160129
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f16012a
+int style Widget_AppCompat_CompoundButton_Switch 0x7f16012b
+int style Widget_AppCompat_DrawerArrowToggle 0x7f16012c
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f16012d
+int style Widget_AppCompat_EditText 0x7f16012e
+int style Widget_AppCompat_ImageButton 0x7f16012f
+int style Widget_AppCompat_Light_ActionBar 0x7f160130
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f160131
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f160132
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f160133
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f160134
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f160135
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f160136
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f160137
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f160138
+int style Widget_AppCompat_Light_ActionButton 0x7f160139
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f16013a
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f16013b
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f16013c
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f16013d
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f16013e
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f16013f
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f160140
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f160141
+int style Widget_AppCompat_Light_PopupMenu 0x7f160142
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f160143
+int style Widget_AppCompat_Light_SearchView 0x7f160144
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f160145
+int style Widget_AppCompat_ListMenuView 0x7f160146
+int style Widget_AppCompat_ListPopupWindow 0x7f160147
+int style Widget_AppCompat_ListView 0x7f160148
+int style Widget_AppCompat_ListView_DropDown 0x7f160149
+int style Widget_AppCompat_ListView_Menu 0x7f16014a
+int style Widget_AppCompat_NotificationActionContainer 0x7f16014b
+int style Widget_AppCompat_NotificationActionText 0x7f16014c
+int style Widget_AppCompat_PopupMenu 0x7f16014d
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f16014e
+int style Widget_AppCompat_PopupWindow 0x7f16014f
+int style Widget_AppCompat_ProgressBar 0x7f160150
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f160151
+int style Widget_AppCompat_RatingBar 0x7f160152
+int style Widget_AppCompat_RatingBar_Indicator 0x7f160153
+int style Widget_AppCompat_RatingBar_Small 0x7f160154
+int style Widget_AppCompat_SearchView 0x7f160155
+int style Widget_AppCompat_SearchView_ActionBar 0x7f160156
+int style Widget_AppCompat_SeekBar 0x7f160157
+int style Widget_AppCompat_SeekBar_Discrete 0x7f160158
+int style Widget_AppCompat_Spinner 0x7f160159
+int style Widget_AppCompat_Spinner_DropDown 0x7f16015a
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f16015b
+int style Widget_AppCompat_Spinner_Underlined 0x7f16015c
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f16015d
+int style Widget_AppCompat_Toolbar 0x7f16015e
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f16015f
+int[] styleable ActionBar { 0x7f04002c, 0x7f04002d, 0x7f04002e, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040057, 0x7f04005b, 0x7f04005c, 0x7f040067, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040072, 0x7f040075, 0x7f040082, 0x7f040089, 0x7f040093, 0x7f040096, 0x7f040097, 0x7f0400b1, 0x7f0400b4, 0x7f0400cc, 0x7f0400d5 }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMode { 0x7f04002c, 0x7f04002d, 0x7f040041, 0x7f04006b, 0x7f0400b4, 0x7f0400d5 }
+int styleable ActionMode_background 0
+int styleable ActionMode_backgroundSplit 1
+int styleable ActionMode_closeItemLayout 2
+int styleable ActionMode_height 3
+int styleable ActionMode_subtitleTextStyle 4
+int styleable ActionMode_titleTextStyle 5
+int[] styleable ActivityChooserView { 0x7f040068, 0x7f040073 }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable AlertDialog { 0x010100f2, 0x7f040039, 0x7f040079, 0x7f04007a, 0x7f040086, 0x7f0400a7, 0x7f0400a8 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 2
+int styleable AlertDialog_listLayout 3
+int styleable AlertDialog_multiChoiceItemLayout 4
+int styleable AlertDialog_showTitle 5
+int styleable AlertDialog_singleChoiceItemLayout 6
+int[] styleable AppCompatImageView { 0x01010119, 0x7f0400ad }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 }
+int styleable AppCompatTextHelper_android_drawableBottom 0
+int styleable AppCompatTextHelper_android_drawableEnd 1
+int styleable AppCompatTextHelper_android_drawableLeft 2
+int styleable AppCompatTextHelper_android_drawableRight 3
+int styleable AppCompatTextHelper_android_drawableStart 4
+int styleable AppCompatTextHelper_android_drawableTop 5
+int styleable AppCompatTextHelper_android_textAppearance 6
+int[] styleable AppCompatTextView { 0x01010034, 0x7f0400ba }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x010100ae, 0x01010057, 0x7f04002b, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f040035, 0x7f040036, 0x7f040037, 0x7f04003a, 0x7f04003b, 0x7f04003e, 0x7f04003f, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040056, 0x7f040059, 0x7f04005a, 0x7f04005d, 0x7f04005f, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f04006d, 0x7f040071, 0x7f040077, 0x7f040078, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040094, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f0400a0, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400aa, 0x7f0400ab, 0x7f0400b8, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400d6, 0x7f0400d7, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6 }
+int styleable AppCompatTheme_actionBarDivider 0
+int styleable AppCompatTheme_actionBarItemBackground 1
+int styleable AppCompatTheme_actionBarPopupTheme 2
+int styleable AppCompatTheme_actionBarSize 3
+int styleable AppCompatTheme_actionBarSplitStyle 4
+int styleable AppCompatTheme_actionBarStyle 5
+int styleable AppCompatTheme_actionBarTabBarStyle 6
+int styleable AppCompatTheme_actionBarTabStyle 7
+int styleable AppCompatTheme_actionBarTabTextStyle 8
+int styleable AppCompatTheme_actionBarTheme 9
+int styleable AppCompatTheme_actionBarWidgetTheme 10
+int styleable AppCompatTheme_actionButtonStyle 11
+int styleable AppCompatTheme_actionDropDownStyle 12
+int styleable AppCompatTheme_actionMenuTextAppearance 13
+int styleable AppCompatTheme_actionMenuTextColor 14
+int styleable AppCompatTheme_actionModeBackground 15
+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
+int styleable AppCompatTheme_actionModeCloseDrawable 17
+int styleable AppCompatTheme_actionModeCopyDrawable 18
+int styleable AppCompatTheme_actionModeCutDrawable 19
+int styleable AppCompatTheme_actionModeFindDrawable 20
+int styleable AppCompatTheme_actionModePasteDrawable 21
+int styleable AppCompatTheme_actionModePopupWindowStyle 22
+int styleable AppCompatTheme_actionModeSelectAllDrawable 23
+int styleable AppCompatTheme_actionModeShareDrawable 24
+int styleable AppCompatTheme_actionModeSplitBackground 25
+int styleable AppCompatTheme_actionModeStyle 26
+int styleable AppCompatTheme_actionModeWebSearchDrawable 27
+int styleable AppCompatTheme_actionOverflowButtonStyle 28
+int styleable AppCompatTheme_actionOverflowMenuStyle 29
+int styleable AppCompatTheme_activityChooserViewStyle 30
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
+int styleable AppCompatTheme_alertDialogCenterButtons 32
+int styleable AppCompatTheme_alertDialogStyle 33
+int styleable AppCompatTheme_alertDialogTheme 34
+int styleable AppCompatTheme_android_windowAnimationStyle 35
+int styleable AppCompatTheme_android_windowIsFloating 36
+int styleable AppCompatTheme_autoCompleteTextViewStyle 37
+int styleable AppCompatTheme_borderlessButtonStyle 38
+int styleable AppCompatTheme_buttonBarButtonStyle 39
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
+int styleable AppCompatTheme_buttonBarStyle 43
+int styleable AppCompatTheme_buttonStyle 44
+int styleable AppCompatTheme_buttonStyleSmall 45
+int styleable AppCompatTheme_checkboxStyle 46
+int styleable AppCompatTheme_checkedTextViewStyle 47
+int styleable AppCompatTheme_colorAccent 48
+int styleable AppCompatTheme_colorBackgroundFloating 49
+int styleable AppCompatTheme_colorButtonNormal 50
+int styleable AppCompatTheme_colorControlActivated 51
+int styleable AppCompatTheme_colorControlHighlight 52
+int styleable AppCompatTheme_colorControlNormal 53
+int styleable AppCompatTheme_colorPrimary 54
+int styleable AppCompatTheme_colorPrimaryDark 55
+int styleable AppCompatTheme_colorSwitchThumbNormal 56
+int styleable AppCompatTheme_controlBackground 57
+int styleable AppCompatTheme_dialogPreferredPadding 58
+int styleable AppCompatTheme_dialogTheme 59
+int styleable AppCompatTheme_dividerHorizontal 60
+int styleable AppCompatTheme_dividerVertical 61
+int styleable AppCompatTheme_dropDownListViewStyle 62
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 63
+int styleable AppCompatTheme_editTextBackground 64
+int styleable AppCompatTheme_editTextColor 65
+int styleable AppCompatTheme_editTextStyle 66
+int styleable AppCompatTheme_homeAsUpIndicator 67
+int styleable AppCompatTheme_imageButtonStyle 68
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 69
+int styleable AppCompatTheme_listDividerAlertDialog 70
+int styleable AppCompatTheme_listMenuViewStyle 71
+int styleable AppCompatTheme_listPopupWindowStyle 72
+int styleable AppCompatTheme_listPreferredItemHeight 73
+int styleable AppCompatTheme_listPreferredItemHeightLarge 74
+int styleable AppCompatTheme_listPreferredItemHeightSmall 75
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 76
+int styleable AppCompatTheme_listPreferredItemPaddingRight 77
+int styleable AppCompatTheme_panelBackground 78
+int styleable AppCompatTheme_panelMenuListTheme 79
+int styleable AppCompatTheme_panelMenuListWidth 80
+int styleable AppCompatTheme_popupMenuStyle 81
+int styleable AppCompatTheme_popupWindowStyle 82
+int styleable AppCompatTheme_radioButtonStyle 83
+int styleable AppCompatTheme_ratingBarStyle 84
+int styleable AppCompatTheme_ratingBarStyleIndicator 85
+int styleable AppCompatTheme_ratingBarStyleSmall 86
+int styleable AppCompatTheme_searchViewStyle 87
+int styleable AppCompatTheme_seekBarStyle 88
+int styleable AppCompatTheme_selectableItemBackground 89
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 90
+int styleable AppCompatTheme_spinnerDropDownItemStyle 91
+int styleable AppCompatTheme_spinnerStyle 92
+int styleable AppCompatTheme_switchStyle 93
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 94
+int styleable AppCompatTheme_textAppearanceListItem 95
+int styleable AppCompatTheme_textAppearanceListItemSmall 96
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 97
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 98
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 99
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 100
+int styleable AppCompatTheme_textColorAlertDialogListItem 101
+int styleable AppCompatTheme_textColorSearchUrl 102
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 103
+int styleable AppCompatTheme_toolbarStyle 104
+int styleable AppCompatTheme_windowActionBar 105
+int styleable AppCompatTheme_windowActionBarOverlay 106
+int styleable AppCompatTheme_windowActionModeOverlay 107
+int styleable AppCompatTheme_windowFixedHeightMajor 108
+int styleable AppCompatTheme_windowFixedHeightMinor 109
+int styleable AppCompatTheme_windowFixedWidthMajor 110
+int styleable AppCompatTheme_windowFixedWidthMinor 111
+int styleable AppCompatTheme_windowMinWidthMajor 112
+int styleable AppCompatTheme_windowMinWidthMinor 113
+int styleable AppCompatTheme_windowNoTitle 114
+int[] styleable ButtonBarLayout { 0x7f040027 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable ColorStateListItem { 0x7f040028, 0x0101031f, 0x010101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable CompoundButton { 0x01010107, 0x7f04003c, 0x7f04003d }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f040029, 0x7f04002a, 0x7f040031, 0x7f040044, 0x7f040060, 0x7f040069, 0x7f0400a9, 0x7f0400c5 }
+int styleable DrawerArrowToggle_arrowHeadLength 0
+int styleable DrawerArrowToggle_arrowShaftLength 1
+int styleable DrawerArrowToggle_barLength 2
+int styleable DrawerArrowToggle_color 3
+int styleable DrawerArrowToggle_drawableSize 4
+int styleable DrawerArrowToggle_gapBetweenBars 5
+int styleable DrawerArrowToggle_spinBars 6
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable LinearLayoutCompat { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f04005c, 0x7f04005e, 0x7f040085, 0x7f0400a5 }
+int styleable LinearLayoutCompat_android_baselineAligned 0
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
+int styleable LinearLayoutCompat_android_gravity 2
+int styleable LinearLayoutCompat_android_orientation 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 1
+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
+int styleable LinearLayoutCompat_Layout_android_layout_width 3
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 }
+int styleable MenuGroup_android_checkableBehavior 0
+int styleable MenuGroup_android_enabled 1
+int styleable MenuGroup_android_id 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 5
+int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f04004f, 0x7f0400a4, 0x7f0400d8 }
+int styleable MenuItem_actionLayout 0
+int styleable MenuItem_actionProviderClass 1
+int styleable MenuItem_actionViewClass 2
+int styleable MenuItem_android_alphabeticShortcut 3
+int styleable MenuItem_android_checkable 4
+int styleable MenuItem_android_checked 5
+int styleable MenuItem_android_enabled 6
+int styleable MenuItem_android_icon 7
+int styleable MenuItem_android_id 8
+int styleable MenuItem_android_menuCategory 9
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 11
+int styleable MenuItem_android_orderInCategory 12
+int styleable MenuItem_android_title 13
+int styleable MenuItem_android_titleCondensed 14
+int styleable MenuItem_android_visible 15
+int styleable MenuItem_contentDescription 16
+int styleable MenuItem_showAsAction 17
+int styleable MenuItem_tooltipText 18
+int[] styleable MenuView { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f040095, 0x7f0400af }
+int styleable MenuView_android_headerBackground 0
+int styleable MenuView_android_horizontalDivider 1
+int styleable MenuView_android_itemBackground 2
+int styleable MenuView_android_itemIconDisabledAlpha 3
+int styleable MenuView_android_itemTextAppearance 4
+int styleable MenuView_android_verticalDivider 5
+int styleable MenuView_android_windowAnimationStyle 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable PopupWindow { 0x010102c9, 0x01010176, 0x7f04008a }
+int styleable PopupWindow_android_popupAnimationStyle 0
+int styleable PopupWindow_android_popupBackground 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x7f0400ae }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecycleListView { 0x7f04008b, 0x7f04008e }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable SearchView { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f040040, 0x7f04004e, 0x7f040058, 0x7f04006a, 0x7f040070, 0x7f040076, 0x7f040098, 0x7f040099, 0x7f04009e, 0x7f04009f, 0x7f0400b0, 0x7f0400b5, 0x7f0400dc }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 1
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 3
+int styleable SearchView_closeIcon 4
+int styleable SearchView_commitIcon 5
+int styleable SearchView_defaultQueryHint 6
+int styleable SearchView_goIcon 7
+int styleable SearchView_iconifiedByDefault 8
+int styleable SearchView_layout 9
+int styleable SearchView_queryBackground 10
+int styleable SearchView_queryHint 11
+int styleable SearchView_searchHintIcon 12
+int styleable SearchView_searchIcon 13
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 15
+int styleable SearchView_voiceIcon 16
+int[] styleable Spinner { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f040093 }
+int styleable Spinner_android_dropDownWidth 0
+int styleable Spinner_android_entries 1
+int styleable Spinner_android_popupBackground 2
+int styleable Spinner_android_prompt 3
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x01010125, 0x01010124, 0x01010142, 0x7f0400a6, 0x7f0400ac, 0x7f0400b6, 0x7f0400b7, 0x7f0400b9, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400d9, 0x7f0400da, 0x7f0400db }
+int styleable SwitchCompat_android_textOff 0
+int styleable SwitchCompat_android_textOn 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable TextAppearance { 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x01010095, 0x01010097, 0x01010096, 0x7f0400ba }
+int styleable TextAppearance_android_shadowColor 0
+int styleable TextAppearance_android_shadowDx 1
+int styleable TextAppearance_android_shadowDy 2
+int styleable TextAppearance_android_shadowRadius 3
+int styleable TextAppearance_android_textColor 4
+int styleable TextAppearance_android_textColorHint 5
+int styleable TextAppearance_android_textSize 6
+int styleable TextAppearance_android_textStyle 7
+int styleable TextAppearance_android_typeface 8
+int styleable TextAppearance_textAllCaps 9
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f040038, 0x7f040042, 0x7f040043, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040082, 0x7f040083, 0x7f040084, 0x7f040087, 0x7f040088, 0x7f040093, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_buttonGravity 2
+int styleable Toolbar_collapseContentDescription 3
+int styleable Toolbar_collapseIcon 4
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetEndWithActions 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 9
+int styleable Toolbar_contentInsetStartWithNavigation 10
+int styleable Toolbar_logo 11
+int styleable Toolbar_logoDescription 12
+int styleable Toolbar_maxButtonHeight 13
+int styleable Toolbar_navigationContentDescription 14
+int styleable Toolbar_navigationIcon 15
+int styleable Toolbar_popupTheme 16
+int styleable Toolbar_subtitle 17
+int styleable Toolbar_subtitleTextAppearance 18
+int styleable Toolbar_subtitleTextColor 19
+int styleable Toolbar_title 20
+int styleable Toolbar_titleMargin 21
+int styleable Toolbar_titleMarginBottom 22
+int styleable Toolbar_titleMarginEnd 23
+int styleable Toolbar_titleMarginStart 24
+int styleable Toolbar_titleMarginTop 25
+int styleable Toolbar_titleMargins 26
+int styleable Toolbar_titleTextAppearance 27
+int styleable Toolbar_titleTextColor 28
+int[] styleable View { 0x010100da, 0x01010000, 0x7f04008c, 0x7f04008d, 0x7f0400c4 }
+int styleable View_android_focusable 0
+int styleable View_android_theme 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f04002f, 0x7f040030 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f3, 0x010100f2 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 1
+int styleable ViewStubCompat_android_layout 2
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jars/classes.jar b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jars/classes.jar
new file mode 100644
index 0000000..5b6963e
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jars/classes.jar differ
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libdlkeyjni.so b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libdlkeyjni.so
new file mode 100644
index 0000000..df19ac3
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libdlkeyjni.so differ
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libsdkdev.so b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libsdkdev.so
new file mode 100644
index 0000000..99c21bb
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/arm64-v8a/libsdkdev.so differ
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libdlkeyjni.so b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libdlkeyjni.so
new file mode 100644
index 0000000..0ebada2
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libdlkeyjni.so differ
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libsdkdev.so b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libsdkdev.so
new file mode 100644
index 0000000..f297004
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/jni/armeabi-v7a/libsdkdev.so differ
diff --git a/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/res/values/values.xml b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/res/values/values.xml
new file mode 100644
index 0000000..d119b41
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/7f156e63d8228536f914fd846dc2fd50/transformed/nexgo-sdk-dlkey-1.0.2/res/values/values.xml
@@ -0,0 +1,4 @@
+
+
+ downloadkey
+
\ No newline at end of file
diff --git a/nexdlkey-lib/build/.transforms/90656d64bb8607a5f1ae49f693b41342/results.bin b/nexdlkey-lib/build/.transforms/90656d64bb8607a5f1ae49f693b41342/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/9e6cc22b86882992a40bad19fbe243de/results.bin b/nexdlkey-lib/build/.transforms/9e6cc22b86882992a40bad19fbe243de/results.bin
new file mode 100644
index 0000000..fcbf8d4
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/9e6cc22b86882992a40bad19fbe243de/results.bin
@@ -0,0 +1 @@
+i/AndroidManifest.xml
diff --git a/nexdlkey-lib/build/.transforms/ab6f7ffa1a5a9bce0a6292456441b953/results.bin b/nexdlkey-lib/build/.transforms/ab6f7ffa1a5a9bce0a6292456441b953/results.bin
new file mode 100644
index 0000000..1ed65e0
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/ab6f7ffa1a5a9bce0a6292456441b953/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/results.bin b/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/results.bin
new file mode 100644
index 0000000..bb43665
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/results.bin
@@ -0,0 +1 @@
+o/nexgo-sdk-dlkey-1.0.2-api.jar
diff --git a/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/transformed/nexgo-sdk-dlkey-1.0.2-api.jar b/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/transformed/nexgo-sdk-dlkey-1.0.2-api.jar
new file mode 100644
index 0000000..0263ee9
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/b1e06e30e57d81f8025946ff636de54f/transformed/nexgo-sdk-dlkey-1.0.2-api.jar differ
diff --git a/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/results.bin b/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/results.bin
new file mode 100644
index 0000000..c0d86ee
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/results.bin
@@ -0,0 +1 @@
+o/com.nexgo.downloadkey-r.txt
diff --git a/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/transformed/com.nexgo.downloadkey-r.txt b/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/transformed/com.nexgo.downloadkey-r.txt
new file mode 100644
index 0000000..15abc90
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/ba2241222e87784216b0fb7a7b86eb2a/transformed/com.nexgo.downloadkey-r.txt
@@ -0,0 +1,1097 @@
+com.nexgo.downloadkey
+anim abc_fade_in
+anim abc_fade_out
+anim abc_grow_fade_in_from_bottom
+anim abc_popup_enter
+anim abc_popup_exit
+anim abc_shrink_fade_out_from_bottom
+anim abc_slide_in_bottom
+anim abc_slide_in_top
+anim abc_slide_out_bottom
+anim abc_slide_out_top
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModePopupWindowStyle
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr activityChooserViewStyle
+attr alertDialogButtonGroupStyle
+attr alertDialogCenterButtons
+attr alertDialogStyle
+attr alertDialogTheme
+attr allowStacking
+attr alpha
+attr arrowHeadLength
+attr arrowShaftLength
+attr autoCompleteTextViewStyle
+attr background
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barLength
+attr borderlessButtonStyle
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonGravity
+attr buttonPanelSideLayout
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr checkboxStyle
+attr checkedTextViewStyle
+attr closeIcon
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr color
+attr colorAccent
+attr colorBackgroundFloating
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentDescription
+attr contentInsetEnd
+attr contentInsetEndWithActions
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr contentInsetStartWithNavigation
+attr controlBackground
+attr customNavigationLayout
+attr defaultQueryHint
+attr dialogPreferredPadding
+attr dialogTheme
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr expandActivityOverflowButtonDrawable
+attr gapBetweenBars
+attr goIcon
+attr height
+attr hideOnContentScroll
+attr homeAsUpIndicator
+attr homeLayout
+attr icon
+attr iconifiedByDefault
+attr imageButtonStyle
+attr indeterminateProgressStyle
+attr initialActivityCount
+attr isLightTheme
+attr itemPadding
+attr layout
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listItemLayout
+attr listLayout
+attr listMenuViewStyle
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr logoDescription
+attr maxButtonHeight
+attr measureWithLargestChild
+attr multiChoiceItemLayout
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr overlapAnchor
+attr paddingBottomNoButtons
+attr paddingEnd
+attr paddingStart
+attr paddingTopNoTitle
+attr panelBackground
+attr panelMenuListTheme
+attr panelMenuListWidth
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr ratingBarStyleIndicator
+attr ratingBarStyleSmall
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr seekBarStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showText
+attr showTitle
+attr singleChoiceItemLayout
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitTrack
+attr srcCompat
+attr state_above_anchor
+attr subMenuArrow
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suggestionRowLayout
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr textAllCaps
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSmall
+attr textAppearancePopupMenuHeader
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textColorAlertDialogListItem
+attr textColorSearchUrl
+attr theme
+attr thickness
+attr thumbTextPadding
+attr thumbTint
+attr thumbTintMode
+attr tickMark
+attr tickMarkTint
+attr tickMarkTintMode
+attr title
+attr titleMargin
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextStyle
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr tooltipText
+attr track
+attr trackTint
+attr trackTintMode
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowFixedHeightMajor
+attr windowFixedHeightMinor
+attr windowFixedWidthMajor
+attr windowFixedWidthMinor
+attr windowMinWidthMajor
+attr windowMinWidthMinor
+attr windowNoTitle
+bool abc_action_bar_embed_tabs
+bool abc_allow_stacked_button_bar
+bool abc_config_actionMenuItemAllCaps
+bool abc_config_closeDialogWhenTouchOutside
+bool abc_config_showMenuShortcutsWhenKeyboardPresent
+color abc_background_cache_hint_selector_material_dark
+color abc_background_cache_hint_selector_material_light
+color abc_btn_colored_borderless_text_material
+color abc_btn_colored_text_material
+color abc_color_highlight_material
+color abc_hint_foreground_material_dark
+color abc_hint_foreground_material_light
+color abc_input_method_navigation_guard
+color abc_primary_text_disable_only_material_dark
+color abc_primary_text_disable_only_material_light
+color abc_primary_text_material_dark
+color abc_primary_text_material_light
+color abc_search_url_text
+color abc_search_url_text_normal
+color abc_search_url_text_pressed
+color abc_search_url_text_selected
+color abc_secondary_text_material_dark
+color abc_secondary_text_material_light
+color abc_tint_btn_checkable
+color abc_tint_default
+color abc_tint_edittext
+color abc_tint_seek_thumb
+color abc_tint_spinner
+color abc_tint_switch_thumb
+color abc_tint_switch_track
+color accent_material_dark
+color accent_material_light
+color background_floating_material_dark
+color background_floating_material_light
+color background_material_dark
+color background_material_light
+color bright_foreground_disabled_material_dark
+color bright_foreground_disabled_material_light
+color bright_foreground_inverse_material_dark
+color bright_foreground_inverse_material_light
+color bright_foreground_material_dark
+color bright_foreground_material_light
+color button_material_dark
+color button_material_light
+color dim_foreground_disabled_material_dark
+color dim_foreground_disabled_material_light
+color dim_foreground_material_dark
+color dim_foreground_material_light
+color foreground_material_dark
+color foreground_material_light
+color highlighted_text_material_dark
+color highlighted_text_material_light
+color material_blue_grey_800
+color material_blue_grey_900
+color material_blue_grey_950
+color material_deep_teal_200
+color material_deep_teal_500
+color material_grey_100
+color material_grey_300
+color material_grey_50
+color material_grey_600
+color material_grey_800
+color material_grey_850
+color material_grey_900
+color notification_action_color_filter
+color notification_icon_bg_color
+color notification_material_background_media_default_color
+color primary_dark_material_dark
+color primary_dark_material_light
+color primary_material_dark
+color primary_material_light
+color primary_text_default_material_dark
+color primary_text_default_material_light
+color primary_text_disabled_material_dark
+color primary_text_disabled_material_light
+color ripple_material_dark
+color ripple_material_light
+color secondary_text_default_material_dark
+color secondary_text_default_material_light
+color secondary_text_disabled_material_dark
+color secondary_text_disabled_material_light
+color switch_thumb_disabled_material_dark
+color switch_thumb_disabled_material_light
+color switch_thumb_material_dark
+color switch_thumb_material_light
+color switch_thumb_normal_material_dark
+color switch_thumb_normal_material_light
+dimen abc_action_bar_content_inset_material
+dimen abc_action_bar_content_inset_with_nav
+dimen abc_action_bar_default_height_material
+dimen abc_action_bar_default_padding_end_material
+dimen abc_action_bar_default_padding_start_material
+dimen abc_action_bar_elevation_material
+dimen abc_action_bar_icon_vertical_padding_material
+dimen abc_action_bar_overflow_padding_end_material
+dimen abc_action_bar_overflow_padding_start_material
+dimen abc_action_bar_progress_bar_size
+dimen abc_action_bar_stacked_max_height
+dimen abc_action_bar_stacked_tab_max_width
+dimen abc_action_bar_subtitle_bottom_margin_material
+dimen abc_action_bar_subtitle_top_margin_material
+dimen abc_action_button_min_height_material
+dimen abc_action_button_min_width_material
+dimen abc_action_button_min_width_overflow_material
+dimen abc_alert_dialog_button_bar_height
+dimen abc_button_inset_horizontal_material
+dimen abc_button_inset_vertical_material
+dimen abc_button_padding_horizontal_material
+dimen abc_button_padding_vertical_material
+dimen abc_cascading_menus_min_smallest_width
+dimen abc_config_prefDialogWidth
+dimen abc_control_corner_material
+dimen abc_control_inset_material
+dimen abc_control_padding_material
+dimen abc_dialog_fixed_height_major
+dimen abc_dialog_fixed_height_minor
+dimen abc_dialog_fixed_width_major
+dimen abc_dialog_fixed_width_minor
+dimen abc_dialog_list_padding_bottom_no_buttons
+dimen abc_dialog_list_padding_top_no_title
+dimen abc_dialog_min_width_major
+dimen abc_dialog_min_width_minor
+dimen abc_dialog_padding_material
+dimen abc_dialog_padding_top_material
+dimen abc_dialog_title_divider_material
+dimen abc_disabled_alpha_material_dark
+dimen abc_disabled_alpha_material_light
+dimen abc_dropdownitem_icon_width
+dimen abc_dropdownitem_text_padding_left
+dimen abc_dropdownitem_text_padding_right
+dimen abc_edit_text_inset_bottom_material
+dimen abc_edit_text_inset_horizontal_material
+dimen abc_edit_text_inset_top_material
+dimen abc_floating_window_z
+dimen abc_list_item_padding_horizontal_material
+dimen abc_panel_menu_list_width
+dimen abc_progress_bar_height_material
+dimen abc_search_view_preferred_height
+dimen abc_search_view_preferred_width
+dimen abc_seekbar_track_background_height_material
+dimen abc_seekbar_track_progress_height_material
+dimen abc_select_dialog_padding_start_material
+dimen abc_switch_padding
+dimen abc_text_size_body_1_material
+dimen abc_text_size_body_2_material
+dimen abc_text_size_button_material
+dimen abc_text_size_caption_material
+dimen abc_text_size_display_1_material
+dimen abc_text_size_display_2_material
+dimen abc_text_size_display_3_material
+dimen abc_text_size_display_4_material
+dimen abc_text_size_headline_material
+dimen abc_text_size_large_material
+dimen abc_text_size_medium_material
+dimen abc_text_size_menu_header_material
+dimen abc_text_size_menu_material
+dimen abc_text_size_small_material
+dimen abc_text_size_subhead_material
+dimen abc_text_size_subtitle_material_toolbar
+dimen abc_text_size_title_material
+dimen abc_text_size_title_material_toolbar
+dimen disabled_alpha_material_dark
+dimen disabled_alpha_material_light
+dimen highlight_alpha_material_colored
+dimen highlight_alpha_material_dark
+dimen highlight_alpha_material_light
+dimen hint_alpha_material_dark
+dimen hint_alpha_material_light
+dimen hint_pressed_alpha_material_dark
+dimen hint_pressed_alpha_material_light
+dimen notification_action_icon_size
+dimen notification_action_text_size
+dimen notification_big_circle_margin
+dimen notification_content_margin_start
+dimen notification_large_icon_height
+dimen notification_large_icon_width
+dimen notification_main_column_padding_top
+dimen notification_media_narrow_margin
+dimen notification_right_icon_size
+dimen notification_right_side_padding_top
+dimen notification_small_icon_background_padding
+dimen notification_small_icon_size_as_large
+dimen notification_subtext_size
+dimen notification_top_pad
+dimen notification_top_pad_large_text
+drawable abc_ab_share_pack_mtrl_alpha
+drawable abc_action_bar_item_background_material
+drawable abc_btn_borderless_material
+drawable abc_btn_check_material
+drawable abc_btn_check_to_on_mtrl_000
+drawable abc_btn_check_to_on_mtrl_015
+drawable abc_btn_colored_material
+drawable abc_btn_default_mtrl_shape
+drawable abc_btn_radio_material
+drawable abc_btn_radio_to_on_mtrl_000
+drawable abc_btn_radio_to_on_mtrl_015
+drawable abc_btn_switch_to_on_mtrl_00001
+drawable abc_btn_switch_to_on_mtrl_00012
+drawable abc_cab_background_internal_bg
+drawable abc_cab_background_top_material
+drawable abc_cab_background_top_mtrl_alpha
+drawable abc_control_background_material
+drawable abc_dialog_material_background
+drawable abc_edit_text_material
+drawable abc_ic_ab_back_material
+drawable abc_ic_arrow_drop_right_black_24dp
+drawable abc_ic_clear_material
+drawable abc_ic_commit_search_api_mtrl_alpha
+drawable abc_ic_go_search_api_material
+drawable abc_ic_menu_copy_mtrl_am_alpha
+drawable abc_ic_menu_cut_mtrl_alpha
+drawable abc_ic_menu_overflow_material
+drawable abc_ic_menu_paste_mtrl_am_alpha
+drawable abc_ic_menu_selectall_mtrl_alpha
+drawable abc_ic_menu_share_mtrl_alpha
+drawable abc_ic_search_api_material
+drawable abc_ic_star_black_16dp
+drawable abc_ic_star_black_36dp
+drawable abc_ic_star_black_48dp
+drawable abc_ic_star_half_black_16dp
+drawable abc_ic_star_half_black_36dp
+drawable abc_ic_star_half_black_48dp
+drawable abc_ic_voice_search_api_material
+drawable abc_item_background_holo_dark
+drawable abc_item_background_holo_light
+drawable abc_list_divider_mtrl_alpha
+drawable abc_list_focused_holo
+drawable abc_list_longpressed_holo
+drawable abc_list_pressed_holo_dark
+drawable abc_list_pressed_holo_light
+drawable abc_list_selector_background_transition_holo_dark
+drawable abc_list_selector_background_transition_holo_light
+drawable abc_list_selector_disabled_holo_dark
+drawable abc_list_selector_disabled_holo_light
+drawable abc_list_selector_holo_dark
+drawable abc_list_selector_holo_light
+drawable abc_menu_hardkey_panel_mtrl_mult
+drawable abc_popup_background_mtrl_mult
+drawable abc_ratingbar_indicator_material
+drawable abc_ratingbar_material
+drawable abc_ratingbar_small_material
+drawable abc_scrubber_control_off_mtrl_alpha
+drawable abc_scrubber_control_to_pressed_mtrl_000
+drawable abc_scrubber_control_to_pressed_mtrl_005
+drawable abc_scrubber_primary_mtrl_alpha
+drawable abc_scrubber_track_mtrl_alpha
+drawable abc_seekbar_thumb_material
+drawable abc_seekbar_tick_mark_material
+drawable abc_seekbar_track_material
+drawable abc_spinner_mtrl_am_alpha
+drawable abc_spinner_textfield_background_material
+drawable abc_switch_thumb_material
+drawable abc_switch_track_mtrl_alpha
+drawable abc_tab_indicator_material
+drawable abc_tab_indicator_mtrl_alpha
+drawable abc_text_cursor_material
+drawable abc_text_select_handle_left_mtrl_dark
+drawable abc_text_select_handle_left_mtrl_light
+drawable abc_text_select_handle_middle_mtrl_dark
+drawable abc_text_select_handle_middle_mtrl_light
+drawable abc_text_select_handle_right_mtrl_dark
+drawable abc_text_select_handle_right_mtrl_light
+drawable abc_textfield_activated_mtrl_alpha
+drawable abc_textfield_default_mtrl_alpha
+drawable abc_textfield_search_activated_mtrl_alpha
+drawable abc_textfield_search_default_mtrl_alpha
+drawable abc_textfield_search_material
+drawable abc_vector_test
+drawable notification_action_background
+drawable notification_bg
+drawable notification_bg_low
+drawable notification_bg_low_normal
+drawable notification_bg_low_pressed
+drawable notification_bg_normal
+drawable notification_bg_normal_pressed
+drawable notification_icon_background
+drawable notification_template_icon_bg
+drawable notification_template_icon_low_bg
+drawable notification_tile_bg
+drawable notify_panel_notification_icon_bg
+id action0
+id action_bar
+id action_bar_activity_content
+id action_bar_container
+id action_bar_root
+id action_bar_spinner
+id action_bar_subtitle
+id action_bar_title
+id action_container
+id action_context_bar
+id action_divider
+id action_image
+id action_menu_divider
+id action_menu_presenter
+id action_mode_bar
+id action_mode_bar_stub
+id action_mode_close_button
+id action_text
+id actions
+id activity_chooser_view_content
+id add
+id alertTitle
+id always
+id beginning
+id bottom
+id buttonPanel
+id cancel_action
+id checkbox
+id chronometer
+id collapseActionView
+id contentPanel
+id custom
+id customPanel
+id decor_content_parent
+id default_activity_button
+id disableHome
+id edit_query
+id end
+id end_padder
+id expand_activities_button
+id expanded_menu
+id home
+id homeAsUp
+id icon
+id icon_group
+id ifRoom
+id image
+id info
+id line1
+id line3
+id listMode
+id list_item
+id media_actions
+id middle
+id multiply
+id never
+id none
+id normal
+id notification_background
+id notification_main_column
+id notification_main_column_container
+id parentPanel
+id progress_circular
+id progress_horizontal
+id radio
+id right_icon
+id right_side
+id screen
+id scrollIndicatorDown
+id scrollIndicatorUp
+id scrollView
+id search_badge
+id search_bar
+id search_button
+id search_close_btn
+id search_edit_frame
+id search_go_btn
+id search_mag_icon
+id search_plate
+id search_src_text
+id search_voice_btn
+id select_dialog_listview
+id shortcut
+id showCustom
+id showHome
+id showTitle
+id spacer
+id split_action_bar
+id src_atop
+id src_in
+id src_over
+id status_bar_latest_event_content
+id submenuarrow
+id submit_area
+id tabMode
+id text
+id text2
+id textSpacerNoButtons
+id textSpacerNoTitle
+id time
+id title
+id titleDividerNoCustom
+id title_template
+id top
+id topPanel
+id up
+id useLogo
+id withText
+id wrap_content
+integer abc_config_activityDefaultDur
+integer abc_config_activityShortDur
+integer cancel_button_image_alpha
+integer status_bar_notification_info_maxnum
+layout abc_action_bar_title_item
+layout abc_action_bar_up_container
+layout abc_action_bar_view_list_nav_layout
+layout abc_action_menu_item_layout
+layout abc_action_menu_layout
+layout abc_action_mode_bar
+layout abc_action_mode_close_item_material
+layout abc_activity_chooser_view
+layout abc_activity_chooser_view_list_item
+layout abc_alert_dialog_button_bar_material
+layout abc_alert_dialog_material
+layout abc_alert_dialog_title_material
+layout abc_dialog_title_material
+layout abc_expanded_menu_layout
+layout abc_list_menu_item_checkbox
+layout abc_list_menu_item_icon
+layout abc_list_menu_item_layout
+layout abc_list_menu_item_radio
+layout abc_popup_menu_header_item_layout
+layout abc_popup_menu_item_layout
+layout abc_screen_content_include
+layout abc_screen_simple
+layout abc_screen_simple_overlay_action_mode
+layout abc_screen_toolbar
+layout abc_search_dropdown_item_icons_2line
+layout abc_search_view
+layout abc_select_dialog_material
+layout notification_action
+layout notification_action_tombstone
+layout notification_media_action
+layout notification_media_cancel_action
+layout notification_template_big_media
+layout notification_template_big_media_custom
+layout notification_template_big_media_narrow
+layout notification_template_big_media_narrow_custom
+layout notification_template_custom_big
+layout notification_template_icon_group
+layout notification_template_lines_media
+layout notification_template_media
+layout notification_template_media_custom
+layout notification_template_part_chronometer
+layout notification_template_part_time
+layout select_dialog_item_material
+layout select_dialog_multichoice_material
+layout select_dialog_singlechoice_material
+layout support_simple_spinner_dropdown_item
+string abc_action_bar_home_description
+string abc_action_bar_home_description_format
+string abc_action_bar_home_subtitle_description_format
+string abc_action_bar_up_description
+string abc_action_menu_overflow_description
+string abc_action_mode_done
+string abc_activity_chooser_view_see_all
+string abc_activitychooserview_choose_application
+string abc_capital_off
+string abc_capital_on
+string abc_font_family_body_1_material
+string abc_font_family_body_2_material
+string abc_font_family_button_material
+string abc_font_family_caption_material
+string abc_font_family_display_1_material
+string abc_font_family_display_2_material
+string abc_font_family_display_3_material
+string abc_font_family_display_4_material
+string abc_font_family_headline_material
+string abc_font_family_menu_material
+string abc_font_family_subhead_material
+string abc_font_family_title_material
+string abc_search_hint
+string abc_searchview_description_clear
+string abc_searchview_description_query
+string abc_searchview_description_search
+string abc_searchview_description_submit
+string abc_searchview_description_voice
+string abc_shareactionprovider_share_with
+string abc_shareactionprovider_share_with_application
+string abc_toolbar_collapse_description
+string app_name
+string search_menu_title
+string status_bar_notification_info_overflow
+style AlertDialog_AppCompat
+style AlertDialog_AppCompat_Light
+style Animation_AppCompat_Dialog
+style Animation_AppCompat_DropDownUp
+style Base_AlertDialog_AppCompat
+style Base_AlertDialog_AppCompat_Light
+style Base_Animation_AppCompat_Dialog
+style Base_Animation_AppCompat_DropDownUp
+style Base_DialogWindowTitleBackground_AppCompat
+style Base_DialogWindowTitle_AppCompat
+style Base_TextAppearance_AppCompat
+style Base_TextAppearance_AppCompat_Body1
+style Base_TextAppearance_AppCompat_Body2
+style Base_TextAppearance_AppCompat_Button
+style Base_TextAppearance_AppCompat_Caption
+style Base_TextAppearance_AppCompat_Display1
+style Base_TextAppearance_AppCompat_Display2
+style Base_TextAppearance_AppCompat_Display3
+style Base_TextAppearance_AppCompat_Display4
+style Base_TextAppearance_AppCompat_Headline
+style Base_TextAppearance_AppCompat_Inverse
+style Base_TextAppearance_AppCompat_Large
+style Base_TextAppearance_AppCompat_Large_Inverse
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Medium
+style Base_TextAppearance_AppCompat_Medium_Inverse
+style Base_TextAppearance_AppCompat_Menu
+style Base_TextAppearance_AppCompat_SearchResult
+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
+style Base_TextAppearance_AppCompat_SearchResult_Title
+style Base_TextAppearance_AppCompat_Small
+style Base_TextAppearance_AppCompat_Small_Inverse
+style Base_TextAppearance_AppCompat_Subhead
+style Base_TextAppearance_AppCompat_Subhead_Inverse
+style Base_TextAppearance_AppCompat_Title
+style Base_TextAppearance_AppCompat_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
+style Base_TextAppearance_AppCompat_Widget_Button
+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Inverse
+style Base_TextAppearance_AppCompat_Widget_DropDownItem
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Widget_Switch
+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
+style Base_ThemeOverlay_AppCompat
+style Base_ThemeOverlay_AppCompat_ActionBar
+style Base_ThemeOverlay_AppCompat_Dark
+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
+style Base_ThemeOverlay_AppCompat_Dialog
+style Base_ThemeOverlay_AppCompat_Dialog_Alert
+style Base_ThemeOverlay_AppCompat_Light
+style Base_Theme_AppCompat
+style Base_Theme_AppCompat_CompactMenu
+style Base_Theme_AppCompat_Dialog
+style Base_Theme_AppCompat_DialogWhenLarge
+style Base_Theme_AppCompat_Dialog_Alert
+style Base_Theme_AppCompat_Dialog_FixedSize
+style Base_Theme_AppCompat_Dialog_MinWidth
+style Base_Theme_AppCompat_Light
+style Base_Theme_AppCompat_Light_DarkActionBar
+style Base_Theme_AppCompat_Light_Dialog
+style Base_Theme_AppCompat_Light_DialogWhenLarge
+style Base_Theme_AppCompat_Light_Dialog_Alert
+style Base_Theme_AppCompat_Light_Dialog_FixedSize
+style Base_Theme_AppCompat_Light_Dialog_MinWidth
+style Base_V11_ThemeOverlay_AppCompat_Dialog
+style Base_V11_Theme_AppCompat_Dialog
+style Base_V11_Theme_AppCompat_Light_Dialog
+style Base_V12_Widget_AppCompat_AutoCompleteTextView
+style Base_V12_Widget_AppCompat_EditText
+style Base_V21_ThemeOverlay_AppCompat_Dialog
+style Base_V21_Theme_AppCompat
+style Base_V21_Theme_AppCompat_Dialog
+style Base_V21_Theme_AppCompat_Light
+style Base_V21_Theme_AppCompat_Light_Dialog
+style Base_V22_Theme_AppCompat
+style Base_V22_Theme_AppCompat_Light
+style Base_V23_Theme_AppCompat
+style Base_V23_Theme_AppCompat_Light
+style Base_V7_ThemeOverlay_AppCompat_Dialog
+style Base_V7_Theme_AppCompat
+style Base_V7_Theme_AppCompat_Dialog
+style Base_V7_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat_Light_Dialog
+style Base_V7_Widget_AppCompat_AutoCompleteTextView
+style Base_V7_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ActionBar
+style Base_Widget_AppCompat_ActionBar_Solid
+style Base_Widget_AppCompat_ActionBar_TabBar
+style Base_Widget_AppCompat_ActionBar_TabText
+style Base_Widget_AppCompat_ActionBar_TabView
+style Base_Widget_AppCompat_ActionButton
+style Base_Widget_AppCompat_ActionButton_CloseMode
+style Base_Widget_AppCompat_ActionButton_Overflow
+style Base_Widget_AppCompat_ActionMode
+style Base_Widget_AppCompat_ActivityChooserView
+style Base_Widget_AppCompat_AutoCompleteTextView
+style Base_Widget_AppCompat_Button
+style Base_Widget_AppCompat_ButtonBar
+style Base_Widget_AppCompat_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Borderless
+style Base_Widget_AppCompat_Button_Borderless_Colored
+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Colored
+style Base_Widget_AppCompat_Button_Small
+style Base_Widget_AppCompat_CompoundButton_CheckBox
+style Base_Widget_AppCompat_CompoundButton_RadioButton
+style Base_Widget_AppCompat_CompoundButton_Switch
+style Base_Widget_AppCompat_DrawerArrowToggle
+style Base_Widget_AppCompat_DrawerArrowToggle_Common
+style Base_Widget_AppCompat_DropDownItem_Spinner
+style Base_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ImageButton
+style Base_Widget_AppCompat_Light_ActionBar
+style Base_Widget_AppCompat_Light_ActionBar_Solid
+style Base_Widget_AppCompat_Light_ActionBar_TabBar
+style Base_Widget_AppCompat_Light_ActionBar_TabText
+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Base_Widget_AppCompat_Light_ActionBar_TabView
+style Base_Widget_AppCompat_Light_PopupMenu
+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
+style Base_Widget_AppCompat_ListMenuView
+style Base_Widget_AppCompat_ListPopupWindow
+style Base_Widget_AppCompat_ListView
+style Base_Widget_AppCompat_ListView_DropDown
+style Base_Widget_AppCompat_ListView_Menu
+style Base_Widget_AppCompat_PopupMenu
+style Base_Widget_AppCompat_PopupMenu_Overflow
+style Base_Widget_AppCompat_PopupWindow
+style Base_Widget_AppCompat_ProgressBar
+style Base_Widget_AppCompat_ProgressBar_Horizontal
+style Base_Widget_AppCompat_RatingBar
+style Base_Widget_AppCompat_RatingBar_Indicator
+style Base_Widget_AppCompat_RatingBar_Small
+style Base_Widget_AppCompat_SearchView
+style Base_Widget_AppCompat_SearchView_ActionBar
+style Base_Widget_AppCompat_SeekBar
+style Base_Widget_AppCompat_SeekBar_Discrete
+style Base_Widget_AppCompat_Spinner
+style Base_Widget_AppCompat_Spinner_Underlined
+style Base_Widget_AppCompat_TextView_SpinnerItem
+style Base_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_Toolbar_Button_Navigation
+style Platform_AppCompat
+style Platform_AppCompat_Light
+style Platform_ThemeOverlay_AppCompat
+style Platform_ThemeOverlay_AppCompat_Dark
+style Platform_ThemeOverlay_AppCompat_Light
+style Platform_V11_AppCompat
+style Platform_V11_AppCompat_Light
+style Platform_V14_AppCompat
+style Platform_V14_AppCompat_Light
+style Platform_V21_AppCompat
+style Platform_V21_AppCompat_Light
+style Platform_V25_AppCompat
+style Platform_V25_AppCompat_Light
+style Platform_Widget_AppCompat_Spinner
+style RtlOverlay_DialogWindowTitle_AppCompat
+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
+style RtlOverlay_Widget_AppCompat_PopupMenuItem
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
+style RtlOverlay_Widget_AppCompat_Search_DropDown
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
+style RtlUnderlay_Widget_AppCompat_ActionButton
+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
+style TextAppearance_AppCompat
+style TextAppearance_AppCompat_Body1
+style TextAppearance_AppCompat_Body2
+style TextAppearance_AppCompat_Button
+style TextAppearance_AppCompat_Caption
+style TextAppearance_AppCompat_Display1
+style TextAppearance_AppCompat_Display2
+style TextAppearance_AppCompat_Display3
+style TextAppearance_AppCompat_Display4
+style TextAppearance_AppCompat_Headline
+style TextAppearance_AppCompat_Inverse
+style TextAppearance_AppCompat_Large
+style TextAppearance_AppCompat_Large_Inverse
+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
+style TextAppearance_AppCompat_Light_SearchResult_Title
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Medium
+style TextAppearance_AppCompat_Medium_Inverse
+style TextAppearance_AppCompat_Menu
+style TextAppearance_AppCompat_Notification
+style TextAppearance_AppCompat_Notification_Info
+style TextAppearance_AppCompat_Notification_Info_Media
+style TextAppearance_AppCompat_Notification_Line2
+style TextAppearance_AppCompat_Notification_Line2_Media
+style TextAppearance_AppCompat_Notification_Media
+style TextAppearance_AppCompat_Notification_Time
+style TextAppearance_AppCompat_Notification_Time_Media
+style TextAppearance_AppCompat_Notification_Title
+style TextAppearance_AppCompat_Notification_Title_Media
+style TextAppearance_AppCompat_SearchResult_Subtitle
+style TextAppearance_AppCompat_SearchResult_Title
+style TextAppearance_AppCompat_Small
+style TextAppearance_AppCompat_Small_Inverse
+style TextAppearance_AppCompat_Subhead
+style TextAppearance_AppCompat_Subhead_Inverse
+style TextAppearance_AppCompat_Title
+style TextAppearance_AppCompat_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Menu
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Title
+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Title
+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
+style TextAppearance_AppCompat_Widget_Button
+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style TextAppearance_AppCompat_Widget_Button_Colored
+style TextAppearance_AppCompat_Widget_Button_Inverse
+style TextAppearance_AppCompat_Widget_DropDownItem
+style TextAppearance_AppCompat_Widget_PopupMenu_Header
+style TextAppearance_AppCompat_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Widget_Switch
+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style TextAppearance_StatusBar_EventContent
+style TextAppearance_StatusBar_EventContent_Info
+style TextAppearance_StatusBar_EventContent_Line2
+style TextAppearance_StatusBar_EventContent_Time
+style TextAppearance_StatusBar_EventContent_Title
+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style TextAppearance_Widget_AppCompat_Toolbar_Title
+style ThemeOverlay_AppCompat
+style ThemeOverlay_AppCompat_ActionBar
+style ThemeOverlay_AppCompat_Dark
+style ThemeOverlay_AppCompat_Dark_ActionBar
+style ThemeOverlay_AppCompat_Dialog
+style ThemeOverlay_AppCompat_Dialog_Alert
+style ThemeOverlay_AppCompat_Light
+style Theme_AppCompat
+style Theme_AppCompat_CompactMenu
+style Theme_AppCompat_DayNight
+style Theme_AppCompat_DayNight_DarkActionBar
+style Theme_AppCompat_DayNight_Dialog
+style Theme_AppCompat_DayNight_DialogWhenLarge
+style Theme_AppCompat_DayNight_Dialog_Alert
+style Theme_AppCompat_DayNight_Dialog_MinWidth
+style Theme_AppCompat_DayNight_NoActionBar
+style Theme_AppCompat_Dialog
+style Theme_AppCompat_DialogWhenLarge
+style Theme_AppCompat_Dialog_Alert
+style Theme_AppCompat_Dialog_MinWidth
+style Theme_AppCompat_Light
+style Theme_AppCompat_Light_DarkActionBar
+style Theme_AppCompat_Light_Dialog
+style Theme_AppCompat_Light_DialogWhenLarge
+style Theme_AppCompat_Light_Dialog_Alert
+style Theme_AppCompat_Light_Dialog_MinWidth
+style Theme_AppCompat_Light_NoActionBar
+style Theme_AppCompat_NoActionBar
+style Widget_AppCompat_ActionBar
+style Widget_AppCompat_ActionBar_Solid
+style Widget_AppCompat_ActionBar_TabBar
+style Widget_AppCompat_ActionBar_TabText
+style Widget_AppCompat_ActionBar_TabView
+style Widget_AppCompat_ActionButton
+style Widget_AppCompat_ActionButton_CloseMode
+style Widget_AppCompat_ActionButton_Overflow
+style Widget_AppCompat_ActionMode
+style Widget_AppCompat_ActivityChooserView
+style Widget_AppCompat_AutoCompleteTextView
+style Widget_AppCompat_Button
+style Widget_AppCompat_ButtonBar
+style Widget_AppCompat_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Borderless
+style Widget_AppCompat_Button_Borderless_Colored
+style Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Colored
+style Widget_AppCompat_Button_Small
+style Widget_AppCompat_CompoundButton_CheckBox
+style Widget_AppCompat_CompoundButton_RadioButton
+style Widget_AppCompat_CompoundButton_Switch
+style Widget_AppCompat_DrawerArrowToggle
+style Widget_AppCompat_DropDownItem_Spinner
+style Widget_AppCompat_EditText
+style Widget_AppCompat_ImageButton
+style Widget_AppCompat_Light_ActionBar
+style Widget_AppCompat_Light_ActionBar_Solid
+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
+style Widget_AppCompat_Light_ActionBar_TabBar
+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
+style Widget_AppCompat_Light_ActionBar_TabText
+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Widget_AppCompat_Light_ActionBar_TabView
+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
+style Widget_AppCompat_Light_ActionButton
+style Widget_AppCompat_Light_ActionButton_CloseMode
+style Widget_AppCompat_Light_ActionButton_Overflow
+style Widget_AppCompat_Light_ActionMode_Inverse
+style Widget_AppCompat_Light_ActivityChooserView
+style Widget_AppCompat_Light_AutoCompleteTextView
+style Widget_AppCompat_Light_DropDownItem_Spinner
+style Widget_AppCompat_Light_ListPopupWindow
+style Widget_AppCompat_Light_ListView_DropDown
+style Widget_AppCompat_Light_PopupMenu
+style Widget_AppCompat_Light_PopupMenu_Overflow
+style Widget_AppCompat_Light_SearchView
+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
+style Widget_AppCompat_ListMenuView
+style Widget_AppCompat_ListPopupWindow
+style Widget_AppCompat_ListView
+style Widget_AppCompat_ListView_DropDown
+style Widget_AppCompat_ListView_Menu
+style Widget_AppCompat_NotificationActionContainer
+style Widget_AppCompat_NotificationActionText
+style Widget_AppCompat_PopupMenu
+style Widget_AppCompat_PopupMenu_Overflow
+style Widget_AppCompat_PopupWindow
+style Widget_AppCompat_ProgressBar
+style Widget_AppCompat_ProgressBar_Horizontal
+style Widget_AppCompat_RatingBar
+style Widget_AppCompat_RatingBar_Indicator
+style Widget_AppCompat_RatingBar_Small
+style Widget_AppCompat_SearchView
+style Widget_AppCompat_SearchView_ActionBar
+style Widget_AppCompat_SeekBar
+style Widget_AppCompat_SeekBar_Discrete
+style Widget_AppCompat_Spinner
+style Widget_AppCompat_Spinner_DropDown
+style Widget_AppCompat_Spinner_DropDown_ActionBar
+style Widget_AppCompat_Spinner_Underlined
+style Widget_AppCompat_TextView_SpinnerItem
+style Widget_AppCompat_Toolbar
+style Widget_AppCompat_Toolbar_Button_Navigation
+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
+styleable ActionBarLayout android_layout_gravity
+styleable ActionMenuItemView android_minWidth
+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
+styleable AlertDialog android_layout buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
+styleable AppCompatImageView android_src srcCompat
+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
+styleable AppCompatTextView android_textAppearance textAllCaps
+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable ButtonBarLayout allowStacking
+styleable ColorStateListItem alpha android_alpha android_color
+styleable CompoundButton android_button buttonTint buttonTintMode
+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
+styleable MenuItem actionLayout actionProviderClass actionViewClass android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription showAsAction tooltipText
+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
+styleable PopupWindowBackgroundState state_above_anchor
+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
+styleable TextAppearance android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textSize android_textStyle android_typeface textAllCaps
+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
+styleable View android_focusable android_theme paddingEnd paddingStart theme
+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
+styleable ViewStubCompat android_id android_inflatedId android_layout
diff --git a/nexdlkey-lib/build/.transforms/dc8c1e8d77961b24acb674f86e8f9f5b/results.bin b/nexdlkey-lib/build/.transforms/dc8c1e8d77961b24acb674f86e8f9f5b/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/e2d3a98434ca746328bec04cb1c5809d/results.bin b/nexdlkey-lib/build/.transforms/e2d3a98434ca746328bec04cb1c5809d/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/ecb129d7f980267b971d39c3efa7718f/results.bin b/nexdlkey-lib/build/.transforms/ecb129d7f980267b971d39c3efa7718f/results.bin
new file mode 100644
index 0000000..e69de29
diff --git a/nexdlkey-lib/build/.transforms/f06bb7b80270c387aad60df0529a0437/results.bin b/nexdlkey-lib/build/.transforms/f06bb7b80270c387aad60df0529a0437/results.bin
new file mode 100644
index 0000000..a4463b9
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/f06bb7b80270c387aad60df0529a0437/results.bin
@@ -0,0 +1 @@
+o/com.nexgo.downloadkey
diff --git a/nexdlkey-lib/build/.transforms/f1476c7c43fecd9ea2246a48a1cd7830/results.bin b/nexdlkey-lib/build/.transforms/f1476c7c43fecd9ea2246a48a1cd7830/results.bin
new file mode 100644
index 0000000..199366a
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/f1476c7c43fecd9ea2246a48a1cd7830/results.bin
@@ -0,0 +1 @@
+i/jni
diff --git a/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/results.bin b/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/results.bin
new file mode 100644
index 0000000..e4eee58
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/results.bin
@@ -0,0 +1 @@
+o/nexgo-sdk-dlkey-1.0.2-runtime.jar
diff --git a/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/transformed/nexgo-sdk-dlkey-1.0.2-runtime.jar b/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/transformed/nexgo-sdk-dlkey-1.0.2-runtime.jar
new file mode 100644
index 0000000..e2ad1ad
Binary files /dev/null and b/nexdlkey-lib/build/.transforms/f632d77aa75504d3c3c25c1c02ce37e9/transformed/nexgo-sdk-dlkey-1.0.2-runtime.jar differ
diff --git a/nexdlkey-lib/build/.transforms/ff4f1c10f9ea77c68561ad59a57a2117/results.bin b/nexdlkey-lib/build/.transforms/ff4f1c10f9ea77c68561ad59a57a2117/results.bin
new file mode 100644
index 0000000..1ed65e0
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/ff4f1c10f9ea77c68561ad59a57a2117/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/nexdlkey-lib/build/.transforms/ff5a8e7887c553c1fe3e060cb3a76a97/results.bin b/nexdlkey-lib/build/.transforms/ff5a8e7887c553c1fe3e060cb3a76a97/results.bin
new file mode 100644
index 0000000..da3b3ce
--- /dev/null
+++ b/nexdlkey-lib/build/.transforms/ff5a8e7887c553c1fe3e060cb3a76a97/results.bin
@@ -0,0 +1 @@
+i/res
diff --git a/nexdlkey-lib/nexgo-sdk-dlkey-1.0.2.aar b/nexdlkey-lib/nexgo-sdk-dlkey-1.0.2.aar
new file mode 100644
index 0000000..d2a63db
Binary files /dev/null and b/nexdlkey-lib/nexgo-sdk-dlkey-1.0.2.aar differ