diff --git a/jadx-cli/src/main/java/jadx/cli/tools/ConvertArscFile.java b/jadx-cli/src/main/java/jadx/cli/tools/ConvertArscFile.java new file mode 100644 index 000000000..1e885b349 --- /dev/null +++ b/jadx-cli/src/main/java/jadx/cli/tools/ConvertArscFile.java @@ -0,0 +1,80 @@ +package jadx.cli.tools; + +import java.io.BufferedInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import jadx.api.JadxArgs; +import jadx.core.dex.nodes.RootNode; +import jadx.core.utils.android.TextResMapFile; +import jadx.core.xmlgen.ResTableParser; + +/** + * Utility class for convert '.arsc' to simple text file with mapping id to resource name + */ +public class ConvertArscFile { + private static final Logger LOG = LoggerFactory.getLogger(ConvertArscFile.class); + private static int rewritesCount; + + public static void usage() { + LOG.info(" "); + LOG.info(""); + LOG.info("Note: If res-map already exists - it will be merged and updated"); + } + + public static void main(String[] args) throws IOException { + if (args.length < 2) { + usage(); + System.exit(1); + } + List inputPaths = Stream.of(args).map(Paths::get).collect(Collectors.toList()); + Path resMapFile = inputPaths.remove(0); + Map resMap; + if (Files.isReadable(resMapFile)) { + resMap = TextResMapFile.read(resMapFile); + } else { + resMap = new HashMap<>(); + } + LOG.info("Input entries count: {}", resMap.size()); + + RootNode root = new RootNode(new JadxArgs()); // not really needed + rewritesCount = 0; + for (Path resFile : inputPaths) { + try (InputStream inputStream = new BufferedInputStream(Files.newInputStream(resFile))) { + ResTableParser resTableParser = new ResTableParser(root); + resTableParser.decode(inputStream); + Map singleResMap = resTableParser.getResStorage().getResourcesNames(); + mergeResMaps(resMap, singleResMap); + LOG.info("{} entries count: {}, after merge: {}", resFile.getFileName(), singleResMap.size(), resMap.size()); + } + } + LOG.info("Output entries count: {}", resMap.size()); + LOG.info("Total rewrites count: {}", rewritesCount); + TextResMapFile.write(resMapFile, resMap); + LOG.info("Result file size: {} B", resMapFile.toFile().length()); + LOG.info("done"); + } + + private static void mergeResMaps(Map mainResMap, Map newResMap) { + for (Map.Entry entry : newResMap.entrySet()) { + Integer id = entry.getKey(); + String name = entry.getValue(); + String prevName = mainResMap.put(id, name); + if (prevName != null && !name.equals(prevName)) { + LOG.debug("Rewrite id: {} from: '{}' to: '{}'", Integer.toHexString(id), prevName, name); + rewritesCount++; + } + } + } +} diff --git a/jadx-core/src/main/java/jadx/core/dex/nodes/RootNode.java b/jadx-core/src/main/java/jadx/core/dex/nodes/RootNode.java index 605417d8e..f697475a1 100644 --- a/jadx-core/src/main/java/jadx/core/dex/nodes/RootNode.java +++ b/jadx-core/src/main/java/jadx/core/dex/nodes/RootNode.java @@ -173,7 +173,7 @@ public class RootNode { long start = System.currentTimeMillis(); int renamedCount = 0; ResourceStorage resStorage = parser.getResStorage(); - ValuesParser valuesParser = new ValuesParser(this, parser.getStrings(), resStorage.getResourcesNames()); + ValuesParser valuesParser = new ValuesParser(parser.getStrings(), resStorage.getResourcesNames()); Map entryNames = new HashMap<>(); for (ResourceEntry resEntry : resStorage.getResources()) { String val = valuesParser.getSimpleValueString(resEntry); diff --git a/jadx-core/src/main/java/jadx/core/utils/android/TextResMapFile.java b/jadx-core/src/main/java/jadx/core/utils/android/TextResMapFile.java new file mode 100644 index 000000000..0807fc4f5 --- /dev/null +++ b/jadx-core/src/main/java/jadx/core/utils/android/TextResMapFile.java @@ -0,0 +1,42 @@ +package jadx.core.utils.android; + +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.TreeMap; + +import jadx.core.utils.exceptions.JadxRuntimeException; + +public class TextResMapFile { + private static final int SPLIT_POS = 8; + + public static Map read(Path resMapFile) { + try { + Map resMap = new HashMap<>(); + for (String line : Files.readAllLines(resMapFile)) { + int id = Integer.parseInt(line.substring(0, SPLIT_POS), 16); + String name = line.substring(SPLIT_POS + 1); + resMap.put(id, name); + } + return resMap; + } catch (Exception e) { + throw new JadxRuntimeException("Failed to read res-map file", e); + } + } + + public static void write(Path resMapFile, Map inputResMap) { + try { + Map resMap = new TreeMap<>(inputResMap); + List lines = new ArrayList<>(resMap.size()); + for (Map.Entry entry : resMap.entrySet()) { + lines.add(String.format("%08x=%s", entry.getKey(), entry.getValue())); + } + Files.write(resMapFile, lines); + } catch (Exception e) { + throw new JadxRuntimeException("Failed to write res-map file", e); + } + } +} diff --git a/jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java b/jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java index 8e37d5cef..9c4f0769e 100644 --- a/jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java +++ b/jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java @@ -117,7 +117,7 @@ public class BinaryXMLParser extends CommonBinaryParser { break; case RES_STRING_POOL_TYPE: strings = parseStringPoolNoType(); - valuesParser = new ValuesParser(rootNode, strings, resNames); + valuesParser = new ValuesParser(strings, resNames); break; case RES_XML_RESOURCE_MAP_TYPE: parseResourceMap(); diff --git a/jadx-core/src/main/java/jadx/core/xmlgen/ResTableParser.java b/jadx-core/src/main/java/jadx/core/xmlgen/ResTableParser.java index 62831d4e2..b3e2190d9 100644 --- a/jadx-core/src/main/java/jadx/core/xmlgen/ResTableParser.java +++ b/jadx-core/src/main/java/jadx/core/xmlgen/ResTableParser.java @@ -73,7 +73,7 @@ public class ResTableParser extends CommonBinaryParser { public ResContainer decodeFiles(InputStream inputStream) throws IOException { decode(inputStream); - ValuesParser vp = new ValuesParser(root, strings, resStorage.getResourcesNames()); + ValuesParser vp = new ValuesParser(strings, resStorage.getResourcesNames()); ResXmlGen resGen = new ResXmlGen(resStorage, vp); ICodeInfo content = makeXmlDump(); diff --git a/jadx-core/src/main/java/jadx/core/xmlgen/entry/ValuesParser.java b/jadx-core/src/main/java/jadx/core/xmlgen/entry/ValuesParser.java index 8abb3bdd5..7874f5ce7 100644 --- a/jadx-core/src/main/java/jadx/core/xmlgen/entry/ValuesParser.java +++ b/jadx-core/src/main/java/jadx/core/xmlgen/entry/ValuesParser.java @@ -1,8 +1,7 @@ package jadx.core.xmlgen.entry; -import java.io.BufferedInputStream; -import java.io.IOException; -import java.io.InputStream; +import java.net.URL; +import java.nio.file.Paths; import java.text.NumberFormat; import java.util.ArrayList; import java.util.List; @@ -13,9 +12,9 @@ import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import jadx.core.dex.nodes.RootNode; +import jadx.core.utils.android.TextResMapFile; +import jadx.core.utils.exceptions.JadxRuntimeException; import jadx.core.xmlgen.ParserConstants; -import jadx.core.xmlgen.ResTableParser; public class ValuesParser extends ParserConstants { private static final Logger LOG = LoggerFactory.getLogger(ValuesParser.class); @@ -25,25 +24,21 @@ public class ValuesParser extends ParserConstants { private final String[] strings; private final Map resMap; - public ValuesParser(RootNode root, String[] strings, Map resMap) { + public ValuesParser(String[] strings, Map resMap) { this.strings = strings; this.resMap = resMap; if (androidResMap == null) { - try { - decodeAndroid(root); - } catch (Exception e) { - LOG.error("Failed to decode Android Resource file", e); - } + androidResMap = loadAndroidResMap(); } } - // TODO: store only needed data instead full resources.arsc file - private static void decodeAndroid(RootNode root) throws IOException { - try (InputStream inputStream = new BufferedInputStream(ValuesParser.class.getResourceAsStream("/resources.arsc"))) { - ResTableParser androidParser = new ResTableParser(root); - androidParser.decode(inputStream); - androidResMap = androidParser.getResStorage().getResourcesNames(); + private static Map loadAndroidResMap() { + try { + URL resMapUrl = ValuesParser.class.getResource("/android/res-map.txt"); + return TextResMapFile.read(Paths.get(resMapUrl.toURI())); + } catch (Exception e) { + throw new JadxRuntimeException("Failed to load android resource file", e); } } diff --git a/jadx-core/src/main/resources/android/res-map.txt b/jadx-core/src/main/resources/android/res-map.txt new file mode 100644 index 000000000..2685a4c4b --- /dev/null +++ b/jadx-core/src/main/resources/android/res-map.txt @@ -0,0 +1,11919 @@ +01010000=attr/theme +01010001=attr/label +01010002=attr/icon +01010003=attr/name +01010004=attr/manageSpaceActivity +01010005=attr/allowClearUserData +01010006=attr/permission +01010007=attr/readPermission +01010008=attr/writePermission +01010009=attr/protectionLevel +0101000a=attr/permissionGroup +0101000b=attr/sharedUserId +0101000c=attr/hasCode +0101000d=attr/persistent +0101000e=attr/enabled +0101000f=attr/debuggable +01010010=attr/exported +01010011=attr/process +01010012=attr/taskAffinity +01010013=attr/multiprocess +01010014=attr/finishOnTaskLaunch +01010015=attr/clearTaskOnLaunch +01010016=attr/stateNotNeeded +01010017=attr/excludeFromRecents +01010018=attr/authorities +01010019=attr/syncable +0101001a=attr/initOrder +0101001b=attr/grantUriPermissions +0101001c=attr/priority +0101001d=attr/launchMode +0101001e=attr/screenOrientation +0101001f=attr/configChanges +01010020=attr/description +01010021=attr/targetPackage +01010022=attr/handleProfiling +01010023=attr/functionalTest +01010024=attr/value +01010025=attr/resource +01010026=attr/mimeType +01010027=attr/scheme +01010028=attr/host +01010029=attr/port +0101002a=attr/path +0101002b=attr/pathPrefix +0101002c=attr/pathPattern +0101002d=attr/action +0101002e=attr/data +0101002f=attr/targetClass +01010030=attr/colorForeground +01010031=attr/colorBackground +01010032=attr/backgroundDimAmount +01010033=attr/disabledAlpha +01010034=attr/textAppearance +01010035=attr/textAppearanceInverse +01010036=attr/textColorPrimary +01010037=attr/textColorPrimaryDisableOnly +01010038=attr/textColorSecondary +01010039=attr/textColorPrimaryInverse +0101003a=attr/textColorSecondaryInverse +0101003b=attr/textColorPrimaryNoDisable +0101003c=attr/textColorSecondaryNoDisable +0101003d=attr/textColorPrimaryInverseNoDisable +0101003e=attr/textColorSecondaryInverseNoDisable +0101003f=attr/textColorHintInverse +01010040=attr/textAppearanceLarge +01010041=attr/textAppearanceMedium +01010042=attr/textAppearanceSmall +01010043=attr/textAppearanceLargeInverse +01010044=attr/textAppearanceMediumInverse +01010045=attr/textAppearanceSmallInverse +01010046=attr/textCheckMark +01010047=attr/textCheckMarkInverse +01010048=attr/buttonStyle +01010049=attr/buttonStyleSmall +0101004a=attr/buttonStyleInset +0101004b=attr/buttonStyleToggle +0101004c=attr/galleryItemBackground +0101004d=attr/listPreferredItemHeight +0101004e=attr/expandableListPreferredItemPaddingLeft +0101004f=attr/expandableListPreferredChildPaddingLeft +01010050=attr/expandableListPreferredItemIndicatorLeft +01010051=attr/expandableListPreferredItemIndicatorRight +01010052=attr/expandableListPreferredChildIndicatorLeft +01010053=attr/expandableListPreferredChildIndicatorRight +01010054=attr/windowBackground +01010055=attr/windowFrame +01010056=attr/windowNoTitle +01010057=attr/windowIsFloating +01010058=attr/windowIsTranslucent +01010059=attr/windowContentOverlay +0101005a=attr/windowTitleSize +0101005b=attr/windowTitleStyle +0101005c=attr/windowTitleBackgroundStyle +0101005d=attr/alertDialogStyle +0101005e=attr/panelBackground +0101005f=attr/panelFullBackground +01010060=attr/panelColorForeground +01010061=attr/panelColorBackground +01010062=attr/panelTextAppearance +01010063=attr/scrollbarSize +01010064=attr/scrollbarThumbHorizontal +01010065=attr/scrollbarThumbVertical +01010066=attr/scrollbarTrackHorizontal +01010067=attr/scrollbarTrackVertical +01010068=attr/scrollbarAlwaysDrawHorizontalTrack +01010069=attr/scrollbarAlwaysDrawVerticalTrack +0101006a=attr/absListViewStyle +0101006b=attr/autoCompleteTextViewStyle +0101006c=attr/checkboxStyle +0101006d=attr/dropDownListViewStyle +0101006e=attr/editTextStyle +0101006f=attr/expandableListViewStyle +01010070=attr/galleryStyle +01010071=attr/gridViewStyle +01010072=attr/imageButtonStyle +01010073=attr/imageWellStyle +01010074=attr/listViewStyle +01010075=attr/listViewWhiteStyle +01010076=attr/popupWindowStyle +01010077=attr/progressBarStyle +01010078=attr/progressBarStyleHorizontal +01010079=attr/progressBarStyleSmall +0101007a=attr/progressBarStyleLarge +0101007b=attr/seekBarStyle +0101007c=attr/ratingBarStyle +0101007d=attr/ratingBarStyleSmall +0101007e=attr/radioButtonStyle +0101007f=attr/scrollbarStyle +01010080=attr/scrollViewStyle +01010081=attr/spinnerStyle +01010082=attr/starStyle +01010083=attr/tabWidgetStyle +01010084=attr/textViewStyle +01010085=attr/webViewStyle +01010086=attr/dropDownItemStyle +01010087=attr/spinnerDropDownItemStyle +01010088=attr/dropDownHintAppearance +01010089=attr/spinnerItemStyle +0101008a=attr/mapViewStyle +0101008b=attr/preferenceScreenStyle +0101008c=attr/preferenceCategoryStyle +0101008d=attr/preferenceInformationStyle +0101008e=attr/preferenceStyle +0101008f=attr/checkBoxPreferenceStyle +01010090=attr/yesNoPreferenceStyle +01010091=attr/dialogPreferenceStyle +01010092=attr/editTextPreferenceStyle +01010093=attr/ringtonePreferenceStyle +01010094=attr/preferenceLayoutChild +01010095=attr/textSize +01010096=attr/typeface +01010097=attr/textStyle +01010098=attr/textColor +01010099=attr/textColorHighlight +0101009a=attr/textColorHint +0101009b=attr/textColorLink +0101009c=attr/state_focused +0101009d=attr/state_window_focused +0101009e=attr/state_enabled +0101009f=attr/state_checkable +010100a0=attr/state_checked +010100a1=attr/state_selected +010100a2=attr/state_active +010100a3=attr/state_single +010100a4=attr/state_first +010100a5=attr/state_middle +010100a6=attr/state_last +010100a7=attr/state_pressed +010100a8=attr/state_expanded +010100a9=attr/state_empty +010100aa=attr/state_above_anchor +010100ab=attr/ellipsize +010100ac=attr/x +010100ad=attr/y +010100ae=attr/windowAnimationStyle +010100af=attr/gravity +010100b0=attr/autoLink +010100b1=attr/linksClickable +010100b2=attr/entries +010100b3=attr/layout_gravity +010100b4=attr/windowEnterAnimation +010100b5=attr/windowExitAnimation +010100b6=attr/windowShowAnimation +010100b7=attr/windowHideAnimation +010100b8=attr/activityOpenEnterAnimation +010100b9=attr/activityOpenExitAnimation +010100ba=attr/activityCloseEnterAnimation +010100bb=attr/activityCloseExitAnimation +010100bc=attr/taskOpenEnterAnimation +010100bd=attr/taskOpenExitAnimation +010100be=attr/taskCloseEnterAnimation +010100bf=attr/taskCloseExitAnimation +010100c0=attr/taskToFrontEnterAnimation +010100c1=attr/taskToFrontExitAnimation +010100c2=attr/taskToBackEnterAnimation +010100c3=attr/taskToBackExitAnimation +010100c4=attr/orientation +010100c5=attr/keycode +010100c6=attr/fullDark +010100c7=attr/topDark +010100c8=attr/centerDark +010100c9=attr/bottomDark +010100ca=attr/fullBright +010100cb=attr/topBright +010100cc=attr/centerBright +010100cd=attr/bottomBright +010100ce=attr/bottomMedium +010100cf=attr/centerMedium +010100d0=attr/id +010100d1=attr/tag +010100d2=attr/scrollX +010100d3=attr/scrollY +010100d4=attr/background +010100d5=attr/padding +010100d6=attr/paddingLeft +010100d7=attr/paddingTop +010100d8=attr/paddingRight +010100d9=attr/paddingBottom +010100da=attr/focusable +010100db=attr/focusableInTouchMode +010100dc=attr/visibility +010100dd=attr/fitsSystemWindows +010100de=attr/scrollbars +010100df=attr/fadingEdge +010100e0=attr/fadingEdgeLength +010100e1=attr/nextFocusLeft +010100e2=attr/nextFocusRight +010100e3=attr/nextFocusUp +010100e4=attr/nextFocusDown +010100e5=attr/clickable +010100e6=attr/longClickable +010100e7=attr/saveEnabled +010100e8=attr/drawingCacheQuality +010100e9=attr/duplicateParentState +010100ea=attr/clipChildren +010100eb=attr/clipToPadding +010100ec=attr/layoutAnimation +010100ed=attr/animationCache +010100ee=attr/persistentDrawingCache +010100ef=attr/alwaysDrawnWithCache +010100f0=attr/addStatesFromChildren +010100f1=attr/descendantFocusability +010100f2=attr/layout +010100f3=attr/inflatedId +010100f4=attr/layout_width +010100f5=attr/layout_height +010100f6=attr/layout_margin +010100f7=attr/layout_marginLeft +010100f8=attr/layout_marginTop +010100f9=attr/layout_marginRight +010100fa=attr/layout_marginBottom +010100fb=attr/listSelector +010100fc=attr/drawSelectorOnTop +010100fd=attr/stackFromBottom +010100fe=attr/scrollingCache +010100ff=attr/textFilterEnabled +01010100=attr/transcriptMode +01010101=attr/cacheColorHint +01010102=attr/dial +01010103=attr/hand_hour +01010104=attr/hand_minute +01010105=attr/format +01010106=attr/checked +01010107=attr/button +01010108=attr/checkMark +01010109=attr/foreground +0101010a=attr/measureAllChildren +0101010b=attr/groupIndicator +0101010c=attr/childIndicator +0101010d=attr/indicatorLeft +0101010e=attr/indicatorRight +0101010f=attr/childIndicatorLeft +01010110=attr/childIndicatorRight +01010111=attr/childDivider +01010112=attr/animationDuration +01010113=attr/spacing +01010114=attr/horizontalSpacing +01010115=attr/verticalSpacing +01010116=attr/stretchMode +01010117=attr/columnWidth +01010118=attr/numColumns +01010119=attr/src +0101011a=attr/antialias +0101011b=attr/filter +0101011c=attr/dither +0101011d=attr/scaleType +0101011e=attr/adjustViewBounds +0101011f=attr/maxWidth +01010120=attr/maxHeight +01010121=attr/tint +01010122=attr/baselineAlignBottom +01010123=attr/cropToPadding +01010124=attr/textOn +01010125=attr/textOff +01010126=attr/baselineAligned +01010127=attr/baselineAlignedChildIndex +01010128=attr/weightSum +01010129=attr/divider +0101012a=attr/dividerHeight +0101012b=attr/choiceMode +0101012c=attr/itemTextAppearance +0101012d=attr/horizontalDivider +0101012e=attr/verticalDivider +0101012f=attr/headerBackground +01010130=attr/itemBackground +01010131=attr/itemIconDisabledAlpha +01010132=attr/rowHeight +01010133=attr/maxRows +01010134=attr/maxItemsPerRow +01010135=attr/moreIcon +01010136=attr/max +01010137=attr/progress +01010138=attr/secondaryProgress +01010139=attr/indeterminate +0101013a=attr/indeterminateOnly +0101013b=attr/indeterminateDrawable +0101013c=attr/progressDrawable +0101013d=attr/indeterminateDuration +0101013e=attr/indeterminateBehavior +0101013f=attr/minWidth +01010140=attr/minHeight +01010141=attr/interpolator +01010142=attr/thumb +01010143=attr/thumbOffset +01010144=attr/numStars +01010145=attr/rating +01010146=attr/stepSize +01010147=attr/isIndicator +01010148=attr/checkedButton +01010149=attr/stretchColumns +0101014a=attr/shrinkColumns +0101014b=attr/collapseColumns +0101014c=attr/layout_column +0101014d=attr/layout_span +0101014e=attr/bufferType +0101014f=attr/text +01010150=attr/hint +01010151=attr/textScaleX +01010152=attr/cursorVisible +01010153=attr/maxLines +01010154=attr/lines +01010155=attr/height +01010156=attr/minLines +01010157=attr/maxEms +01010158=attr/ems +01010159=attr/width +0101015a=attr/minEms +0101015b=attr/scrollHorizontally +0101015c=attr/password +0101015d=attr/singleLine +0101015e=attr/selectAllOnFocus +0101015f=attr/includeFontPadding +01010160=attr/maxLength +01010161=attr/shadowColor +01010162=attr/shadowDx +01010163=attr/shadowDy +01010164=attr/shadowRadius +01010165=attr/numeric +01010166=attr/digits +01010167=attr/phoneNumber +01010168=attr/inputMethod +01010169=attr/capitalize +0101016a=attr/autoText +0101016b=attr/editable +0101016c=attr/freezesText +0101016d=attr/drawableTop +0101016e=attr/drawableBottom +0101016f=attr/drawableLeft +01010170=attr/drawableRight +01010171=attr/drawablePadding +01010172=attr/completionHint +01010173=attr/completionHintView +01010174=attr/completionThreshold +01010175=attr/dropDownSelector +01010176=attr/popupBackground +01010177=attr/inAnimation +01010178=attr/outAnimation +01010179=attr/flipInterval +0101017a=attr/fillViewport +0101017b=attr/prompt +0101017c=attr/startYear +0101017d=attr/endYear +0101017e=attr/mode +0101017f=attr/layout_x +01010180=attr/layout_y +01010181=attr/layout_weight +01010182=attr/layout_toLeftOf +01010183=attr/layout_toRightOf +01010184=attr/layout_above +01010185=attr/layout_below +01010186=attr/layout_alignBaseline +01010187=attr/layout_alignLeft +01010188=attr/layout_alignTop +01010189=attr/layout_alignRight +0101018a=attr/layout_alignBottom +0101018b=attr/layout_alignParentLeft +0101018c=attr/layout_alignParentTop +0101018d=attr/layout_alignParentRight +0101018e=attr/layout_alignParentBottom +0101018f=attr/layout_centerInParent +01010190=attr/layout_centerHorizontal +01010191=attr/layout_centerVertical +01010192=attr/layout_alignWithParentIfMissing +01010193=attr/layout_scale +01010194=attr/visible +01010195=attr/variablePadding +01010196=attr/constantSize +01010197=attr/oneshot +01010198=attr/duration +01010199=attr/drawable +0101019a=attr/shape +0101019b=attr/innerRadiusRatio +0101019c=attr/thicknessRatio +0101019d=attr/startColor +0101019e=attr/endColor +0101019f=attr/useLevel +010101a0=attr/angle +010101a1=attr/type +010101a2=attr/centerX +010101a3=attr/centerY +010101a4=attr/gradientRadius +010101a5=attr/color +010101a6=attr/dashWidth +010101a7=attr/dashGap +010101a8=attr/radius +010101a9=attr/topLeftRadius +010101aa=attr/topRightRadius +010101ab=attr/bottomLeftRadius +010101ac=attr/bottomRightRadius +010101ad=attr/left +010101ae=attr/top +010101af=attr/right +010101b0=attr/bottom +010101b1=attr/minLevel +010101b2=attr/maxLevel +010101b3=attr/fromDegrees +010101b4=attr/toDegrees +010101b5=attr/pivotX +010101b6=attr/pivotY +010101b7=attr/insetLeft +010101b8=attr/insetRight +010101b9=attr/insetTop +010101ba=attr/insetBottom +010101bb=attr/shareInterpolator +010101bc=attr/fillBefore +010101bd=attr/fillAfter +010101be=attr/startOffset +010101bf=attr/repeatCount +010101c0=attr/repeatMode +010101c1=attr/zAdjustment +010101c2=attr/fromXScale +010101c3=attr/toXScale +010101c4=attr/fromYScale +010101c5=attr/toYScale +010101c6=attr/fromXDelta +010101c7=attr/toXDelta +010101c8=attr/fromYDelta +010101c9=attr/toYDelta +010101ca=attr/fromAlpha +010101cb=attr/toAlpha +010101cc=attr/delay +010101cd=attr/animation +010101ce=attr/animationOrder +010101cf=attr/columnDelay +010101d0=attr/rowDelay +010101d1=attr/direction +010101d2=attr/directionPriority +010101d3=attr/factor +010101d4=attr/cycles +010101d5=attr/searchMode +010101d6=attr/searchSuggestAuthority +010101d7=attr/searchSuggestPath +010101d8=attr/searchSuggestSelection +010101d9=attr/searchSuggestIntentAction +010101da=attr/searchSuggestIntentData +010101db=attr/queryActionMsg +010101dc=attr/suggestActionMsg +010101dd=attr/suggestActionMsgColumn +010101de=attr/menuCategory +010101df=attr/orderInCategory +010101e0=attr/checkableBehavior +010101e1=attr/title +010101e2=attr/titleCondensed +010101e3=attr/alphabeticShortcut +010101e4=attr/numericShortcut +010101e5=attr/checkable +010101e6=attr/selectable +010101e7=attr/orderingFromXml +010101e8=attr/key +010101e9=attr/summary +010101ea=attr/order +010101eb=attr/widgetLayout +010101ec=attr/dependency +010101ed=attr/defaultValue +010101ee=attr/shouldDisableView +010101ef=attr/summaryOn +010101f0=attr/summaryOff +010101f1=attr/disableDependentsState +010101f2=attr/dialogTitle +010101f3=attr/dialogMessage +010101f4=attr/dialogIcon +010101f5=attr/positiveButtonText +010101f6=attr/negativeButtonText +010101f7=attr/dialogLayout +010101f8=attr/entryValues +010101f9=attr/ringtoneType +010101fa=attr/showDefault +010101fb=attr/showSilent +010101fc=attr/scaleWidth +010101fd=attr/scaleHeight +010101fe=attr/scaleGravity +010101ff=attr/ignoreGravity +01010200=attr/foregroundGravity +01010201=attr/tileMode +01010202=attr/targetActivity +01010203=attr/alwaysRetainTaskState +01010204=attr/allowTaskReparenting +01010205=attr/searchButtonText +01010206=attr/colorForegroundInverse +01010207=attr/textAppearanceButton +01010208=attr/listSeparatorTextViewStyle +01010209=attr/streamType +0101020a=attr/clipOrientation +0101020b=attr/centerColor +0101020c=attr/minSdkVersion +0101020d=attr/windowFullscreen +0101020e=attr/unselectedAlpha +0101020f=attr/progressBarStyleSmallTitle +01010210=attr/ratingBarStyleIndicator +01010211=attr/apiKey +01010212=attr/textColorTertiary +01010213=attr/textColorTertiaryInverse +01010214=attr/listDivider +01010215=attr/soundEffectsEnabled +01010216=attr/keepScreenOn +01010217=attr/lineSpacingExtra +01010218=attr/lineSpacingMultiplier +01010219=attr/listChoiceIndicatorSingle +0101021a=attr/listChoiceIndicatorMultiple +0101021b=attr/versionCode +0101021c=attr/versionName +0101021d=attr/marqueeRepeatLimit +0101021e=attr/windowNoDisplay +0101021f=attr/backgroundDimEnabled +01010220=attr/inputType +01010221=attr/isDefault +01010222=attr/windowDisablePreview +01010223=attr/privateImeOptions +01010224=attr/editorExtras +01010225=attr/settingsActivity +01010226=attr/fastScrollEnabled +01010227=attr/reqTouchScreen +01010228=attr/reqKeyboardType +01010229=attr/reqHardKeyboard +0101022a=attr/reqNavigation +0101022b=attr/windowSoftInputMode +0101022c=attr/imeFullscreenBackground +0101022d=attr/noHistory +0101022e=attr/headerDividersEnabled +0101022f=attr/footerDividersEnabled +01010230=attr/candidatesTextStyleSpans +01010231=attr/smoothScrollbar +01010232=attr/reqFiveWayNav +01010233=attr/keyBackground +01010234=attr/keyTextSize +01010235=attr/labelTextSize +01010236=attr/keyTextColor +01010237=attr/keyPreviewLayout +01010238=attr/keyPreviewOffset +01010239=attr/keyPreviewHeight +0101023a=attr/verticalCorrection +0101023b=attr/popupLayout +0101023c=attr/state_long_pressable +0101023d=attr/keyWidth +0101023e=attr/keyHeight +0101023f=attr/horizontalGap +01010240=attr/verticalGap +01010241=attr/rowEdgeFlags +01010242=attr/codes +01010243=attr/popupKeyboard +01010244=attr/popupCharacters +01010245=attr/keyEdgeFlags +01010246=attr/isModifier +01010247=attr/isSticky +01010248=attr/isRepeatable +01010249=attr/iconPreview +0101024a=attr/keyOutputText +0101024b=attr/keyLabel +0101024c=attr/keyIcon +0101024d=attr/keyboardMode +0101024e=attr/isScrollContainer +0101024f=attr/fillEnabled +01010250=attr/updatePeriodMillis +01010251=attr/initialLayout +01010252=attr/voiceSearchMode +01010253=attr/voiceLanguageModel +01010254=attr/voicePromptText +01010255=attr/voiceLanguage +01010256=attr/voiceMaxResults +01010257=attr/bottomOffset +01010258=attr/topOffset +01010259=attr/allowSingleTap +0101025a=attr/handle +0101025b=attr/content +0101025c=attr/animateOnClick +0101025d=attr/configure +0101025e=attr/hapticFeedbackEnabled +0101025f=attr/innerRadius +01010260=attr/thickness +01010261=attr/sharedUserLabel +01010262=attr/dropDownWidth +01010263=attr/dropDownAnchor +01010264=attr/imeOptions +01010265=attr/imeActionLabel +01010266=attr/imeActionId +01010267=attr/textColorPrimaryActivated +01010268=attr/imeExtractEnterAnimation +01010269=attr/imeExtractExitAnimation +0101026a=attr/tension +0101026b=attr/extraTension +0101026c=attr/anyDensity +0101026d=attr/searchSuggestThreshold +0101026e=attr/includeInGlobalSearch +0101026f=attr/onClick +01010270=attr/targetSdkVersion +01010271=attr/maxSdkVersion +01010272=attr/testOnly +01010273=attr/contentDescription +01010274=attr/gestureStrokeWidth +01010275=attr/gestureColor +01010276=attr/uncertainGestureColor +01010277=attr/fadeOffset +01010278=attr/fadeDuration +01010279=attr/gestureStrokeType +0101027a=attr/gestureStrokeLengthThreshold +0101027b=attr/gestureStrokeSquarenessThreshold +0101027c=attr/gestureStrokeAngleThreshold +0101027d=attr/eventsInterceptionEnabled +0101027e=attr/fadeEnabled +0101027f=attr/backupAgent +01010280=attr/allowBackup +01010281=attr/glEsVersion +01010282=attr/queryAfterZeroResults +01010283=attr/dropDownHeight +01010284=attr/smallScreens +01010285=attr/normalScreens +01010286=attr/largeScreens +01010287=attr/progressBarStyleInverse +01010288=attr/progressBarStyleSmallInverse +01010289=attr/progressBarStyleLargeInverse +0101028a=attr/searchSettingsDescription +0101028b=attr/textColorPrimaryInverseDisableOnly +0101028c=attr/autoUrlDetect +0101028d=attr/resizeable +0101028e=attr/required +0101028f=attr/accountType +01010290=attr/contentAuthority +01010291=attr/userVisible +01010292=attr/windowShowWallpaper +01010293=attr/wallpaperOpenEnterAnimation +01010294=attr/wallpaperOpenExitAnimation +01010295=attr/wallpaperCloseEnterAnimation +01010296=attr/wallpaperCloseExitAnimation +01010297=attr/wallpaperIntraOpenEnterAnimation +01010298=attr/wallpaperIntraOpenExitAnimation +01010299=attr/wallpaperIntraCloseEnterAnimation +0101029a=attr/wallpaperIntraCloseExitAnimation +0101029b=attr/supportsUploading +0101029c=attr/killAfterRestore +0101029d=attr/restoreNeedsApplication +0101029e=attr/smallIcon +0101029f=attr/accountPreferences +010102a0=attr/textAppearanceSearchResultSubtitle +010102a1=attr/textAppearanceSearchResultTitle +010102a2=attr/summaryColumn +010102a3=attr/detailColumn +010102a4=attr/detailSocialSummary +010102a5=attr/thumbnail +010102a6=attr/detachWallpaper +010102a7=attr/finishOnCloseSystemDialogs +010102a8=attr/scrollbarFadeDuration +010102a9=attr/scrollbarDefaultDelayBeforeFade +010102aa=attr/fadeScrollbars +010102ab=attr/colorBackgroundCacheHint +010102ac=attr/dropDownHorizontalOffset +010102ad=attr/dropDownVerticalOffset +010102ae=attr/quickContactBadgeStyleWindowSmall +010102af=attr/quickContactBadgeStyleWindowMedium +010102b0=attr/quickContactBadgeStyleWindowLarge +010102b1=attr/quickContactBadgeStyleSmallWindowSmall +010102b2=attr/quickContactBadgeStyleSmallWindowMedium +010102b3=attr/quickContactBadgeStyleSmallWindowLarge +010102b4=attr/author +010102b5=attr/autoStart +010102b6=attr/expandableListViewWhiteStyle +010102b7=attr/installLocation +010102b8=attr/vmSafeMode +010102b9=attr/webTextViewStyle +010102ba=attr/restoreAnyVersion +010102bb=attr/tabStripLeft +010102bc=attr/tabStripRight +010102bd=attr/tabStripEnabled +010102be=attr/logo +010102bf=attr/xlargeScreens +010102c0=attr/immersive +010102c1=attr/overScrollMode +010102c2=attr/overScrollHeader +010102c3=attr/overScrollFooter +010102c4=attr/filterTouchesWhenObscured +010102c5=attr/textSelectHandleLeft +010102c6=attr/textSelectHandleRight +010102c7=attr/textSelectHandle +010102c8=attr/textSelectHandleWindowStyle +010102c9=attr/popupAnimationStyle +010102ca=attr/screenSize +010102cb=attr/screenDensity +010102cc=attr/allContactsName +010102cd=attr/windowActionBar +010102ce=attr/actionBarStyle +010102cf=attr/navigationMode +010102d0=attr/displayOptions +010102d1=attr/subtitle +010102d2=attr/customNavigationLayout +010102d3=attr/hardwareAccelerated +010102d4=attr/measureWithLargestChild +010102d5=attr/animateFirstView +010102d6=attr/dropDownSpinnerStyle +010102d7=attr/actionDropDownStyle +010102d8=attr/actionButtonStyle +010102d9=attr/showAsAction +010102da=attr/previewImage +010102db=attr/actionModeBackground +010102dc=attr/actionModeCloseDrawable +010102dd=attr/windowActionModeOverlay +010102de=attr/valueFrom +010102df=attr/valueTo +010102e0=attr/valueType +010102e1=attr/propertyName +010102e2=attr/ordering +010102e3=attr/fragment +010102e4=attr/windowActionBarOverlay +010102e5=attr/fragmentOpenEnterAnimation +010102e6=attr/fragmentOpenExitAnimation +010102e7=attr/fragmentCloseEnterAnimation +010102e8=attr/fragmentCloseExitAnimation +010102e9=attr/fragmentFadeEnterAnimation +010102ea=attr/fragmentFadeExitAnimation +010102eb=attr/actionBarSize +010102ec=attr/imeSubtypeLocale +010102ed=attr/imeSubtypeMode +010102ee=attr/imeSubtypeExtraValue +010102ef=attr/splitMotionEvents +010102f0=attr/listChoiceBackgroundIndicator +010102f1=attr/spinnerMode +010102f2=attr/animateLayoutChanges +010102f3=attr/actionBarTabStyle +010102f4=attr/actionBarTabBarStyle +010102f5=attr/actionBarTabTextStyle +010102f6=attr/actionOverflowButtonStyle +010102f7=attr/actionModeCloseButtonStyle +010102f8=attr/titleTextStyle +010102f9=attr/subtitleTextStyle +010102fa=attr/iconifiedByDefault +010102fb=attr/actionLayout +010102fc=attr/actionViewClass +010102fd=attr/activatedBackgroundIndicator +010102fe=attr/state_activated +010102ff=attr/listPopupWindowStyle +01010300=attr/popupMenuStyle +01010301=attr/textAppearanceLargePopupMenu +01010302=attr/textAppearanceSmallPopupMenu +01010303=attr/breadCrumbTitle +01010304=attr/breadCrumbShortTitle +01010305=attr/listDividerAlertDialog +01010306=attr/textColorAlertDialogListItem +01010307=attr/loopViews +01010308=attr/dialogTheme +01010309=attr/alertDialogTheme +0101030a=attr/dividerVertical +0101030b=attr/homeAsUpIndicator +0101030c=attr/enterFadeDuration +0101030d=attr/exitFadeDuration +0101030e=attr/selectableItemBackground +0101030f=attr/autoAdvanceViewId +01010310=attr/useIntrinsicSizeAsMinimum +01010311=attr/actionModeCutDrawable +01010312=attr/actionModeCopyDrawable +01010313=attr/actionModePasteDrawable +01010314=attr/textEditPasteWindowLayout +01010315=attr/textEditNoPasteWindowLayout +01010316=attr/textIsSelectable +01010317=attr/windowEnableSplitTouch +01010318=attr/indeterminateProgressStyle +01010319=attr/progressBarPadding +0101031a=attr/animationResolution +0101031b=attr/state_accelerated +0101031c=attr/baseline +0101031d=attr/homeLayout +0101031e=attr/opacity +0101031f=attr/alpha +01010320=attr/transformPivotX +01010321=attr/transformPivotY +01010322=attr/translationX +01010323=attr/translationY +01010324=attr/scaleX +01010325=attr/scaleY +01010326=attr/rotation +01010327=attr/rotationX +01010328=attr/rotationY +01010329=attr/showDividers +0101032a=attr/dividerPadding +0101032b=attr/borderlessButtonStyle +0101032c=attr/dividerHorizontal +0101032d=attr/itemPadding +0101032e=attr/buttonBarStyle +0101032f=attr/buttonBarButtonStyle +01010330=attr/segmentedButtonStyle +01010331=attr/staticWallpaperPreview +01010332=attr/allowParallelSyncs +01010333=attr/isAlwaysSyncable +01010334=attr/verticalScrollbarPosition +01010335=attr/fastScrollAlwaysVisible +01010336=attr/fastScrollThumbDrawable +01010337=attr/fastScrollPreviewBackgroundLeft +01010338=attr/fastScrollPreviewBackgroundRight +01010339=attr/fastScrollTrackDrawable +0101033a=attr/fastScrollOverlayPosition +0101033b=attr/customTokens +0101033c=attr/nextFocusForward +0101033d=attr/firstDayOfWeek +0101033e=attr/showWeekNumber +0101033f=attr/minDate +01010340=attr/maxDate +01010341=attr/shownWeekCount +01010342=attr/selectedWeekBackgroundColor +01010343=attr/focusedMonthDateColor +01010344=attr/unfocusedMonthDateColor +01010345=attr/weekNumberColor +01010346=attr/weekSeparatorLineColor +01010347=attr/selectedDateVerticalBar +01010348=attr/weekDayTextAppearance +01010349=attr/dateTextAppearance +0101034a=attr/solidColor +0101034b=attr/spinnersShown +0101034c=attr/calendarViewShown +0101034d=attr/state_multiline +0101034e=attr/detailsElementBackground +0101034f=attr/textColorHighlightInverse +01010350=attr/textColorLinkInverse +01010351=attr/editTextColor +01010352=attr/editTextBackground +01010353=attr/horizontalScrollViewStyle +01010354=attr/layerType +01010355=attr/alertDialogIcon +01010356=attr/windowMinWidthMajor +01010357=attr/windowMinWidthMinor +01010358=attr/queryHint +01010359=attr/fastScrollTextColor +0101035a=attr/largeHeap +0101035b=attr/windowCloseOnTouchOutside +0101035c=attr/datePickerStyle +0101035d=attr/calendarViewStyle +0101035e=attr/textEditSidePasteWindowLayout +0101035f=attr/textEditSideNoPasteWindowLayout +01010360=attr/actionMenuTextAppearance +01010361=attr/actionMenuTextColor +01010362=attr/textCursorDrawable +01010363=attr/resizeMode +01010364=attr/requiresSmallestWidthDp +01010365=attr/compatibleWidthLimitDp +01010366=attr/largestWidthLimitDp +01010367=attr/state_hovered +01010368=attr/state_drag_can_accept +01010369=attr/state_drag_hovered +0101036a=attr/stopWithTask +0101036b=attr/switchTextOn +0101036c=attr/switchTextOff +0101036d=attr/switchPreferenceStyle +0101036e=attr/switchTextAppearance +0101036f=attr/track +01010370=attr/switchMinWidth +01010371=attr/switchPadding +01010372=attr/thumbTextPadding +01010373=attr/textSuggestionsWindowStyle +01010374=attr/textEditSuggestionItemLayout +01010375=attr/rowCount +01010376=attr/rowOrderPreserved +01010377=attr/columnCount +01010378=attr/columnOrderPreserved +01010379=attr/useDefaultMargins +0101037a=attr/alignmentMode +0101037b=attr/layout_row +0101037c=attr/layout_rowSpan +0101037d=attr/layout_columnSpan +0101037e=attr/actionModeSelectAllDrawable +0101037f=attr/isAuxiliary +01010380=attr/accessibilityEventTypes +01010381=attr/packageNames +01010382=attr/accessibilityFeedbackType +01010383=attr/notificationTimeout +01010384=attr/accessibilityFlags +01010385=attr/canRetrieveWindowContent +01010386=attr/listPreferredItemHeightLarge +01010387=attr/listPreferredItemHeightSmall +01010388=attr/actionBarSplitStyle +01010389=attr/actionProviderClass +0101038a=attr/backgroundStacked +0101038b=attr/backgroundSplit +0101038c=attr/textAllCaps +0101038d=attr/colorPressedHighlight +0101038e=attr/colorLongPressedHighlight +0101038f=attr/colorFocusedHighlight +01010390=attr/colorActivatedHighlight +01010391=attr/colorMultiSelectHighlight +01010392=attr/drawableStart +01010393=attr/drawableEnd +01010394=attr/actionModeStyle +01010395=attr/minResizeWidth +01010396=attr/minResizeHeight +01010397=attr/actionBarWidgetTheme +01010398=attr/uiOptions +01010399=attr/subtypeLocale +0101039a=attr/subtypeExtraValue +0101039b=attr/actionBarDivider +0101039c=attr/actionBarItemBackground +0101039d=attr/actionModeSplitBackground +0101039e=attr/textAppearanceListItem +0101039f=attr/textAppearanceListItemSmall +010103a0=attr/targetDescriptions +010103a1=attr/directionDescriptions +010103a2=attr/overridesImplicitlyEnabledSubtype +010103a3=attr/listPreferredItemPaddingLeft +010103a4=attr/listPreferredItemPaddingRight +010103a5=attr/requiresFadingEdge +010103a6=attr/publicKey +010103a7=attr/parentActivityName +010103a8=attr/textColorSecondaryActivated +010103a9=attr/isolatedProcess +010103aa=attr/importantForAccessibility +010103ab=attr/keyboardLayout +010103ac=attr/fontFamily +010103ad=attr/mediaRouteButtonStyle +010103ae=attr/mediaRouteTypes +010103af=attr/supportsRtl +010103b0=attr/textDirection +010103b1=attr/textAlignment +010103b2=attr/layoutDirection +010103b3=attr/paddingStart +010103b4=attr/paddingEnd +010103b5=attr/layout_marginStart +010103b6=attr/layout_marginEnd +010103b7=attr/layout_toStartOf +010103b8=attr/layout_toEndOf +010103b9=attr/layout_alignStart +010103ba=attr/layout_alignEnd +010103bb=attr/layout_alignParentStart +010103bc=attr/layout_alignParentEnd +010103bd=attr/listPreferredItemPaddingStart +010103be=attr/listPreferredItemPaddingEnd +010103bf=attr/singleUser +010103c0=attr/presentationTheme +010103c1=attr/subtypeId +010103c2=attr/initialKeyguardLayout +010103c3=attr/textColorSearchUrl +010103c4=attr/widgetCategory +010103c5=attr/permissionGroupFlags +010103c6=attr/labelFor +010103c7=attr/permissionFlags +010103c8=attr/checkedTextViewStyle +010103c9=attr/showOnLockScreen +010103ca=attr/format12Hour +010103cb=attr/format24Hour +010103cc=attr/timeZone +010103cd=attr/mipMap +010103ce=attr/mirrorForRtl +010103cf=attr/windowOverscan +010103d0=attr/requiredForAllUsers +010103d1=attr/indicatorStart +010103d2=attr/indicatorEnd +010103d3=attr/childIndicatorStart +010103d4=attr/childIndicatorEnd +010103d5=attr/restrictedAccountType +010103d6=attr/requiredAccountType +010103d7=attr/canRequestTouchExplorationMode +010103d8=attr/canRequestEnhancedWebAccessibility +010103d9=attr/canRequestFilterKeyEvents +010103da=attr/layoutMode +010103db=attr/keySet +010103dc=attr/targetId +010103dd=attr/fromScene +010103de=attr/toScene +010103df=attr/transition +010103e0=attr/transitionOrdering +010103e1=attr/fadingMode +010103e2=attr/startDelay +010103e3=attr/ssp +010103e4=attr/sspPrefix +010103e5=attr/sspPattern +010103e6=attr/addPrintersActivity +010103e7=attr/vendor +010103e8=attr/category +010103e9=attr/isAsciiCapable +010103ea=attr/autoMirrored +010103eb=attr/supportsSwitchingToNextInputMethod +010103ec=attr/requireDeviceUnlock +010103ed=attr/apduServiceBanner +010103ee=attr/accessibilityLiveRegion +010103ef=attr/windowTranslucentStatus +010103f0=attr/windowTranslucentNavigation +010103f1=attr/advancedPrintOptionsActivity +010103f2=attr/banner +010103f3=attr/windowSwipeToDismiss +010103f4=attr/isGame +010103f5=attr/allowEmbedded +010103f6=attr/setupActivity +010103f7=attr/fastScrollStyle +010103f8=attr/windowContentTransitions +010103f9=attr/windowContentTransitionManager +010103fa=attr/translationZ +010103fb=attr/tintMode +010103fc=attr/controlX1 +010103fd=attr/controlY1 +010103fe=attr/controlX2 +010103ff=attr/controlY2 +01010400=attr/transitionName +01010401=attr/transitionGroup +01010402=attr/viewportWidth +01010403=attr/viewportHeight +01010404=attr/fillColor +01010405=attr/pathData +01010406=attr/strokeColor +01010407=attr/strokeWidth +01010408=attr/trimPathStart +01010409=attr/trimPathEnd +0101040a=attr/trimPathOffset +0101040b=attr/strokeLineCap +0101040c=attr/strokeLineJoin +0101040d=attr/strokeMiterLimit +0101040e=attr/searchWidgetCorpusItemBackground +0101040f=attr/textAppearanceEasyCorrectSuggestion +01010410=attr/textAppearanceMisspelledSuggestion +01010411=attr/textAppearanceAutoCorrectionSuggestion +01010412=attr/textUnderlineColor +01010413=attr/textUnderlineThickness +01010414=attr/errorMessageBackground +01010415=attr/errorMessageAboveBackground +01010416=attr/searchResultListItemHeight +01010417=attr/dropdownListPreferredItemHeight +01010418=attr/windowBackgroundFallback +01010419=attr/windowActionBarFullscreenDecorLayout +0101041a=attr/alertDialogButtonGroupStyle +0101041b=attr/alertDialogCenterButtons +0101041c=attr/panelMenuIsCompact +0101041d=attr/panelMenuListWidth +0101041e=attr/panelMenuListTheme +0101041f=attr/gestureOverlayViewStyle +01010420=attr/quickContactBadgeOverlay +01010421=attr/fragmentBreadCrumbsStyle +01010422=attr/numberPickerStyle +01010423=attr/activityChooserViewStyle +01010424=attr/actionModePopupWindowStyle +01010425=attr/preferenceActivityStyle +01010426=attr/preferenceFragmentStyle +01010427=attr/preferencePanelStyle +01010428=attr/preferenceHeaderPanelStyle +01010429=attr/colorControlNormal +0101042a=attr/colorControlActivated +0101042b=attr/colorButtonNormal +0101042c=attr/colorControlHighlight +0101042d=attr/persistableMode +0101042e=attr/titleTextAppearance +0101042f=attr/subtitleTextAppearance +01010430=attr/slideEdge +01010431=attr/actionBarTheme +01010432=attr/textAppearanceListItemSecondary +01010433=attr/colorPrimary +01010434=attr/colorPrimaryDark +01010435=attr/colorAccent +01010436=attr/nestedScrollingEnabled +01010437=attr/windowEnterTransition +01010438=attr/windowExitTransition +01010439=attr/windowSharedElementEnterTransition +0101043a=attr/windowSharedElementExitTransition +0101043b=attr/windowAllowReturnTransitionOverlap +0101043c=attr/windowAllowEnterTransitionOverlap +0101043d=attr/sessionService +0101043e=attr/stackViewStyle +0101043f=attr/switchStyle +01010440=attr/elevation +01010441=attr/excludeId +01010442=attr/excludeClass +01010443=attr/hideOnContentScroll +01010444=attr/actionOverflowMenuStyle +01010445=attr/documentLaunchMode +01010446=attr/maxRecents +01010447=attr/autoRemoveFromRecents +01010448=attr/stateListAnimator +01010449=attr/toId +0101044a=attr/fromId +0101044b=attr/reversible +0101044c=attr/splitTrack +0101044d=attr/targetName +0101044e=attr/excludeName +0101044f=attr/matchOrder +01010450=attr/windowDrawsSystemBarBackgrounds +01010451=attr/statusBarColor +01010452=attr/navigationBarColor +01010453=attr/contentInsetStart +01010454=attr/contentInsetEnd +01010455=attr/contentInsetLeft +01010456=attr/contentInsetRight +01010457=attr/paddingMode +01010458=attr/layout_rowWeight +01010459=attr/layout_columnWeight +0101045a=attr/translateX +0101045b=attr/translateY +0101045c=attr/selectableItemBackgroundBorderless +0101045d=attr/elegantTextHeight +0101045e=attr/searchKeyphraseId +0101045f=attr/searchKeyphrase +01010460=attr/searchKeyphraseSupportedLocales +01010461=attr/windowTransitionBackgroundFadeDuration +01010462=attr/overlapAnchor +01010463=attr/progressTint +01010464=attr/progressTintMode +01010465=attr/progressBackgroundTint +01010466=attr/progressBackgroundTintMode +01010467=attr/secondaryProgressTint +01010468=attr/secondaryProgressTintMode +01010469=attr/indeterminateTint +0101046a=attr/indeterminateTintMode +0101046b=attr/backgroundTint +0101046c=attr/backgroundTintMode +0101046d=attr/foregroundTint +0101046e=attr/foregroundTintMode +0101046f=attr/buttonTint +01010470=attr/buttonTintMode +01010471=attr/thumbTint +01010472=attr/thumbTintMode +01010473=attr/fullBackupOnly +01010474=attr/propertyXName +01010475=attr/propertyYName +01010476=attr/relinquishTaskIdentity +01010477=attr/tileModeX +01010478=attr/tileModeY +01010479=attr/actionModeShareDrawable +0101047a=attr/actionModeFindDrawable +0101047b=attr/actionModeWebSearchDrawable +0101047c=attr/transitionVisibilityMode +0101047d=attr/minimumHorizontalAngle +0101047e=attr/minimumVerticalAngle +0101047f=attr/maximumAngle +01010480=attr/searchViewStyle +01010481=attr/closeIcon +01010482=attr/goIcon +01010483=attr/searchIcon +01010484=attr/voiceIcon +01010485=attr/commitIcon +01010486=attr/suggestionRowLayout +01010487=attr/queryBackground +01010488=attr/submitBackground +01010489=attr/buttonBarPositiveButtonStyle +0101048a=attr/buttonBarNeutralButtonStyle +0101048b=attr/buttonBarNegativeButtonStyle +0101048c=attr/popupElevation +0101048d=attr/actionBarPopupTheme +0101048e=attr/multiArch +0101048f=attr/touchscreenBlocksFocus +01010490=attr/windowElevation +01010491=attr/launchTaskBehindTargetAnimation +01010492=attr/launchTaskBehindSourceAnimation +01010493=attr/restrictionType +01010494=attr/dayOfWeekBackground +01010495=attr/dayOfWeekTextAppearance +01010496=attr/headerMonthTextAppearance +01010497=attr/headerDayOfMonthTextAppearance +01010498=attr/headerYearTextAppearance +01010499=attr/yearListItemTextAppearance +0101049a=attr/yearListSelectorColor +0101049b=attr/calendarTextColor +0101049c=attr/recognitionService +0101049d=attr/timePickerStyle +0101049e=attr/timePickerDialogTheme +0101049f=attr/headerTimeTextAppearance +010104a0=attr/headerAmPmTextAppearance +010104a1=attr/numbersTextColor +010104a2=attr/numbersBackgroundColor +010104a3=attr/numbersSelectorColor +010104a4=attr/amPmTextColor +010104a5=attr/amPmBackgroundColor +010104a6=attr/searchKeyphraseRecognitionFlags +010104a7=attr/checkMarkTint +010104a8=attr/checkMarkTintMode +010104a9=attr/popupTheme +010104aa=attr/toolbarStyle +010104ab=attr/windowClipToOutline +010104ac=attr/datePickerDialogTheme +010104ad=attr/showText +010104ae=attr/windowReturnTransition +010104af=attr/windowReenterTransition +010104b0=attr/windowSharedElementReturnTransition +010104b1=attr/windowSharedElementReenterTransition +010104b2=attr/resumeWhilePausing +010104b3=attr/datePickerMode +010104b4=attr/timePickerMode +010104b5=attr/inset +010104b6=attr/letterSpacing +010104b7=attr/fontFeatureSettings +010104b8=attr/outlineProvider +010104b9=attr/contentAgeHint +010104ba=attr/country +010104bb=attr/windowSharedElementsUseOverlay +010104bc=attr/reparent +010104bd=attr/reparentWithOverlay +010104be=attr/ambientShadowAlpha +010104bf=attr/spotShadowAlpha +010104c0=attr/navigationIcon +010104c1=attr/navigationContentDescription +010104c2=attr/fragmentExitTransition +010104c3=attr/fragmentEnterTransition +010104c4=attr/fragmentSharedElementEnterTransition +010104c5=attr/fragmentReturnTransition +010104c6=attr/fragmentSharedElementReturnTransition +010104c7=attr/fragmentReenterTransition +010104c8=attr/fragmentAllowEnterTransitionOverlap +010104c9=attr/fragmentAllowReturnTransitionOverlap +010104ca=attr/patternPathData +010104cb=attr/strokeAlpha +010104cc=attr/fillAlpha +010104cd=attr/windowActivityTransitions +010104ce=attr/colorEdgeEffect +010104cf=attr/resizeClip +010104d0=attr/collapseContentDescription +010104d1=attr/accessibilityTraversalBefore +010104d2=attr/accessibilityTraversalAfter +010104d3=attr/dialogPreferredPadding +010104d4=attr/searchHintIcon +010104d5=attr/revisionCode +010104d6=attr/drawableTint +010104d7=attr/drawableTintMode +010104d8=attr/fraction +010104d9=attr/trackTint +010104da=attr/trackTintMode +010104db=attr/start +010104dc=attr/end +010104dd=attr/breakStrategy +010104de=attr/hyphenationFrequency +010104df=attr/allowUndo +010104e0=attr/windowLightStatusBar +010104e1=attr/numbersInnerTextColor +010104e2=attr/colorBackgroundFloating +010104e3=attr/titleTextColor +010104e4=attr/subtitleTextColor +010104e5=attr/thumbPosition +010104e6=attr/scrollIndicators +010104e7=attr/contextClickable +010104e8=attr/fingerprintAuthDrawable +010104e9=attr/logoDescription +010104ea=attr/extractNativeLibs +010104eb=attr/fullBackupContent +010104ec=attr/usesCleartextTraffic +010104ed=attr/lockTaskMode +010104ee=attr/autoVerify +010104ef=attr/showForAllUsers +010104f0=attr/supportsAssist +010104f1=attr/supportsLaunchVoiceAssistFromKeyguard +010104f2=attr/listMenuViewStyle +010104f3=attr/subMenuArrow +010104f4=attr/defaultWidth +010104f5=attr/defaultHeight +010104f6=attr/resizeableActivity +010104f7=attr/supportsPictureInPicture +010104f8=attr/titleMargin +010104f9=attr/titleMarginStart +010104fa=attr/titleMarginEnd +010104fb=attr/titleMarginTop +010104fc=attr/titleMarginBottom +010104fd=attr/maxButtonHeight +010104fe=attr/buttonGravity +010104ff=attr/collapseIcon +01010500=attr/level +01010501=attr/contextPopupMenuStyle +01010502=attr/textAppearancePopupMenuHeader +01010503=attr/windowBackgroundFallback +01010504=attr/defaultToDeviceProtectedStorage +01010505=attr/directBootAware +01010506=attr/preferenceFragmentStyle +01010507=attr/canControlMagnification +01010508=attr/languageTag +01010509=attr/pointerIcon +0101050a=attr/tickMark +0101050b=attr/tickMarkTint +0101050c=attr/tickMarkTintMode +0101050d=attr/canPerformGestures +0101050e=attr/externalService +0101050f=attr/supportsLocalInteraction +01010510=attr/startX +01010511=attr/startY +01010512=attr/endX +01010513=attr/endY +01010514=attr/offset +01010515=attr/use32bitAbi +01010516=attr/bitmap +01010517=attr/hotSpotX +01010518=attr/hotSpotY +01010519=attr/version +0101051a=attr/backupInForeground +0101051b=attr/countDown +0101051c=attr/canRecord +0101051d=attr/tunerCount +0101051e=attr/fillType +0101051f=attr/popupEnterTransition +01010520=attr/popupExitTransition +01010521=attr/forceHasOverlappingRendering +01010522=attr/contentInsetStartWithNavigation +01010523=attr/contentInsetEndWithActions +01010524=attr/numberPickerStyle +01010525=attr/enableVrMode +01010526=attr/hash +01010527=attr/networkSecurityConfig +01010528=attr/shortcutId +01010529=attr/shortcutShortLabel +0101052a=attr/shortcutLongLabel +0101052b=attr/shortcutDisabledMessage +0101052c=attr/roundIcon +0101052d=attr/contextUri +0101052e=attr/contextDescription +0101052f=attr/showMetadataInPreview +01010530=attr/colorSecondary +01010531=attr/visibleToInstantApps +01010532=attr/font +01010533=attr/fontWeight +01010534=attr/tooltipText +01010535=attr/autoSizeTextType +01010536=attr/autoSizeStepGranularity +01010537=attr/autoSizePresetSizes +01010538=attr/autoSizeMinTextSize +01010539=attr/min +0101053a=attr/rotationAnimation +0101053b=attr/layout_marginHorizontal +0101053c=attr/layout_marginVertical +0101053d=attr/paddingHorizontal +0101053e=attr/paddingVertical +0101053f=attr/fontStyle +01010540=attr/keyboardNavigationCluster +01010541=attr/targetProcesses +01010542=attr/nextClusterForward +01010543=attr/colorError +01010544=attr/focusedByDefault +01010545=attr/appCategory +01010546=attr/autoSizeMaxTextSize +01010547=attr/recreateOnConfigChanges +01010548=attr/certDigest +01010549=attr/splitName +0101054a=attr/colorMode +0101054b=attr/isolatedSplits +0101054c=attr/targetSandboxVersion +0101054d=attr/canRequestFingerprintGestures +0101054e=attr/alphabeticModifiers +0101054f=attr/numericModifiers +01010550=attr/fontProviderAuthority +01010551=attr/fontProviderQuery +01010552=attr/primaryContentAlpha +01010553=attr/secondaryContentAlpha +01010554=attr/requiredFeature +01010555=attr/requiredNotFeature +01010556=attr/autofillHints +01010557=attr/fontProviderPackage +01010558=attr/importantForAutofill +01010559=attr/recycleEnabled +0101055a=attr/isStatic +0101055b=attr/isFeatureSplit +0101055c=attr/singleLineTitle +0101055d=attr/fontProviderCerts +0101055e=attr/iconTint +0101055f=attr/iconTintMode +01010560=attr/maxAspectRatio +01010561=attr/iconSpaceReserved +01010562=attr/defaultFocusHighlightEnabled +01010563=attr/persistentWhenFeatureAvailable +01010564=attr/windowSplashscreenContent +01010565=attr/requiredSystemPropertyName +01010566=attr/requiredSystemPropertyValue +01010567=attr/justificationMode +01010568=attr/autofilledHighlight +01010569=attr/showWhenLocked +0101056a=attr/turnScreenOn +0101056b=attr/classLoader +0101056c=attr/windowLightNavigationBar +0101056d=attr/navigationBarDividerColor +0101056e=attr/cantSaveState +0101056f=attr/ttcIndex +01010570=attr/fontVariationSettings +01010571=attr/dialogCornerRadius +01010572=attr/compileSdkVersion +01010573=attr/compileSdkVersionCodename +01010574=attr/screenReaderFocusable +01010575=attr/buttonCornerRadius +01010576=attr/versionCodeMajor +01010577=attr/versionMajor +01010578=attr/isVrOnly +01010579=attr/widgetFeatures +0101057a=attr/appComponentFactory +0101057b=attr/fallbackLineSpacing +0101057c=attr/accessibilityPaneTitle +0101057d=attr/firstBaselineToTopHeight +0101057e=attr/lastBaselineToBottomHeight +0101057f=attr/lineHeight +01010580=attr/accessibilityHeading +01010581=attr/outlineSpotShadowColor +01010582=attr/outlineAmbientShadowColor +01010583=attr/maxLongVersionCode +01010584=attr/userRestriction +01010585=attr/textFontWeight +01010586=attr/windowLayoutInDisplayCutoutMode +01010587=attr/packageType +01010588=attr/opticalInsetLeft +01010589=attr/opticalInsetTop +0101058a=attr/opticalInsetRight +0101058b=attr/opticalInsetBottom +0101058c=attr/forceDarkAllowed +0101058d=attr/supportsAmbientMode +0101058e=attr/usesNonSdkApi +0101058f=attr/nonInteractiveUiTimeout +01010590=attr/isLightTheme +01010591=attr/isSplitRequired +01010592=attr/textLocale +01010593=attr/settingsSliceUri +01010594=attr/shell +01010595=attr/interactiveUiTimeout +01010596=attr/supportsMultipleDisplays +01010597=attr/useAppZygote +01010598=attr/selectionDividerHeight +01010599=attr/foregroundServiceType +0101059a=attr/hasFragileUserData +0101059b=attr/minAspectRatio +0101059c=attr/inheritShowWhenLocked +0101059d=attr/zygotePreloadName +0101059e=attr/useEmbeddedDex +0101059f=attr/forceUriPermissions +01010600=attr/allowClearUserDataOnFailedRestore +01010601=attr/allowAudioPlaybackCapture +01010602=attr/secureElementName +01010603=attr/requestLegacyExternalStorage +01010604=attr/enforceStatusBarContrast +01010605=attr/enforceNavigationBarContrast +01010606=attr/identifier +01010607=attr/importantForContentCapture +01010608=attr/forceQueryable +01010609=attr/resourcesMap +0101060a=attr/animatedImageDrawable +0101060b=attr/htmlDescription +0101060c=attr/preferMinimalPostProcessing +0101060d=attr/supportsInlineSuggestions +0101060e=attr/crossProfile +0101060f=attr/canTakeScreenshot +01010610=attr/sdkVersion +01010611=attr/minExtensionVersion +01010612=attr/allowNativeHeapPointerTagging +01010613=attr/autoRevokePermissions +01010614=attr/preserveLegacyExternalStorage +01010615=attr/mimeGroup +01010616=attr/gwpAsanMode +01020000=id/background +01020001=id/checkbox +01020002=id/content +01020003=id/edit +01020004=id/empty +01020005=id/hint +01020006=id/icon +01020007=id/icon1 +01020008=id/icon2 +01020009=id/input +0102000a=id/list +0102000b=id/message +0102000c=id/primary +0102000d=id/progress +0102000e=id/selectedIcon +0102000f=id/secondaryProgress +01020010=id/summary +01020011=id/tabcontent +01020012=id/tabhost +01020013=id/tabs +01020014=id/text1 +01020015=id/text2 +01020016=id/title +01020017=id/toggle +01020018=id/widget_frame +01020019=id/button1 +0102001a=id/button2 +0102001b=id/button3 +0102001c=id/extractArea +0102001d=id/candidatesArea +0102001e=id/inputArea +0102001f=id/selectAll +01020020=id/cut +01020021=id/copy +01020022=id/paste +01020023=id/copyUrl +01020024=id/switchInputMethod +01020025=id/inputExtractEditText +01020026=id/keyboardView +01020027=id/closeButton +01020028=id/startSelectingText +01020029=id/stopSelectingText +0102002a=id/addToDictionary +0102002b=id/custom +0102002c=id/home +0102002d=id/selectTextMode +0102002e=id/mask +0102002f=id/statusBarBackground +01020030=id/navigationBarBackground +01020031=id/pasteAsPlainText +01020032=id/undo +01020033=id/redo +01020034=id/replaceText +01020035=id/shareText +01020036=id/accessibilityActionShowOnScreen +01020037=id/accessibilityActionScrollToPosition +01020038=id/accessibilityActionScrollUp +01020039=id/accessibilityActionScrollLeft +0102003a=id/accessibilityActionScrollDown +0102003b=id/accessibilityActionScrollRight +0102003c=id/accessibilityActionContextClick +0102003d=id/accessibilityActionSetProgress +0102003e=id/icon_frame +0102003f=id/list_container +01020040=id/switch_widget +01020041=id/textAssist +01020042=id/accessibilityActionMoveWindow +01020043=id/autofill +01020044=id/accessibilityActionShowTooltip +01020045=id/accessibilityActionHideTooltip +01020046=id/accessibilityActionPageUp +01020047=id/accessibilityActionPageDown +01020048=id/accessibilityActionPageLeft +01020049=id/accessibilityActionPageRight +0102004a=id/accessibilityActionPressAndHold +0102004b=id/accessibilitySystemActionBack +0102004c=id/accessibilitySystemActionHome +0102004d=id/accessibilitySystemActionRecents +0102004e=id/accessibilitySystemActionNotifications +0102004f=id/accessibilitySystemActionQuickSettings +01020050=id/accessibilitySystemActionPowerDialog +01020051=id/accessibilitySystemActionToggleSplitScreen +01020052=id/accessibilitySystemActionLockScreen +01020053=id/accessibilitySystemActionTakeScreenshot +01020054=id/accessibilityActionImeEnter +01020055=id/ALT +01020056=id/CTRL +01020057=id/FUNCTION +01020058=id/KEYCODE_0 +01020059=id/KEYCODE_1 +0102005a=id/KEYCODE_11 +0102005b=id/KEYCODE_12 +0102005c=id/KEYCODE_2 +0102005d=id/KEYCODE_3 +0102005e=id/KEYCODE_3D_MODE +0102005f=id/KEYCODE_4 +01020060=id/KEYCODE_5 +01020061=id/KEYCODE_6 +01020062=id/KEYCODE_7 +01020063=id/KEYCODE_8 +01020064=id/KEYCODE_9 +01020065=id/KEYCODE_A +01020066=id/KEYCODE_ALL_APPS +01020067=id/KEYCODE_ALT_LEFT +01020068=id/KEYCODE_ALT_RIGHT +01020069=id/KEYCODE_APOSTROPHE +0102006a=id/KEYCODE_APP_SWITCH +0102006b=id/KEYCODE_ASSIST +0102006c=id/KEYCODE_AT +0102006d=id/KEYCODE_AVR_INPUT +0102006e=id/KEYCODE_AVR_POWER +0102006f=id/KEYCODE_B +01020070=id/KEYCODE_BACK +01020071=id/KEYCODE_BACKSLASH +01020072=id/KEYCODE_BOOKMARK +01020073=id/KEYCODE_BREAK +01020074=id/KEYCODE_BRIGHTNESS_DOWN +01020075=id/KEYCODE_BRIGHTNESS_UP +01020076=id/KEYCODE_BUTTON_1 +01020077=id/KEYCODE_BUTTON_10 +01020078=id/KEYCODE_BUTTON_11 +01020079=id/KEYCODE_BUTTON_12 +0102007a=id/KEYCODE_BUTTON_13 +0102007b=id/KEYCODE_BUTTON_14 +0102007c=id/KEYCODE_BUTTON_15 +0102007d=id/KEYCODE_BUTTON_16 +0102007e=id/KEYCODE_BUTTON_2 +0102007f=id/KEYCODE_BUTTON_3 +01020080=id/KEYCODE_BUTTON_4 +01020081=id/KEYCODE_BUTTON_5 +01020082=id/KEYCODE_BUTTON_6 +01020083=id/KEYCODE_BUTTON_7 +01020084=id/KEYCODE_BUTTON_8 +01020085=id/KEYCODE_BUTTON_9 +01020086=id/KEYCODE_BUTTON_A +01020087=id/KEYCODE_BUTTON_B +01020088=id/KEYCODE_BUTTON_C +01020089=id/KEYCODE_BUTTON_L1 +0102008a=id/KEYCODE_BUTTON_L2 +0102008b=id/KEYCODE_BUTTON_MODE +0102008c=id/KEYCODE_BUTTON_R1 +0102008d=id/KEYCODE_BUTTON_R2 +0102008e=id/KEYCODE_BUTTON_SELECT +0102008f=id/KEYCODE_BUTTON_START +01020090=id/KEYCODE_BUTTON_THUMBL +01020091=id/KEYCODE_BUTTON_THUMBR +01020092=id/KEYCODE_BUTTON_X +01020093=id/KEYCODE_BUTTON_Y +01020094=id/KEYCODE_BUTTON_Z +01020095=id/KEYCODE_C +01020096=id/KEYCODE_CALCULATOR +01020097=id/KEYCODE_CALENDAR +01020098=id/KEYCODE_CALL +01020099=id/KEYCODE_CAMERA +0102009a=id/KEYCODE_CAPS_LOCK +0102009b=id/KEYCODE_CAPTIONS +0102009c=id/KEYCODE_CHANNEL_DOWN +0102009d=id/KEYCODE_CHANNEL_UP +0102009e=id/KEYCODE_CLEAR +0102009f=id/KEYCODE_COMMA +010200a0=id/KEYCODE_CONTACTS +010200a1=id/KEYCODE_COPY +010200a2=id/KEYCODE_CTRL_LEFT +010200a3=id/KEYCODE_CTRL_RIGHT +010200a4=id/KEYCODE_CUT +010200a5=id/KEYCODE_D +010200a6=id/KEYCODE_DEL +010200a7=id/KEYCODE_DPAD_CENTER +010200a8=id/KEYCODE_DPAD_DOWN +010200a9=id/KEYCODE_DPAD_DOWN_LEFT +010200aa=id/KEYCODE_DPAD_DOWN_RIGHT +010200ab=id/KEYCODE_DPAD_LEFT +010200ac=id/KEYCODE_DPAD_RIGHT +010200ad=id/KEYCODE_DPAD_UP +010200ae=id/KEYCODE_DPAD_UP_LEFT +010200af=id/KEYCODE_DPAD_UP_RIGHT +010200b0=id/KEYCODE_DVR +010200b1=id/KEYCODE_E +010200b2=id/KEYCODE_EISU +010200b3=id/KEYCODE_ENDCALL +010200b4=id/KEYCODE_ENTER +010200b5=id/KEYCODE_ENVELOPE +010200b6=id/KEYCODE_EQUALS +010200b7=id/KEYCODE_ESCAPE +010200b8=id/KEYCODE_EXPLORER +010200b9=id/KEYCODE_F +010200ba=id/KEYCODE_F1 +010200bb=id/KEYCODE_F10 +010200bc=id/KEYCODE_F11 +010200bd=id/KEYCODE_F12 +010200be=id/KEYCODE_F2 +010200bf=id/KEYCODE_F3 +010200c0=id/KEYCODE_F4 +010200c1=id/KEYCODE_F5 +010200c2=id/KEYCODE_F6 +010200c3=id/KEYCODE_F7 +010200c4=id/KEYCODE_F8 +010200c5=id/KEYCODE_F9 +010200c6=id/KEYCODE_FOCUS +010200c7=id/KEYCODE_FORWARD +010200c8=id/KEYCODE_FORWARD_DEL +010200c9=id/KEYCODE_FUNCTION +010200ca=id/KEYCODE_G +010200cb=id/KEYCODE_GRAVE +010200cc=id/KEYCODE_GUIDE +010200cd=id/KEYCODE_H +010200ce=id/KEYCODE_HEADSETHOOK +010200cf=id/KEYCODE_HELP +010200d0=id/KEYCODE_HENKAN +010200d1=id/KEYCODE_HOME +010200d2=id/KEYCODE_I +010200d3=id/KEYCODE_INFO +010200d4=id/KEYCODE_INSERT +010200d5=id/KEYCODE_J +010200d6=id/KEYCODE_K +010200d7=id/KEYCODE_KANA +010200d8=id/KEYCODE_KATAKANA_HIRAGANA +010200d9=id/KEYCODE_L +010200da=id/KEYCODE_LANGUAGE_SWITCH +010200db=id/KEYCODE_LAST_CHANNEL +010200dc=id/KEYCODE_LEFT_BRACKET +010200dd=id/KEYCODE_M +010200de=id/KEYCODE_MANNER_MODE +010200df=id/KEYCODE_MEDIA_AUDIO_TRACK +010200e0=id/KEYCODE_MEDIA_CLOSE +010200e1=id/KEYCODE_MEDIA_EJECT +010200e2=id/KEYCODE_MEDIA_FAST_FORWARD +010200e3=id/KEYCODE_MEDIA_NEXT +010200e4=id/KEYCODE_MEDIA_PAUSE +010200e5=id/KEYCODE_MEDIA_PLAY +010200e6=id/KEYCODE_MEDIA_PLAY_PAUSE +010200e7=id/KEYCODE_MEDIA_PREVIOUS +010200e8=id/KEYCODE_MEDIA_RECORD +010200e9=id/KEYCODE_MEDIA_REWIND +010200ea=id/KEYCODE_MEDIA_SKIP_BACKWARD +010200eb=id/KEYCODE_MEDIA_SKIP_FORWARD +010200ec=id/KEYCODE_MEDIA_SLEEP +010200ed=id/KEYCODE_MEDIA_STEP_BACKWARD +010200ee=id/KEYCODE_MEDIA_STEP_FORWARD +010200ef=id/KEYCODE_MEDIA_STOP +010200f0=id/KEYCODE_MEDIA_TOP_MENU +010200f1=id/KEYCODE_MEDIA_WAKEUP +010200f2=id/KEYCODE_MENU +010200f3=id/KEYCODE_META_LEFT +010200f4=id/KEYCODE_META_RIGHT +010200f5=id/KEYCODE_MINUS +010200f6=id/KEYCODE_MOVE_END +010200f7=id/KEYCODE_MOVE_HOME +010200f8=id/KEYCODE_MUHENKAN +010200f9=id/KEYCODE_MUSIC +010200fa=id/KEYCODE_MUTE +010200fb=id/KEYCODE_N +010200fc=id/KEYCODE_NAVIGATE_IN +010200fd=id/KEYCODE_NAVIGATE_NEXT +010200fe=id/KEYCODE_NAVIGATE_OUT +010200ff=id/KEYCODE_NAVIGATE_PREVIOUS +01020100=id/KEYCODE_NOTIFICATION +01020101=id/KEYCODE_NUM +01020102=id/KEYCODE_NUMPAD_0 +01020103=id/KEYCODE_NUMPAD_1 +01020104=id/KEYCODE_NUMPAD_2 +01020105=id/KEYCODE_NUMPAD_3 +01020106=id/KEYCODE_NUMPAD_4 +01020107=id/KEYCODE_NUMPAD_5 +01020108=id/KEYCODE_NUMPAD_6 +01020109=id/KEYCODE_NUMPAD_7 +0102010a=id/KEYCODE_NUMPAD_8 +0102010b=id/KEYCODE_NUMPAD_9 +0102010c=id/KEYCODE_NUMPAD_ADD +0102010d=id/KEYCODE_NUMPAD_COMMA +0102010e=id/KEYCODE_NUMPAD_DIVIDE +0102010f=id/KEYCODE_NUMPAD_DOT +01020110=id/KEYCODE_NUMPAD_ENTER +01020111=id/KEYCODE_NUMPAD_EQUALS +01020112=id/KEYCODE_NUMPAD_LEFT_PAREN +01020113=id/KEYCODE_NUMPAD_MULTIPLY +01020114=id/KEYCODE_NUMPAD_RIGHT_PAREN +01020115=id/KEYCODE_NUMPAD_SUBTRACT +01020116=id/KEYCODE_NUM_LOCK +01020117=id/KEYCODE_O +01020118=id/KEYCODE_P +01020119=id/KEYCODE_PAGE_DOWN +0102011a=id/KEYCODE_PAGE_UP +0102011b=id/KEYCODE_PAIRING +0102011c=id/KEYCODE_PASTE +0102011d=id/KEYCODE_PERIOD +0102011e=id/KEYCODE_PICTSYMBOLS +0102011f=id/KEYCODE_PLUS +01020120=id/KEYCODE_POUND +01020121=id/KEYCODE_POWER +01020122=id/KEYCODE_PROFILE_SWITCH +01020123=id/KEYCODE_PROG_BLUE +01020124=id/KEYCODE_PROG_GRED +01020125=id/KEYCODE_PROG_GREEN +01020126=id/KEYCODE_PROG_YELLOW +01020127=id/KEYCODE_Q +01020128=id/KEYCODE_R +01020129=id/KEYCODE_REFRESH +0102012a=id/KEYCODE_RIGHT_BRACKET +0102012b=id/KEYCODE_RO +0102012c=id/KEYCODE_S +0102012d=id/KEYCODE_SCROLL_LOCK +0102012e=id/KEYCODE_SEARCH +0102012f=id/KEYCODE_SEMICOLON +01020130=id/KEYCODE_SETTINGS +01020131=id/KEYCODE_SHIFT_LEFT +01020132=id/KEYCODE_SHIFT_RIGHT +01020133=id/KEYCODE_SLASH +01020134=id/KEYCODE_SOFT_LEFT +01020135=id/KEYCODE_SOFT_RIGHT +01020136=id/KEYCODE_SOFT_SLEEP +01020137=id/KEYCODE_SPACE +01020138=id/KEYCODE_STAR +01020139=id/KEYCODE_STB_INPUT +0102013a=id/KEYCODE_STB_POWER +0102013b=id/KEYCODE_STEM_1 +0102013c=id/KEYCODE_STEM_2 +0102013d=id/KEYCODE_STEM_3 +0102013e=id/KEYCODE_STEM_PRIMARY +0102013f=id/KEYCODE_SWITCH_CHARSET +01020140=id/KEYCODE_SYM +01020141=id/KEYCODE_SYSRQ +01020142=id/KEYCODE_SYSTEM_NAVIGATION_DOWN +01020143=id/KEYCODE_SYSTEM_NAVIGATION_LEFT +01020144=id/KEYCODE_SYSTEM_NAVIGATION_RIGHT +01020145=id/KEYCODE_SYSTEM_NAVIGATION_UP +01020146=id/KEYCODE_T +01020147=id/KEYCODE_TAB +01020148=id/KEYCODE_THUMBS_DOWN +01020149=id/KEYCODE_THUMBS_UP +0102014a=id/KEYCODE_TV +0102014b=id/KEYCODE_TV_ANTENNA_CABLE +0102014c=id/KEYCODE_TV_AUDIO_DESCRIPTION +0102014d=id/KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN +0102014e=id/KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP +0102014f=id/KEYCODE_TV_CONTENTS_MENU +01020150=id/KEYCODE_TV_DATA_SERVICE +01020151=id/KEYCODE_TV_INPUT +01020152=id/KEYCODE_TV_INPUT_COMPONENT_1 +01020153=id/KEYCODE_TV_INPUT_COMPONENT_2 +01020154=id/KEYCODE_TV_INPUT_COMPOSITE_1 +01020155=id/KEYCODE_TV_INPUT_COMPOSITE_2 +01020156=id/KEYCODE_TV_INPUT_HDMI_1 +01020157=id/KEYCODE_TV_INPUT_HDMI_2 +01020158=id/KEYCODE_TV_INPUT_HDMI_3 +01020159=id/KEYCODE_TV_INPUT_HDMI_4 +0102015a=id/KEYCODE_TV_INPUT_VGA_1 +0102015b=id/KEYCODE_TV_MEDIA_CONTEXT_MENU +0102015c=id/KEYCODE_TV_NETWORK +0102015d=id/KEYCODE_TV_NUMBER_ENTRY +0102015e=id/KEYCODE_TV_POWER +0102015f=id/KEYCODE_TV_RADIO_SERVICE +01020160=id/KEYCODE_TV_SATELLITE +01020161=id/KEYCODE_TV_SATELLITE_BS +01020162=id/KEYCODE_TV_SATELLITE_CS +01020163=id/KEYCODE_TV_SATELLITE_SERVICE +01020164=id/KEYCODE_TV_TELETEXT +01020165=id/KEYCODE_TV_TERRESTRIAL_ANALOG +01020166=id/KEYCODE_TV_TERRESTRIAL_DIGITAL +01020167=id/KEYCODE_TV_TIMER_PROGRAMMING +01020168=id/KEYCODE_TV_ZOOM_MODE +01020169=id/KEYCODE_U +0102016a=id/KEYCODE_UNKNOWN +0102016b=id/KEYCODE_V +0102016c=id/KEYCODE_VOICE_ASSIST +0102016d=id/KEYCODE_VOLUME_DOWN +0102016e=id/KEYCODE_VOLUME_MUTE +0102016f=id/KEYCODE_VOLUME_UP +01020170=id/KEYCODE_W +01020171=id/KEYCODE_WINDOW +01020172=id/KEYCODE_X +01020173=id/KEYCODE_Y +01020174=id/KEYCODE_YEN +01020175=id/KEYCODE_Z +01020176=id/KEYCODE_ZENKAKU_HANKAKU +01020177=id/KEYCODE_ZOOM_IN +01020178=id/KEYCODE_ZOOM_OUT +01020179=id/META +0102017a=id/SHIFT +0102017b=id/SYM +0102017c=id/aboveThumb +0102017d=id/accessibilityActionClickOnClickableSpan +0102017e=id/accessibility_button_chooser_grid +0102017f=id/accessibility_button_prompt +01020180=id/accessibility_button_prompt_prologue +01020181=id/accessibility_button_target_icon +01020182=id/accessibility_button_target_label +01020183=id/accessibility_controlScreen_description +01020184=id/accessibility_controlScreen_icon +01020185=id/accessibility_controlScreen_title +01020186=id/accessibility_encryption_warning +01020187=id/accessibility_performAction_description +01020188=id/accessibility_performAction_icon +01020189=id/accessibility_performAction_title +0102018a=id/accessibility_permissionDialog_description +0102018b=id/accessibility_permissionDialog_icon +0102018c=id/accessibility_permissionDialog_title +0102018d=id/accessibility_permission_enable_allow_button +0102018e=id/accessibility_permission_enable_deny_button +0102018f=id/accessibility_shortcut_target_checkbox +01020190=id/accessibility_shortcut_target_icon +01020191=id/accessibility_shortcut_target_label +01020192=id/accessibility_shortcut_target_status +01020193=id/accountPreferences +01020194=id/account_name +01020195=id/account_row_icon +01020196=id/account_row_text +01020197=id/account_type +01020198=id/action0 +01020199=id/action1 +0102019a=id/action2 +0102019b=id/action3 +0102019c=id/action4 +0102019d=id/actionDone +0102019e=id/actionGo +0102019f=id/actionNext +010201a0=id/actionNone +010201a1=id/actionPrevious +010201a2=id/actionSearch +010201a3=id/actionSend +010201a4=id/actionUnspecified +010201a5=id/action_bar +010201a6=id/action_bar_container +010201a7=id/action_bar_spinner +010201a8=id/action_bar_subtitle +010201a9=id/action_bar_title +010201aa=id/action_context_bar +010201ab=id/action_divider +010201ac=id/action_menu_divider +010201ad=id/action_menu_presenter +010201ae=id/action_mode_bar +010201af=id/action_mode_bar_stub +010201b0=id/action_mode_close_button +010201b1=id/actions +010201b2=id/actions_container +010201b3=id/actions_container_layout +010201b4=id/activity_chooser_view_content +010201b5=id/add +010201b6=id/addToDictionaryButton +010201b7=id/adjustNothing +010201b8=id/adjustPan +010201b9=id/adjustResize +010201ba=id/adjustUnspecified +010201bb=id/aerr_app_info +010201bc=id/aerr_close +010201bd=id/aerr_mute +010201be=id/aerr_report +010201bf=id/aerr_restart +010201c0=id/aerr_wait +010201c1=id/afterDescendants +010201c2=id/alarm +010201c3=id/alertTitle +010201c4=id/alerted_icon +010201c5=id/alias +010201c6=id/alignBounds +010201c7=id/alignMargins +010201c8=id/all +010201c9=id/all_scroll +010201ca=id/allow_button +010201cb=id/allowed +010201cc=id/alternative +010201cd=id/always +010201ce=id/alwaysScroll +010201cf=id/alwaysUse +010201d0=id/amPm +010201d1=id/am_label +010201d2=id/am_pm_spinner +010201d3=id/ampm_layout +010201d4=id/animation +010201d5=id/animator +010201d6=id/anyRtl +010201d7=id/appPredictor +010201d8=id/app_name_divider +010201d9=id/app_name_text +010201da=id/app_ops +010201db=id/appop +010201dc=id/arrow +010201dd=id/ask_checkbox +010201de=id/assertive +010201df=id/atThumb +010201e0=id/audio +010201e1=id/authtoken_type +010201e2=id/auto +010201e3=id/auto_fit +010201e4=id/autofill_dataset_footer +010201e5=id/autofill_dataset_header +010201e6=id/autofill_dataset_icon +010201e7=id/autofill_dataset_list +010201e8=id/autofill_dataset_picker +010201e9=id/autofill_dataset_title +010201ea=id/autofill_save +010201eb=id/autofill_save_custom_subtitle +010201ec=id/autofill_save_icon +010201ed=id/autofill_save_no +010201ee=id/autofill_save_title +010201ef=id/autofill_save_yes +010201f0=id/back_button +010201f1=id/balanced +010201f2=id/beforeDescendants +010201f3=id/beginning +010201f4=id/behind +010201f5=id/bevel +010201f6=id/big_picture +010201f7=id/big_text +010201f8=id/blocksDescendants +010201f9=id/body +010201fa=id/bold +010201fb=id/bool +010201fc=id/bottom +010201fd=id/bottom_to_top +010201fe=id/bounds +010201ff=id/breadcrumb_section +01020200=id/bubble_button +01020201=id/bundle +01020202=id/bundle_array +01020203=id/butt +01020204=id/button0 +01020205=id/button4 +01020206=id/button5 +01020207=id/button6 +01020208=id/button7 +01020209=id/buttonPanel +0102020a=id/button_always +0102020b=id/button_bar +0102020c=id/button_bar_container +0102020d=id/button_once +0102020e=id/buttons +0102020f=id/by_common +01020210=id/by_common_header +01020211=id/by_org +01020212=id/by_org_header +01020213=id/by_org_unit +01020214=id/by_org_unit_header +01020215=id/calendar +01020216=id/calendar_view +01020217=id/camera +01020218=id/cancel +01020219=id/caption +0102021a=id/cell +0102021b=id/center +0102021c=id/centerCrop +0102021d=id/centerInside +0102021e=id/center_horizontal +0102021f=id/center_vertical +01020220=id/challenge +01020221=id/characterPicker +01020222=id/characters +01020223=id/check +01020224=id/checked +01020225=id/choice +01020226=id/chooser_action_row +01020227=id/chooser_copy_button +01020228=id/chooser_header +01020229=id/chooser_row_text_option +0102022a=id/chronometer +0102022b=id/clamp +0102022c=id/clearDefaultHint +0102022d=id/clipBounds +0102022e=id/clip_children_set_tag +0102022f=id/clip_children_tag +01020230=id/clip_horizontal +01020231=id/clip_to_padding_tag +01020232=id/clip_vertical +01020233=id/clock +01020234=id/close_window +01020235=id/collapseActionView +01020236=id/collapsing +01020237=id/colorMode +01020238=id/colorType +01020239=id/column +0102023a=id/columnWidth +0102023b=id/companion +0102023c=id/compat_checkbox +0102023d=id/configurator +0102023e=id/connectedDevice +0102023f=id/container +01020240=id/contentPanel +01020241=id/content_preview_container +01020242=id/content_preview_file_area +01020243=id/content_preview_file_icon +01020244=id/content_preview_file_layout +01020245=id/content_preview_file_thumbnail +01020246=id/content_preview_filename +01020247=id/content_preview_image_1_large +01020248=id/content_preview_image_2_large +01020249=id/content_preview_image_2_small +0102024a=id/content_preview_image_3_small +0102024b=id/content_preview_image_area +0102024c=id/content_preview_text +0102024d=id/content_preview_text_area +0102024e=id/content_preview_text_layout +0102024f=id/content_preview_thumbnail +01020250=id/content_preview_title +01020251=id/content_preview_title_layout +01020252=id/context_menu +01020253=id/conversation_face_pile +01020254=id/conversation_face_pile_bottom +01020255=id/conversation_face_pile_bottom_background +01020256=id/conversation_face_pile_top +01020257=id/conversation_header +01020258=id/conversation_icon +01020259=id/conversation_icon_badge +0102025a=id/conversation_icon_badge_bg +0102025b=id/conversation_icon_badge_ring +0102025c=id/conversation_icon_container +0102025d=id/conversation_image_message_container +0102025e=id/conversation_text +0102025f=id/conversation_unread_count +01020260=id/costsMoney +01020261=id/cross_task_transition +01020262=id/crossfade +01020263=id/crosshair +01020264=id/current_scene +01020265=id/customPanel +01020266=id/cycle +01020267=id/dangerous +01020268=id/dataSync +01020269=id/date +0102026a=id/datePicker +0102026b=id/date_picker_day_picker +0102026c=id/date_picker_header +0102026d=id/date_picker_header_date +0102026e=id/date_picker_header_year +0102026f=id/date_picker_year_picker +01020270=id/datetime +01020271=id/day +01020272=id/day_names +01020273=id/day_picker_view_pager +01020274=id/decimal +01020275=id/decor_content_parent +01020276=id/decrement +01020277=id/default +01020278=id/defaultPosition +01020279=id/default_activity_button +0102027a=id/default_loading_view +0102027b=id/deleteButton +0102027c=id/density +0102027d=id/deny_button +0102027e=id/description +0102027f=id/development +01020280=id/dialog +01020281=id/disableHome +01020282=id/disabled +01020283=id/disallowed +01020284=id/discouraged +01020285=id/divider +01020286=id/documenter +01020287=id/dpad +01020288=id/drag +01020289=id/dropdown +0102028a=id/edit_query +0102028b=id/editable +0102028c=id/edittext_container +0102028d=id/eight +0102028e=id/email +0102028f=id/end +01020290=id/evenOdd +01020291=id/exclude +01020292=id/excludeDescendants +01020293=id/expandChallengeHandle +01020294=id/expand_activities_button +01020295=id/expand_button +01020296=id/expand_button_and_content_container +01020297=id/expand_button_container +01020298=id/expand_button_inner_container +01020299=id/expanded_menu +0102029a=id/expires_on +0102029b=id/expires_on_header +0102029c=id/fade_in +0102029d=id/fade_in_out +0102029e=id/fade_out +0102029f=id/feedbackAllMask +010202a0=id/feedbackAudible +010202a1=id/feedbackGeneric +010202a2=id/feedbackHaptic +010202a3=id/feedbackSpoken +010202a4=id/feedbackVisual +010202a5=id/ffwd +010202a6=id/fill +010202a7=id/fillInIntent +010202a8=id/fill_horizontal +010202a9=id/fill_parent +010202aa=id/fill_vertical +010202ab=id/find +010202ac=id/find_next +010202ad=id/find_prev +010202ae=id/finger +010202af=id/fingerprints +010202b0=id/firstStrong +010202b1=id/firstStrongLtr +010202b2=id/firstStrongRtl +010202b3=id/fitCenter +010202b4=id/fitEnd +010202b5=id/fitStart +010202b6=id/fitXY +010202b7=id/five +010202b8=id/flagDefault +010202b9=id/flagEnableAccessibilityVolume +010202ba=id/flagForceAscii +010202bb=id/flagIncludeNotImportantViews +010202bc=id/flagNavigateNext +010202bd=id/flagNavigatePrevious +010202be=id/flagNoAccessoryAction +010202bf=id/flagNoEnterAction +010202c0=id/flagNoExtractUi +010202c1=id/flagNoFullscreen +010202c2=id/flagNoPersonalizedLearning +010202c3=id/flagReportViewIds +010202c4=id/flagRequestAccessibilityButton +010202c5=id/flagRequestEnhancedWebAccessibility +010202c6=id/flagRequestFilterKeyEvents +010202c7=id/flagRequestFingerprintGestures +010202c8=id/flagRequestMultiFingerGestures +010202c9=id/flagRequestShortcutWarningDialogSpokenFeedback +010202ca=id/flagRequestTouchExplorationMode +010202cb=id/flagRetrieveInteractiveWindows +010202cc=id/flagServiceHandlesDoubleTap +010202cd=id/floatType +010202ce=id/floating +010202cf=id/floating_toolbar_menu_item_image +010202d0=id/floating_toolbar_menu_item_image_button +010202d1=id/floating_toolbar_menu_item_text +010202d2=id/fontScale +010202d3=id/four +010202d4=id/full +010202d5=id/fullSensor +010202d6=id/fullUser +010202d7=id/fullscreenArea +010202d8=id/game +010202d9=id/gone +010202da=id/grab +010202db=id/grabbing +010202dc=id/grant_credentials_permission_message_footer +010202dd=id/grant_credentials_permission_message_header +010202de=id/gravity +010202df=id/group_divider +010202e0=id/group_message_container +010202e1=id/hand +010202e2=id/hardRestricted +010202e3=id/hard_keyboard_section +010202e4=id/hard_keyboard_switch +010202e5=id/hardware +010202e6=id/hdpi +010202e7=id/hdr +010202e8=id/header_icon_container +010202e9=id/header_text +010202ea=id/header_text_divider +010202eb=id/header_text_secondary +010202ec=id/header_text_secondary_divider +010202ed=id/headers +010202ee=id/help +010202ef=id/hidden +010202f0=id/hide_from_picker +010202f1=id/high +010202f2=id/high_quality +010202f3=id/holo +010202f4=id/homeAsUp +010202f5=id/home_screen +010202f6=id/horizontal +010202f7=id/horizontal_double_arrow +010202f8=id/hour +010202f9=id/hours +010202fa=id/icon_badge +010202fb=id/icon_menu +010202fc=id/icon_menu_presenter +010202fd=id/ifContentScrolls +010202fe=id/ifRoom +010202ff=id/if_whitelisted +01020300=id/image +01020301=id/immersive_cling_back_bg +01020302=id/immersive_cling_back_bg_light +01020303=id/immersive_cling_chevron +01020304=id/immersive_cling_description +01020305=id/immersive_cling_title +01020306=id/immutablyRestricted +01020307=id/inbox_text0 +01020308=id/inbox_text1 +01020309=id/inbox_text2 +0102030a=id/inbox_text3 +0102030b=id/inbox_text4 +0102030c=id/inbox_text5 +0102030d=id/inbox_text6 +0102030e=id/incidentReportApprover +0102030f=id/include +01020310=id/increment +01020311=id/index +01020312=id/infinite +01020313=id/inherit +01020314=id/inputExtractAccessories +01020315=id/inputExtractAction +01020316=id/input_block +01020317=id/input_header +01020318=id/input_hour +01020319=id/input_minute +0102031a=id/input_mode +0102031b=id/input_separator +0102031c=id/insertion_handle +0102031d=id/inside +0102031e=id/insideInset +0102031f=id/insideOverlay +01020320=id/installer +01020321=id/instant +01020322=id/intType +01020323=id/integer +01020324=id/inter_word +01020325=id/internalEmpty +01020326=id/internalOnly +01020327=id/intoExisting +01020328=id/invisible +01020329=id/issued_on +0102032a=id/issued_on_header +0102032b=id/issued_to_header +0102032c=id/italic +0102032d=id/item_touch_helper_previous_elevation +0102032e=id/jumpcut +0102032f=id/keyboard +01020330=id/keyboardHidden +01020331=id/keyguard +01020332=id/keyguard_click_area +01020333=id/keyguard_message_area +01020334=id/label +01020335=id/label_error +01020336=id/label_hour +01020337=id/label_minute +01020338=id/landscape +01020339=id/large +0102033a=id/launchRecognizer +0102033b=id/launchWebSearch +0102033c=id/layoutDirection +0102033d=id/ldpi +0102033e=id/left +0102033f=id/leftPanel +01020340=id/leftSpacer +01020341=id/left_icon +01020342=id/left_to_right +01020343=id/line +01020344=id/line1 +01020345=id/linear +01020346=id/listContainer +01020347=id/listMode +01020348=id/list_footer +01020349=id/list_item +0102034a=id/list_menu_presenter +0102034b=id/liveAudio +0102034c=id/locale +0102034d=id/locale_search_menu +0102034e=id/location +0102034f=id/lock_screen +01020350=id/locked +01020351=id/low +01020352=id/ltr +01020353=id/map +01020354=id/maps +01020355=id/marquee +01020356=id/marquee_forever +01020357=id/match_parent +01020358=id/matches +01020359=id/material +0102035a=id/matrix +0102035b=id/maximize_window +0102035c=id/mcc +0102035d=id/mdpi +0102035e=id/mediaPlayback +0102035f=id/mediaProjection +01020360=id/media_actions +01020361=id/media_route_control_frame +01020362=id/media_route_extended_settings_button +01020363=id/media_route_list +01020364=id/media_route_volume_layout +01020365=id/media_route_volume_slider +01020366=id/media_seamless +01020367=id/media_seamless_image +01020368=id/media_seamless_text +01020369=id/mediacontroller_progress +0102036a=id/menu +0102036b=id/message_icon +0102036c=id/message_icon_container +0102036d=id/message_name +0102036e=id/message_text +0102036f=id/messaging_group_content_container +01020370=id/messaging_group_icon_container +01020371=id/messaging_group_sending_progress +01020372=id/messaging_group_sending_progress_container +01020373=id/mic +01020374=id/micro +01020375=id/microphone +01020376=id/middle +01020377=id/midpoint +01020378=id/minute +01020379=id/minutes +0102037a=id/mirror +0102037b=id/miter +0102037c=id/mnc +0102037d=id/modeLarge +0102037e=id/modeMedium +0102037f=id/modeSmall +01020380=id/mode_in +01020381=id/mode_normal +01020382=id/mode_out +01020383=id/monospace +01020384=id/month +01020385=id/month_name +01020386=id/month_view +01020387=id/multi-select +01020388=id/multiple +01020389=id/multipleChoice +0102038a=id/multipleChoiceModal +0102038b=id/multiply +0102038c=id/music +0102038d=id/navigation +0102038e=id/nest +0102038f=id/never +01020390=id/new_app_action +01020391=id/new_app_description +01020392=id/new_app_icon +01020393=id/news +01020394=id/next +01020395=id/next_button +01020396=id/nine +01020397=id/no +01020398=id/noExcludeDescendants +01020399=id/noHideDescendants +0102039a=id/no_applications_message +0102039b=id/no_drop +0102039c=id/no_permissions +0102039d=id/nokeys +0102039e=id/nonZero +0102039f=id/nonav +010203a0=id/none +010203a1=id/normal +010203a2=id/nosensor +010203a3=id/notification +010203a4=id/notification_action_index_tag +010203a5=id/notification_action_list_margin_target +010203a6=id/notification_content_container +010203a7=id/notification_custom_view_index_tag +010203a8=id/notification_header +010203a9=id/notification_main_column +010203aa=id/notification_material_reply_container +010203ab=id/notification_material_reply_progress +010203ac=id/notification_material_reply_text_1 +010203ad=id/notification_material_reply_text_1_container +010203ae=id/notification_material_reply_text_2 +010203af=id/notification_material_reply_text_3 +010203b0=id/notification_media_content +010203b1=id/notification_media_elapsed_time +010203b2=id/notification_media_progress +010203b3=id/notification_media_progress_bar +010203b4=id/notification_media_progress_time +010203b5=id/notification_media_seekbar_container +010203b6=id/notification_media_total_time +010203b7=id/notification_messaging +010203b8=id/notouch +010203b9=id/number +010203ba=id/numberDecimal +010203bb=id/numberPassword +010203bc=id/numberSigned +010203bd=id/numberpicker_input +010203be=id/oem +010203bf=id/off +010203c0=id/ok +010203c1=id/old_app_action +010203c2=id/old_app_icon +010203c3=id/on +010203c4=id/one +010203c5=id/oneLine +010203c6=id/opaque +010203c7=id/opticalBounds +010203c8=id/option1 +010203c9=id/option2 +010203ca=id/option3 +010203cb=id/orientation +010203cc=id/original_app_icon +010203cd=id/original_message +010203ce=id/outsideInset +010203cf=id/outsideOverlay +010203d0=id/oval +010203d1=id/overflow +010203d2=id/overflow_menu_presenter +010203d3=id/overlay +010203d4=id/overlay_display_window_texture +010203d5=id/overlay_display_window_title +010203d6=id/package_icon +010203d7=id/package_label +010203d8=id/packages_list +010203d9=id/paddedBounds +010203da=id/pageDeleteDropTarget +010203db=id/parentMatrix +010203dc=id/parentPanel +010203dd=id/pathType +010203de=id/pause +010203df=id/pending_intent_tag +010203e0=id/perm_icon +010203e1=id/perm_money_icon +010203e2=id/perm_money_label +010203e3=id/perm_name +010203e4=id/permission_group +010203e5=id/permission_icon +010203e6=id/permission_list +010203e7=id/perms_list +010203e8=id/persistAcrossReboots +010203e9=id/persistNever +010203ea=id/persistRootOnly +010203eb=id/personalInfo +010203ec=id/phone +010203ed=id/phoneCall +010203ee=id/pickers +010203ef=id/pin_cancel_button +010203f0=id/pin_confirm_text +010203f1=id/pin_error_message +010203f2=id/pin_message +010203f3=id/pin_new_text +010203f4=id/pin_ok_button +010203f5=id/pin_text +010203f6=id/placeholder +010203f7=id/pm_label +010203f8=id/polite +010203f9=id/popup_submenu_presenter +010203fa=id/portrait +010203fb=id/pre23 +010203fc=id/preferExternal +010203fd=id/prefs +010203fe=id/prefs_container +010203ff=id/prefs_frame +01020400=id/preinstalled +01020401=id/pressed +01020402=id/prev +01020403=id/privileged +01020404=id/productivity +01020405=id/profile_badge +01020406=id/profile_button +01020407=id/profile_pager +01020408=id/profile_tabhost +01020409=id/progressContainer +0102040a=id/progress_circular +0102040b=id/progress_horizontal +0102040c=id/progress_number +0102040d=id/progress_percent +0102040e=id/queryRewriteFromData +0102040f=id/queryRewriteFromText +01020410=id/qwerty +01020411=id/radial +01020412=id/radial_picker +01020413=id/radio +01020414=id/radio_power +01020415=id/random +01020416=id/reask_hint +01020417=id/reconfigurable +01020418=id/rectangle +01020419=id/remote_input +0102041a=id/remote_input_progress +0102041b=id/remote_input_send +0102041c=id/remote_input_tag +0102041d=id/remote_input_text +0102041e=id/removed +0102041f=id/repeat +01020420=id/replace_app_icon +01020421=id/replace_message +01020422=id/reply_icon_action +01020423=id/resolver_button_bar_divider +01020424=id/resolver_empty_state +01020425=id/resolver_empty_state_button +01020426=id/resolver_empty_state_container +01020427=id/resolver_empty_state_icon +01020428=id/resolver_empty_state_progress +01020429=id/resolver_empty_state_subtitle +0102042a=id/resolver_empty_state_title +0102042b=id/resolver_list +0102042c=id/resolver_tab_divider +0102042d=id/restart +0102042e=id/retailDemo +0102042f=id/reverse +01020430=id/reverseLandscape +01020431=id/reversePortrait +01020432=id/rew +01020433=id/right +01020434=id/rightSpacer +01020435=id/right_container +01020436=id/right_icon +01020437=id/right_icon_container +01020438=id/right_to_left +01020439=id/ring +0102043a=id/ringtone +0102043b=id/rotate +0102043c=id/round +0102043d=id/row +0102043e=id/rowTypeId +0102043f=id/rtl +01020440=id/runtime +01020441=id/sans +01020442=id/scene_layoutid_cache +01020443=id/screen +01020444=id/screenLayout +01020445=id/screenSize +01020446=id/scrim +01020447=id/scrollView +01020448=id/scrolling +01020449=id/seamless +0102044a=id/search_app_icon +0102044b=id/search_badge +0102044c=id/search_bar +0102044d=id/search_button +0102044e=id/search_close_btn +0102044f=id/search_edit_frame +01020450=id/search_go_btn +01020451=id/search_mag_icon +01020452=id/search_plate +01020453=id/search_src_text +01020454=id/search_view +01020455=id/search_voice_btn +01020456=id/searchbox +01020457=id/secondary +01020458=id/seekbar +01020459=id/select_all +0102045a=id/select_dialog_listview +0102045b=id/selection_end_handle +0102045c=id/selection_start_handle +0102045d=id/sensor +0102045e=id/sensorLandscape +0102045f=id/sensorPortrait +01020460=id/sentences +01020461=id/separator +01020462=id/sequential +01020463=id/sequentially +01020464=id/serial_number +01020465=id/serial_number_header +01020466=id/serif +01020467=id/setup +01020468=id/seven +01020469=id/sha1_fingerprint +0102046a=id/sha1_fingerprint_header +0102046b=id/sha256_fingerprint +0102046c=id/sha256_fingerprint_header +0102046d=id/share +0102046e=id/shortEdges +0102046f=id/shortcut +01020470=id/showCustom +01020471=id/showHome +01020472=id/showSearchIconAsBadge +01020473=id/showSearchLabelAsBadge +01020474=id/showTitle +01020475=id/showVoiceSearchButton +01020476=id/signature +01020477=id/signatureOrSystem +01020478=id/signed +01020479=id/silent +0102047a=id/simple +0102047b=id/single +0102047c=id/singleChoice +0102047d=id/singleInstance +0102047e=id/singleTask +0102047f=id/singleTop +01020480=id/six +01020481=id/skip_button +01020482=id/small +01020483=id/smallIcon +01020484=id/smallestScreenSize +01020485=id/smart_reply_container +01020486=id/sms_short_code_coins_icon +01020487=id/sms_short_code_confirm_message +01020488=id/sms_short_code_detail_layout +01020489=id/sms_short_code_detail_message +0102048a=id/sms_short_code_remember_choice_checkbox +0102048b=id/sms_short_code_remember_choice_text +0102048c=id/sms_short_code_remember_undo_instruction +0102048d=id/social +0102048e=id/softRestricted +0102048f=id/software +01020490=id/spacer +01020491=id/spacingWidth +01020492=id/spacingWidthUniform +01020493=id/spannable +01020494=id/spinner +01020495=id/splashscreen +01020496=id/splitActionBarWhenNarrow +01020497=id/split_action_bar +01020498=id/square +01020499=id/src_atop +0102049a=id/src_in +0102049b=id/src_over +0102049c=id/stack +0102049d=id/standard +0102049e=id/start +0102049f=id/stateAlwaysHidden +010204a0=id/stateAlwaysVisible +010204a1=id/stateHidden +010204a2=id/stateUnchanged +010204a3=id/stateUnspecified +010204a4=id/stateVisible +010204a5=id/status +010204a6=id/status_bar_latest_event_content +010204a7=id/string +010204a8=id/stub +010204a9=id/stylus +010204aa=id/sub_color +010204ab=id/sub_name +010204ac=id/sub_number +010204ad=id/sub_short_number +010204ae=id/submenuarrow +010204af=id/submit_area +010204b0=id/suggestionContainer +010204b1=id/suggestionWindowContainer +010204b2=id/surfaceView +010204b3=id/sweep +010204b4=id/switch_new +010204b5=id/switch_old +010204b6=id/system +010204b7=id/tabMode +010204b8=id/tabs_container +010204b9=id/tag_alpha_animator +010204ba=id/tag_is_first_layout +010204bb=id/tag_layout_top +010204bc=id/tag_top_animator +010204bd=id/tag_top_override +010204be=id/text +010204bf=id/textAutoComplete +010204c0=id/textAutoCorrect +010204c1=id/textCapCharacters +010204c2=id/textCapSentences +010204c3=id/textCapWords +010204c4=id/textClassifier +010204c5=id/textEmailAddress +010204c6=id/textEmailSubject +010204c7=id/textEnd +010204c8=id/textFilter +010204c9=id/textImeMultiLine +010204ca=id/textLongMessage +010204cb=id/textMultiLine +010204cc=id/textNoSuggestions +010204cd=id/textPassword +010204ce=id/textPersonName +010204cf=id/textPhonetic +010204d0=id/textPostalAddress +010204d1=id/textShortMessage +010204d2=id/textSpacerNoButtons +010204d3=id/textSpacerNoTitle +010204d4=id/textStart +010204d5=id/textUri +010204d6=id/textVisiblePassword +010204d7=id/textWebEditText +010204d8=id/textWebEmailAddress +010204d9=id/textWebPassword +010204da=id/text_line_1 +010204db=id/textureView +010204dc=id/three +010204dd=id/time +010204de=id/timePicker +010204df=id/timePickerLayout +010204e0=id/time_current +010204e1=id/time_divider +010204e2=id/time_header +010204e3=id/time_layout +010204e4=id/titleDivider +010204e5=id/titleDividerNoCustom +010204e6=id/titleDividerTop +010204e7=id/title_container +010204e8=id/title_separator +010204e9=id/title_template +010204ea=id/to_common +010204eb=id/to_common_header +010204ec=id/to_org +010204ed=id/to_org_header +010204ee=id/to_org_unit +010204ef=id/to_org_unit_header +010204f0=id/together +010204f1=id/toggle_mode +010204f2=id/top +010204f3=id/topPanel +010204f4=id/top_label +010204f5=id/top_left_diagonal_double_arrow +010204f6=id/top_right_diagonal_double_arrow +010204f7=id/top_to_bottom +010204f8=id/touchscreen +010204f9=id/trackball +010204fa=id/transitionPosition +010204fb=id/transitionTransform +010204fc=id/transition_overlay_view_tag +010204fd=id/translucent +010204fe=id/transparent +010204ff=id/twelvekey +01020500=id/two +01020501=id/twoLine +01020502=id/typeAllMask +01020503=id/typeAnnouncement +01020504=id/typeAssistReadingContext +01020505=id/typeContextClicked +01020506=id/typeGestureDetectionEnd +01020507=id/typeGestureDetectionStart +01020508=id/typeNotificationStateChanged +01020509=id/typeTouchExplorationGestureEnd +0102050a=id/typeTouchExplorationGestureStart +0102050b=id/typeTouchInteractionEnd +0102050c=id/typeTouchInteractionStart +0102050d=id/typeViewAccessibilityFocusCleared +0102050e=id/typeViewAccessibilityFocused +0102050f=id/typeViewClicked +01020510=id/typeViewFocused +01020511=id/typeViewHoverEnter +01020512=id/typeViewHoverExit +01020513=id/typeViewLongClicked +01020514=id/typeViewScrolled +01020515=id/typeViewSelected +01020516=id/typeViewTextChanged +01020517=id/typeViewTextSelectionChanged +01020518=id/typeViewTextTraversedAtMovementGranularity +01020519=id/typeWindowContentChanged +0102051a=id/typeWindowStateChanged +0102051b=id/typeWindowsChanged +0102051c=id/uiMode +0102051d=id/unchecked +0102051e=id/undefined +0102051f=id/uniform +01020520=id/unpressed +01020521=id/unspecified +01020522=id/up +01020523=id/useLogo +01020524=id/user +01020525=id/userIdentification +01020526=id/userLandscape +01020527=id/userPortrait +01020528=id/userSwitcher +01020529=id/validity_header +0102052a=id/value +0102052b=id/vendorPrivileged +0102052c=id/verifier +0102052d=id/vertical +0102052e=id/vertical_double_arrow +0102052f=id/vertical_text +01020530=id/video +01020531=id/viewEnd +01020532=id/viewStart +01020533=id/visible +01020534=id/voice +01020535=id/voiceTrigger +01020536=id/wait +01020537=id/web +01020538=id/websearch +01020539=id/webview +0102053a=id/wellbeing +0102053b=id/wheel +0102053c=id/wideColorGamut +0102053d=id/widget +0102053e=id/widgets +0102053f=id/withText +01020540=id/words +01020541=id/work_widget_app_icon +01020542=id/work_widget_badge_icon +01020543=id/work_widget_mask_frame +01020544=id/wrap_content +01020545=id/xhdpi +01020546=id/xlarge +01020547=id/xxhdpi +01020548=id/xxxhdpi +01020549=id/year +0102054a=id/yes +0102054b=id/yesExcludeDescendants +0102054c=id/zero +0102054d=id/zoomControls +0102054e=id/zoomIn +0102054f=id/zoomMagnify +01020550=id/zoomOut +01020551=id/zoom_fit_page +01020552=id/zoom_in +01020553=id/zoom_out +01020554=id/zoom_page_overview +01030000=style/Animation +01030001=style/Animation.Activity +01030002=style/Animation.Dialog +01030003=style/Animation.Translucent +01030004=style/Animation.Toast +01030005=style/Theme +01030006=style/Theme.NoTitleBar +01030007=style/Theme.NoTitleBar.Fullscreen +01030008=style/Theme.Black +01030009=style/Theme.Black.NoTitleBar +0103000a=style/Theme.Black.NoTitleBar.Fullscreen +0103000b=style/Theme.Dialog +0103000c=style/Theme.Light +0103000d=style/Theme.Light.NoTitleBar +0103000e=style/Theme.Light.NoTitleBar.Fullscreen +0103000f=style/Theme.Translucent +01030010=style/Theme.Translucent.NoTitleBar +01030011=style/Theme.Translucent.NoTitleBar.Fullscreen +01030012=style/Widget +01030013=style/Widget.AbsListView +01030014=style/Widget.Button +01030015=style/Widget.Button.Inset +01030016=style/Widget.Button.Small +01030017=style/Widget.Button.Toggle +01030018=style/Widget.CompoundButton +01030019=style/Widget.CompoundButton.CheckBox +0103001a=style/Widget.CompoundButton.RadioButton +0103001b=style/Widget.CompoundButton.Star +0103001c=style/Widget.ProgressBar +0103001d=style/Widget.ProgressBar.Large +0103001e=style/Widget.ProgressBar.Small +0103001f=style/Widget.ProgressBar.Horizontal +01030020=style/Widget.SeekBar +01030021=style/Widget.RatingBar +01030022=style/Widget.TextView +01030023=style/Widget.EditText +01030024=style/Widget.ExpandableListView +01030025=style/Widget.ImageWell +01030026=style/Widget.ImageButton +01030027=style/Widget.AutoCompleteTextView +01030028=style/Widget.Spinner +01030029=style/Widget.TextView.PopupMenu +0103002a=style/Widget.TextView.SpinnerItem +0103002b=style/Widget.DropDownItem +0103002c=style/Widget.DropDownItem.Spinner +0103002d=style/Widget.ScrollView +0103002e=style/Widget.ListView +0103002f=style/Widget.ListView.White +01030030=style/Widget.ListView.DropDown +01030031=style/Widget.ListView.Menu +01030032=style/Widget.GridView +01030033=style/Widget.WebView +01030034=style/Widget.TabWidget +01030035=style/Widget.Gallery +01030036=style/Widget.PopupWindow +01030037=style/MediaButton +01030038=style/MediaButton.Previous +01030039=style/MediaButton.Next +0103003a=style/MediaButton.Play +0103003b=style/MediaButton.Ffwd +0103003c=style/MediaButton.Rew +0103003d=style/MediaButton.Pause +0103003e=style/TextAppearance +0103003f=style/TextAppearance.Inverse +01030040=style/TextAppearance.Theme +01030041=style/TextAppearance.DialogWindowTitle +01030042=style/TextAppearance.Large +01030043=style/TextAppearance.Large.Inverse +01030044=style/TextAppearance.Medium +01030045=style/TextAppearance.Medium.Inverse +01030046=style/TextAppearance.Small +01030047=style/TextAppearance.Small.Inverse +01030048=style/TextAppearance.Theme.Dialog +01030049=style/TextAppearance.Widget +0103004a=style/TextAppearance.Widget.Button +0103004b=style/TextAppearance.Widget.IconMenu.Item +0103004c=style/TextAppearance.Widget.EditText +0103004d=style/TextAppearance.Widget.TabWidget +0103004e=style/TextAppearance.Widget.TextView +0103004f=style/TextAppearance.Widget.TextView.PopupMenu +01030050=style/TextAppearance.Widget.DropDownHint +01030051=style/TextAppearance.Widget.DropDownItem +01030052=style/TextAppearance.Widget.TextView.SpinnerItem +01030053=style/TextAppearance.WindowTitle +01030054=style/Theme.InputMethod +01030055=style/Theme.NoDisplay +01030056=style/Animation.InputMethod +01030057=style/Widget.KeyboardView +01030058=style/ButtonBar +01030059=style/Theme.Panel +0103005a=style/Theme.Light.Panel +0103005b=style/Widget.ProgressBar.Inverse +0103005c=style/Widget.ProgressBar.Large.Inverse +0103005d=style/Widget.ProgressBar.Small.Inverse +0103005e=style/Theme.Wallpaper +0103005f=style/Theme.Wallpaper.NoTitleBar +01030060=style/Theme.Wallpaper.NoTitleBar.Fullscreen +01030061=style/Theme.WallpaperSettings +01030062=style/Theme.Light.WallpaperSettings +01030063=style/TextAppearance.SearchResult.Title +01030064=style/TextAppearance.SearchResult.Subtitle +01030065=style/TextAppearance.StatusBar.Title +01030066=style/TextAppearance.StatusBar.Icon +01030067=style/TextAppearance.StatusBar.EventContent +01030068=style/TextAppearance.StatusBar.EventContent.Title +01030069=style/Theme.WithActionBar +0103006a=style/Theme.NoTitleBar.OverlayActionModes +0103006b=style/Theme.Holo +0103006c=style/Theme.Holo.NoActionBar +0103006d=style/Theme.Holo.NoActionBar.Fullscreen +0103006e=style/Theme.Holo.Light +0103006f=style/Theme.Holo.Dialog +01030070=style/Theme.Holo.Dialog.MinWidth +01030071=style/Theme.Holo.Dialog.NoActionBar +01030072=style/Theme.Holo.Dialog.NoActionBar.MinWidth +01030073=style/Theme.Holo.Light.Dialog +01030074=style/Theme.Holo.Light.Dialog.MinWidth +01030075=style/Theme.Holo.Light.Dialog.NoActionBar +01030076=style/Theme.Holo.Light.Dialog.NoActionBar.MinWidth +01030077=style/Theme.Holo.DialogWhenLarge +01030078=style/Theme.Holo.DialogWhenLarge.NoActionBar +01030079=style/Theme.Holo.Light.DialogWhenLarge +0103007a=style/Theme.Holo.Light.DialogWhenLarge.NoActionBar +0103007b=style/Theme.Holo.Panel +0103007c=style/Theme.Holo.Light.Panel +0103007d=style/Theme.Holo.Wallpaper +0103007e=style/Theme.Holo.Wallpaper.NoTitleBar +0103007f=style/Theme.Holo.InputMethod +01030080=style/TextAppearance.Widget.PopupMenu.Large +01030081=style/TextAppearance.Widget.PopupMenu.Small +01030082=style/Widget.ActionBar +01030083=style/Widget.Spinner.DropDown +01030084=style/Widget.ActionButton +01030085=style/Widget.ListPopupWindow +01030086=style/Widget.PopupMenu +01030087=style/Widget.ActionButton.Overflow +01030088=style/Widget.ActionButton.CloseMode +01030089=style/Widget.FragmentBreadCrumbs +0103008a=style/Widget.Holo +0103008b=style/Widget.Holo.Button +0103008c=style/Widget.Holo.Button.Small +0103008d=style/Widget.Holo.Button.Inset +0103008e=style/Widget.Holo.Button.Toggle +0103008f=style/Widget.Holo.TextView +01030090=style/Widget.Holo.AutoCompleteTextView +01030091=style/Widget.Holo.CompoundButton.CheckBox +01030092=style/Widget.Holo.ListView.DropDown +01030093=style/Widget.Holo.EditText +01030094=style/Widget.Holo.ExpandableListView +01030095=style/Widget.Holo.GridView +01030096=style/Widget.Holo.ImageButton +01030097=style/Widget.Holo.ListView +01030098=style/Widget.Holo.PopupWindow +01030099=style/Widget.Holo.ProgressBar +0103009a=style/Widget.Holo.ProgressBar.Horizontal +0103009b=style/Widget.Holo.ProgressBar.Small +0103009c=style/Widget.Holo.ProgressBar.Small.Title +0103009d=style/Widget.Holo.ProgressBar.Large +0103009e=style/Widget.Holo.SeekBar +0103009f=style/Widget.Holo.RatingBar +010300a0=style/Widget.Holo.RatingBar.Indicator +010300a1=style/Widget.Holo.RatingBar.Small +010300a2=style/Widget.Holo.CompoundButton.RadioButton +010300a3=style/Widget.Holo.ScrollView +010300a4=style/Widget.Holo.HorizontalScrollView +010300a5=style/Widget.Holo.Spinner +010300a6=style/Widget.Holo.CompoundButton.Star +010300a7=style/Widget.Holo.TabWidget +010300a8=style/Widget.Holo.WebTextView +010300a9=style/Widget.Holo.WebView +010300aa=style/Widget.Holo.DropDownItem +010300ab=style/Widget.Holo.DropDownItem.Spinner +010300ac=style/Widget.Holo.TextView.SpinnerItem +010300ad=style/Widget.Holo.ListPopupWindow +010300ae=style/Widget.Holo.PopupMenu +010300af=style/Widget.Holo.ActionButton +010300b0=style/Widget.Holo.ActionButton.Overflow +010300b1=style/Widget.Holo.ActionButton.TextButton +010300b2=style/Widget.Holo.ActionMode +010300b3=style/Widget.Holo.ActionButton.CloseMode +010300b4=style/Widget.Holo.ActionBar +010300b5=style/Widget.Holo.Light +010300b6=style/Widget.Holo.Light.Button +010300b7=style/Widget.Holo.Light.Button.Small +010300b8=style/Widget.Holo.Light.Button.Inset +010300b9=style/Widget.Holo.Light.Button.Toggle +010300ba=style/Widget.Holo.Light.TextView +010300bb=style/Widget.Holo.Light.AutoCompleteTextView +010300bc=style/Widget.Holo.Light.CompoundButton.CheckBox +010300bd=style/Widget.Holo.Light.ListView.DropDown +010300be=style/Widget.Holo.Light.EditText +010300bf=style/Widget.Holo.Light.ExpandableListView +010300c0=style/Widget.Holo.Light.GridView +010300c1=style/Widget.Holo.Light.ImageButton +010300c2=style/Widget.Holo.Light.ListView +010300c3=style/Widget.Holo.Light.PopupWindow +010300c4=style/Widget.Holo.Light.ProgressBar +010300c5=style/Widget.Holo.Light.ProgressBar.Horizontal +010300c6=style/Widget.Holo.Light.ProgressBar.Small +010300c7=style/Widget.Holo.Light.ProgressBar.Small.Title +010300c8=style/Widget.Holo.Light.ProgressBar.Large +010300c9=style/Widget.Holo.Light.ProgressBar.Inverse +010300ca=style/Widget.Holo.Light.ProgressBar.Small.Inverse +010300cb=style/Widget.Holo.Light.ProgressBar.Large.Inverse +010300cc=style/Widget.Holo.Light.SeekBar +010300cd=style/Widget.Holo.Light.RatingBar +010300ce=style/Widget.Holo.Light.RatingBar.Indicator +010300cf=style/Widget.Holo.Light.RatingBar.Small +010300d0=style/Widget.Holo.Light.CompoundButton.RadioButton +010300d1=style/Widget.Holo.Light.ScrollView +010300d2=style/Widget.Holo.Light.HorizontalScrollView +010300d3=style/Widget.Holo.Light.Spinner +010300d4=style/Widget.Holo.Light.CompoundButton.Star +010300d5=style/Widget.Holo.Light.TabWidget +010300d6=style/Widget.Holo.Light.WebTextView +010300d7=style/Widget.Holo.Light.WebView +010300d8=style/Widget.Holo.Light.DropDownItem +010300d9=style/Widget.Holo.Light.DropDownItem.Spinner +010300da=style/Widget.Holo.Light.TextView.SpinnerItem +010300db=style/Widget.Holo.Light.ListPopupWindow +010300dc=style/Widget.Holo.Light.PopupMenu +010300dd=style/Widget.Holo.Light.ActionButton +010300de=style/Widget.Holo.Light.ActionButton.Overflow +010300df=style/Widget.Holo.Light.ActionMode +010300e0=style/Widget.Holo.Light.ActionButton.CloseMode +010300e1=style/Widget.Holo.Light.ActionBar +010300e2=style/Widget.Holo.Button.Borderless +010300e3=style/Widget.Holo.Tab +010300e4=style/Widget.Holo.Light.Tab +010300e5=style/Holo.ButtonBar +010300e6=style/Holo.Light.ButtonBar +010300e7=style/Holo.ButtonBar.AlertDialog +010300e8=style/Holo.Light.ButtonBar.AlertDialog +010300e9=style/Holo.SegmentedButton +010300ea=style/Holo.Light.SegmentedButton +010300eb=style/Widget.CalendarView +010300ec=style/Widget.Holo.CalendarView +010300ed=style/Widget.Holo.Light.CalendarView +010300ee=style/Widget.DatePicker +010300ef=style/Widget.Holo.DatePicker +010300f0=style/Theme.Holo.Light.NoActionBar +010300f1=style/Theme.Holo.Light.NoActionBar.Fullscreen +010300f2=style/Widget.ActionBar.TabView +010300f3=style/Widget.ActionBar.TabText +010300f4=style/Widget.ActionBar.TabBar +010300f5=style/Widget.Holo.ActionBar.TabView +010300f6=style/Widget.Holo.ActionBar.TabText +010300f7=style/Widget.Holo.ActionBar.TabBar +010300f8=style/Widget.Holo.Light.ActionBar.TabView +010300f9=style/Widget.Holo.Light.ActionBar.TabText +010300fa=style/Widget.Holo.Light.ActionBar.TabBar +010300fb=style/TextAppearance.Holo +010300fc=style/TextAppearance.Holo.Inverse +010300fd=style/TextAppearance.Holo.Large +010300fe=style/TextAppearance.Holo.Large.Inverse +010300ff=style/TextAppearance.Holo.Medium +01030100=style/TextAppearance.Holo.Medium.Inverse +01030101=style/TextAppearance.Holo.Small +01030102=style/TextAppearance.Holo.Small.Inverse +01030103=style/TextAppearance.Holo.SearchResult.Title +01030104=style/TextAppearance.Holo.SearchResult.Subtitle +01030105=style/TextAppearance.Holo.Widget +01030106=style/TextAppearance.Holo.Widget.Button +01030107=style/TextAppearance.Holo.Widget.IconMenu.Item +01030108=style/TextAppearance.Holo.Widget.TabWidget +01030109=style/TextAppearance.Holo.Widget.TextView +0103010a=style/TextAppearance.Holo.Widget.TextView.PopupMenu +0103010b=style/TextAppearance.Holo.Widget.DropDownHint +0103010c=style/TextAppearance.Holo.Widget.DropDownItem +0103010d=style/TextAppearance.Holo.Widget.TextView.SpinnerItem +0103010e=style/TextAppearance.Holo.Widget.EditText +0103010f=style/TextAppearance.Holo.Widget.PopupMenu +01030110=style/TextAppearance.Holo.Widget.PopupMenu.Large +01030111=style/TextAppearance.Holo.Widget.PopupMenu.Small +01030112=style/TextAppearance.Holo.Widget.ActionBar.Title +01030113=style/TextAppearance.Holo.Widget.ActionBar.Subtitle +01030114=style/TextAppearance.Holo.Widget.ActionMode.Title +01030115=style/TextAppearance.Holo.Widget.ActionMode.Subtitle +01030116=style/TextAppearance.Holo.WindowTitle +01030117=style/TextAppearance.Holo.DialogWindowTitle +01030118=style/TextAppearance.SuggestionHighlight +01030119=style/Theme.Holo.Light.DarkActionBar +0103011a=style/Widget.Holo.Button.Borderless.Small +0103011b=style/Widget.Holo.Light.Button.Borderless.Small +0103011c=style/TextAppearance.Holo.Widget.ActionBar.Title.Inverse +0103011d=style/TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse +0103011e=style/TextAppearance.Holo.Widget.ActionMode.Title.Inverse +0103011f=style/TextAppearance.Holo.Widget.ActionMode.Subtitle.Inverse +01030120=style/TextAppearance.Holo.Widget.ActionBar.Menu +01030121=style/Widget.Holo.ActionBar.Solid +01030122=style/Widget.Holo.Light.ActionBar.Solid +01030123=style/Widget.Holo.Light.ActionBar.Solid.Inverse +01030124=style/Widget.Holo.Light.ActionBar.TabBar.Inverse +01030125=style/Widget.Holo.Light.ActionBar.TabView.Inverse +01030126=style/Widget.Holo.Light.ActionBar.TabText.Inverse +01030127=style/Widget.Holo.Light.ActionMode.Inverse +01030128=style/Theme.DeviceDefault +01030129=style/Theme.DeviceDefault.NoActionBar +0103012a=style/Theme.DeviceDefault.NoActionBar.Fullscreen +0103012b=style/Theme.DeviceDefault.Light +0103012c=style/Theme.DeviceDefault.Light.NoActionBar +0103012d=style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen +0103012e=style/Theme.DeviceDefault.Dialog +0103012f=style/Theme.DeviceDefault.Dialog.MinWidth +01030130=style/Theme.DeviceDefault.Dialog.NoActionBar +01030131=style/Theme.DeviceDefault.Dialog.NoActionBar.MinWidth +01030132=style/Theme.DeviceDefault.Light.Dialog +01030133=style/Theme.DeviceDefault.Light.Dialog.MinWidth +01030134=style/Theme.DeviceDefault.Light.Dialog.NoActionBar +01030135=style/Theme.DeviceDefault.Light.Dialog.NoActionBar.MinWidth +01030136=style/Theme.DeviceDefault.DialogWhenLarge +01030137=style/Theme.DeviceDefault.DialogWhenLarge.NoActionBar +01030138=style/Theme.DeviceDefault.Light.DialogWhenLarge +01030139=style/Theme.DeviceDefault.Light.DialogWhenLarge.NoActionBar +0103013a=style/Theme.DeviceDefault.Panel +0103013b=style/Theme.DeviceDefault.Light.Panel +0103013c=style/Theme.DeviceDefault.Wallpaper +0103013d=style/Theme.DeviceDefault.Wallpaper.NoTitleBar +0103013e=style/Theme.DeviceDefault.InputMethod +0103013f=style/Theme.DeviceDefault.Light.DarkActionBar +01030140=style/Widget.DeviceDefault +01030141=style/Widget.DeviceDefault.Button +01030142=style/Widget.DeviceDefault.Button.Small +01030143=style/Widget.DeviceDefault.Button.Inset +01030144=style/Widget.DeviceDefault.Button.Toggle +01030145=style/Widget.DeviceDefault.Button.Borderless.Small +01030146=style/Widget.DeviceDefault.TextView +01030147=style/Widget.DeviceDefault.AutoCompleteTextView +01030148=style/Widget.DeviceDefault.CompoundButton.CheckBox +01030149=style/Widget.DeviceDefault.ListView.DropDown +0103014a=style/Widget.DeviceDefault.EditText +0103014b=style/Widget.DeviceDefault.ExpandableListView +0103014c=style/Widget.DeviceDefault.GridView +0103014d=style/Widget.DeviceDefault.ImageButton +0103014e=style/Widget.DeviceDefault.ListView +0103014f=style/Widget.DeviceDefault.PopupWindow +01030150=style/Widget.DeviceDefault.ProgressBar +01030151=style/Widget.DeviceDefault.ProgressBar.Horizontal +01030152=style/Widget.DeviceDefault.ProgressBar.Small +01030153=style/Widget.DeviceDefault.ProgressBar.Small.Title +01030154=style/Widget.DeviceDefault.ProgressBar.Large +01030155=style/Widget.DeviceDefault.SeekBar +01030156=style/Widget.DeviceDefault.RatingBar +01030157=style/Widget.DeviceDefault.RatingBar.Indicator +01030158=style/Widget.DeviceDefault.RatingBar.Small +01030159=style/Widget.DeviceDefault.CompoundButton.RadioButton +0103015a=style/Widget.DeviceDefault.ScrollView +0103015b=style/Widget.DeviceDefault.HorizontalScrollView +0103015c=style/Widget.DeviceDefault.Spinner +0103015d=style/Widget.DeviceDefault.CompoundButton.Star +0103015e=style/Widget.DeviceDefault.TabWidget +0103015f=style/Widget.DeviceDefault.WebTextView +01030160=style/Widget.DeviceDefault.WebView +01030161=style/Widget.DeviceDefault.DropDownItem +01030162=style/Widget.DeviceDefault.DropDownItem.Spinner +01030163=style/Widget.DeviceDefault.TextView.SpinnerItem +01030164=style/Widget.DeviceDefault.ListPopupWindow +01030165=style/Widget.DeviceDefault.PopupMenu +01030166=style/Widget.DeviceDefault.ActionButton +01030167=style/Widget.DeviceDefault.ActionButton.Overflow +01030168=style/Widget.DeviceDefault.ActionButton.TextButton +01030169=style/Widget.DeviceDefault.ActionMode +0103016a=style/Widget.DeviceDefault.ActionButton.CloseMode +0103016b=style/Widget.DeviceDefault.ActionBar +0103016c=style/Widget.DeviceDefault.Button.Borderless +0103016d=style/Widget.DeviceDefault.Tab +0103016e=style/Widget.DeviceDefault.CalendarView +0103016f=style/Widget.DeviceDefault.DatePicker +01030170=style/Widget.DeviceDefault.ActionBar.TabView +01030171=style/Widget.DeviceDefault.ActionBar.TabText +01030172=style/Widget.DeviceDefault.ActionBar.TabBar +01030173=style/Widget.DeviceDefault.ActionBar.Solid +01030174=style/Widget.DeviceDefault.Light +01030175=style/Widget.DeviceDefault.Light.Button +01030176=style/Widget.DeviceDefault.Light.Button.Small +01030177=style/Widget.DeviceDefault.Light.Button.Inset +01030178=style/Widget.DeviceDefault.Light.Button.Toggle +01030179=style/Widget.DeviceDefault.Light.Button.Borderless.Small +0103017a=style/Widget.DeviceDefault.Light.TextView +0103017b=style/Widget.DeviceDefault.Light.AutoCompleteTextView +0103017c=style/Widget.DeviceDefault.Light.CompoundButton.CheckBox +0103017d=style/Widget.DeviceDefault.Light.ListView.DropDown +0103017e=style/Widget.DeviceDefault.Light.EditText +0103017f=style/Widget.DeviceDefault.Light.ExpandableListView +01030180=style/Widget.DeviceDefault.Light.GridView +01030181=style/Widget.DeviceDefault.Light.ImageButton +01030182=style/Widget.DeviceDefault.Light.ListView +01030183=style/Widget.DeviceDefault.Light.PopupWindow +01030184=style/Widget.DeviceDefault.Light.ProgressBar +01030185=style/Widget.DeviceDefault.Light.ProgressBar.Horizontal +01030186=style/Widget.DeviceDefault.Light.ProgressBar.Small +01030187=style/Widget.DeviceDefault.Light.ProgressBar.Small.Title +01030188=style/Widget.DeviceDefault.Light.ProgressBar.Large +01030189=style/Widget.DeviceDefault.Light.ProgressBar.Inverse +0103018a=style/Widget.DeviceDefault.Light.ProgressBar.Small.Inverse +0103018b=style/Widget.DeviceDefault.Light.ProgressBar.Large.Inverse +0103018c=style/Widget.DeviceDefault.Light.SeekBar +0103018d=style/Widget.DeviceDefault.Light.RatingBar +0103018e=style/Widget.DeviceDefault.Light.RatingBar.Indicator +0103018f=style/Widget.DeviceDefault.Light.RatingBar.Small +01030190=style/Widget.DeviceDefault.Light.CompoundButton.RadioButton +01030191=style/Widget.DeviceDefault.Light.ScrollView +01030192=style/Widget.DeviceDefault.Light.HorizontalScrollView +01030193=style/Widget.DeviceDefault.Light.Spinner +01030194=style/Widget.DeviceDefault.Light.CompoundButton.Star +01030195=style/Widget.DeviceDefault.Light.TabWidget +01030196=style/Widget.DeviceDefault.Light.WebTextView +01030197=style/Widget.DeviceDefault.Light.WebView +01030198=style/Widget.DeviceDefault.Light.DropDownItem +01030199=style/Widget.DeviceDefault.Light.DropDownItem.Spinner +0103019a=style/Widget.DeviceDefault.Light.TextView.SpinnerItem +0103019b=style/Widget.DeviceDefault.Light.ListPopupWindow +0103019c=style/Widget.DeviceDefault.Light.PopupMenu +0103019d=style/Widget.DeviceDefault.Light.Tab +0103019e=style/Widget.DeviceDefault.Light.CalendarView +0103019f=style/Widget.DeviceDefault.Light.ActionButton +010301a0=style/Widget.DeviceDefault.Light.ActionButton.Overflow +010301a1=style/Widget.DeviceDefault.Light.ActionMode +010301a2=style/Widget.DeviceDefault.Light.ActionButton.CloseMode +010301a3=style/Widget.DeviceDefault.Light.ActionBar +010301a4=style/Widget.DeviceDefault.Light.ActionBar.TabView +010301a5=style/Widget.DeviceDefault.Light.ActionBar.TabText +010301a6=style/Widget.DeviceDefault.Light.ActionBar.TabBar +010301a7=style/Widget.DeviceDefault.Light.ActionBar.Solid +010301a8=style/Widget.DeviceDefault.Light.ActionBar.Solid.Inverse +010301a9=style/Widget.DeviceDefault.Light.ActionBar.TabBar.Inverse +010301aa=style/Widget.DeviceDefault.Light.ActionBar.TabView.Inverse +010301ab=style/Widget.DeviceDefault.Light.ActionBar.TabText.Inverse +010301ac=style/Widget.DeviceDefault.Light.ActionMode.Inverse +010301ad=style/TextAppearance.DeviceDefault +010301ae=style/TextAppearance.DeviceDefault.Inverse +010301af=style/TextAppearance.DeviceDefault.Large +010301b0=style/TextAppearance.DeviceDefault.Large.Inverse +010301b1=style/TextAppearance.DeviceDefault.Medium +010301b2=style/TextAppearance.DeviceDefault.Medium.Inverse +010301b3=style/TextAppearance.DeviceDefault.Small +010301b4=style/TextAppearance.DeviceDefault.Small.Inverse +010301b5=style/TextAppearance.DeviceDefault.SearchResult.Title +010301b6=style/TextAppearance.DeviceDefault.SearchResult.Subtitle +010301b7=style/TextAppearance.DeviceDefault.WindowTitle +010301b8=style/TextAppearance.DeviceDefault.DialogWindowTitle +010301b9=style/TextAppearance.DeviceDefault.Widget +010301ba=style/TextAppearance.DeviceDefault.Widget.Button +010301bb=style/TextAppearance.DeviceDefault.Widget.IconMenu.Item +010301bc=style/TextAppearance.DeviceDefault.Widget.TabWidget +010301bd=style/TextAppearance.DeviceDefault.Widget.TextView +010301be=style/TextAppearance.DeviceDefault.Widget.TextView.PopupMenu +010301bf=style/TextAppearance.DeviceDefault.Widget.DropDownHint +010301c0=style/TextAppearance.DeviceDefault.Widget.DropDownItem +010301c1=style/TextAppearance.DeviceDefault.Widget.TextView.SpinnerItem +010301c2=style/TextAppearance.DeviceDefault.Widget.EditText +010301c3=style/TextAppearance.DeviceDefault.Widget.PopupMenu +010301c4=style/TextAppearance.DeviceDefault.Widget.PopupMenu.Large +010301c5=style/TextAppearance.DeviceDefault.Widget.PopupMenu.Small +010301c6=style/TextAppearance.DeviceDefault.Widget.ActionBar.Title +010301c7=style/TextAppearance.DeviceDefault.Widget.ActionBar.Subtitle +010301c8=style/TextAppearance.DeviceDefault.Widget.ActionMode.Title +010301c9=style/TextAppearance.DeviceDefault.Widget.ActionMode.Subtitle +010301ca=style/TextAppearance.DeviceDefault.Widget.ActionBar.Title.Inverse +010301cb=style/TextAppearance.DeviceDefault.Widget.ActionBar.Subtitle.Inverse +010301cc=style/TextAppearance.DeviceDefault.Widget.ActionMode.Title.Inverse +010301cd=style/TextAppearance.DeviceDefault.Widget.ActionMode.Subtitle.Inverse +010301ce=style/TextAppearance.DeviceDefault.Widget.ActionBar.Menu +010301cf=style/DeviceDefault.ButtonBar +010301d0=style/DeviceDefault.ButtonBar.AlertDialog +010301d1=style/DeviceDefault.SegmentedButton +010301d2=style/DeviceDefault.Light.ButtonBar +010301d3=style/DeviceDefault.Light.ButtonBar.AlertDialog +010301d4=style/DeviceDefault.Light.SegmentedButton +010301d5=style/Widget.Holo.MediaRouteButton +010301d6=style/Widget.Holo.Light.MediaRouteButton +010301d7=style/Widget.DeviceDefault.MediaRouteButton +010301d8=style/Widget.DeviceDefault.Light.MediaRouteButton +010301d9=style/Widget.Holo.CheckedTextView +010301da=style/Widget.Holo.Light.CheckedTextView +010301db=style/Widget.DeviceDefault.CheckedTextView +010301dc=style/Widget.DeviceDefault.Light.CheckedTextView +010301dd=style/Theme.Holo.NoActionBar.Overscan +010301de=style/Theme.Holo.Light.NoActionBar.Overscan +010301df=style/Theme.DeviceDefault.NoActionBar.Overscan +010301e0=style/Theme.DeviceDefault.Light.NoActionBar.Overscan +010301e1=style/Theme.Holo.NoActionBar.TranslucentDecor +010301e2=style/Theme.Holo.Light.NoActionBar.TranslucentDecor +010301e3=style/Theme.DeviceDefault.NoActionBar.TranslucentDecor +010301e4=style/Theme.DeviceDefault.Light.NoActionBar.TranslucentDecor +010301e5=style/Widget.FastScroll +010301e6=style/Widget.StackView +010301e7=style/Widget.Toolbar +010301e8=style/Widget.Toolbar.Button.Navigation +010301e9=style/Widget.DeviceDefault.FastScroll +010301ea=style/Widget.DeviceDefault.StackView +010301eb=style/Widget.DeviceDefault.Light.FastScroll +010301ec=style/Widget.DeviceDefault.Light.StackView +010301ed=style/TextAppearance.Material +010301ee=style/TextAppearance.Material.Button +010301ef=style/TextAppearance.Material.Body2 +010301f0=style/TextAppearance.Material.Body1 +010301f1=style/TextAppearance.Material.Caption +010301f2=style/TextAppearance.Material.DialogWindowTitle +010301f3=style/TextAppearance.Material.Display4 +010301f4=style/TextAppearance.Material.Display3 +010301f5=style/TextAppearance.Material.Display2 +010301f6=style/TextAppearance.Material.Display1 +010301f7=style/TextAppearance.Material.Headline +010301f8=style/TextAppearance.Material.Inverse +010301f9=style/TextAppearance.Material.Large +010301fa=style/TextAppearance.Material.Large.Inverse +010301fb=style/TextAppearance.Material.Medium +010301fc=style/TextAppearance.Material.Medium.Inverse +010301fd=style/TextAppearance.Material.Menu +010301fe=style/TextAppearance.Material.Notification +010301ff=style/TextAppearance.Material.Notification.Emphasis +01030200=style/TextAppearance.Material.Notification.Info +01030201=style/TextAppearance.Material.Notification.Line2 +01030202=style/TextAppearance.Material.Notification.Time +01030203=style/TextAppearance.Material.Notification.Title +01030204=style/TextAppearance.Material.SearchResult.Subtitle +01030205=style/TextAppearance.Material.SearchResult.Title +01030206=style/TextAppearance.Material.Small +01030207=style/TextAppearance.Material.Small.Inverse +01030208=style/TextAppearance.Material.Subhead +01030209=style/TextAppearance.Material.Title +0103020a=style/TextAppearance.Material.WindowTitle +0103020b=style/TextAppearance.Material.Widget +0103020c=style/TextAppearance.Material.Widget.ActionBar.Menu +0103020d=style/TextAppearance.Material.Widget.ActionBar.Subtitle +0103020e=style/TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse +0103020f=style/TextAppearance.Material.Widget.ActionBar.Title +01030210=style/TextAppearance.Material.Widget.ActionBar.Title.Inverse +01030211=style/TextAppearance.Material.Widget.ActionMode.Subtitle +01030212=style/TextAppearance.Material.Widget.ActionMode.Subtitle.Inverse +01030213=style/TextAppearance.Material.Widget.ActionMode.Title +01030214=style/TextAppearance.Material.Widget.ActionMode.Title.Inverse +01030215=style/TextAppearance.Material.Widget.Button +01030216=style/TextAppearance.Material.Widget.DropDownHint +01030217=style/TextAppearance.Material.Widget.DropDownItem +01030218=style/TextAppearance.Material.Widget.EditText +01030219=style/TextAppearance.Material.Widget.IconMenu.Item +0103021a=style/TextAppearance.Material.Widget.PopupMenu +0103021b=style/TextAppearance.Material.Widget.PopupMenu.Large +0103021c=style/TextAppearance.Material.Widget.PopupMenu.Small +0103021d=style/TextAppearance.Material.Widget.TabWidget +0103021e=style/TextAppearance.Material.Widget.TextView +0103021f=style/TextAppearance.Material.Widget.TextView.PopupMenu +01030220=style/TextAppearance.Material.Widget.TextView.SpinnerItem +01030221=style/TextAppearance.Material.Widget.Toolbar.Subtitle +01030222=style/TextAppearance.Material.Widget.Toolbar.Title +01030223=style/Theme.DeviceDefault.Settings +01030224=style/Theme.Material +01030225=style/Theme.Material.Dialog +01030226=style/Theme.Material.Dialog.Alert +01030227=style/Theme.Material.Dialog.MinWidth +01030228=style/Theme.Material.Dialog.NoActionBar +01030229=style/Theme.Material.Dialog.NoActionBar.MinWidth +0103022a=style/Theme.Material.Dialog.Presentation +0103022b=style/Theme.Material.DialogWhenLarge +0103022c=style/Theme.Material.DialogWhenLarge.NoActionBar +0103022d=style/Theme.Material.InputMethod +0103022e=style/Theme.Material.NoActionBar +0103022f=style/Theme.Material.NoActionBar.Fullscreen +01030230=style/Theme.Material.NoActionBar.Overscan +01030231=style/Theme.Material.NoActionBar.TranslucentDecor +01030232=style/Theme.Material.Panel +01030233=style/Theme.Material.Settings +01030234=style/Theme.Material.Voice +01030235=style/Theme.Material.Wallpaper +01030236=style/Theme.Material.Wallpaper.NoTitleBar +01030237=style/Theme.Material.Light +01030238=style/Theme.Material.Light.DarkActionBar +01030239=style/Theme.Material.Light.Dialog +0103023a=style/Theme.Material.Light.Dialog.Alert +0103023b=style/Theme.Material.Light.Dialog.MinWidth +0103023c=style/Theme.Material.Light.Dialog.NoActionBar +0103023d=style/Theme.Material.Light.Dialog.NoActionBar.MinWidth +0103023e=style/Theme.Material.Light.Dialog.Presentation +0103023f=style/Theme.Material.Light.DialogWhenLarge +01030240=style/Theme.Material.Light.DialogWhenLarge.NoActionBar +01030241=style/Theme.Material.Light.NoActionBar +01030242=style/Theme.Material.Light.NoActionBar.Fullscreen +01030243=style/Theme.Material.Light.NoActionBar.Overscan +01030244=style/Theme.Material.Light.NoActionBar.TranslucentDecor +01030245=style/Theme.Material.Light.Panel +01030246=style/Theme.Material.Light.Voice +01030247=style/ThemeOverlay +01030248=style/ThemeOverlay.Material +01030249=style/ThemeOverlay.Material.ActionBar +0103024a=style/ThemeOverlay.Material.Light +0103024b=style/ThemeOverlay.Material.Dark +0103024c=style/ThemeOverlay.Material.Dark.ActionBar +0103024d=style/Widget.Material +0103024e=style/Widget.Material.ActionBar +0103024f=style/Widget.Material.ActionBar.Solid +01030250=style/Widget.Material.ActionBar.TabBar +01030251=style/Widget.Material.ActionBar.TabText +01030252=style/Widget.Material.ActionBar.TabView +01030253=style/Widget.Material.ActionButton +01030254=style/Widget.Material.ActionButton.CloseMode +01030255=style/Widget.Material.ActionButton.Overflow +01030256=style/Widget.Material.ActionMode +01030257=style/Widget.Material.AutoCompleteTextView +01030258=style/Widget.Material.Button +01030259=style/Widget.Material.Button.Borderless +0103025a=style/Widget.Material.Button.Borderless.Colored +0103025b=style/Widget.Material.Button.Borderless.Small +0103025c=style/Widget.Material.Button.Inset +0103025d=style/Widget.Material.Button.Small +0103025e=style/Widget.Material.Button.Toggle +0103025f=style/Widget.Material.ButtonBar +01030260=style/Widget.Material.ButtonBar.AlertDialog +01030261=style/Widget.Material.CalendarView +01030262=style/Widget.Material.CheckedTextView +01030263=style/Widget.Material.CompoundButton.CheckBox +01030264=style/Widget.Material.CompoundButton.RadioButton +01030265=style/Widget.Material.CompoundButton.Star +01030266=style/Widget.Material.DatePicker +01030267=style/Widget.Material.DropDownItem +01030268=style/Widget.Material.DropDownItem.Spinner +01030269=style/Widget.Material.EditText +0103026a=style/Widget.Material.ExpandableListView +0103026b=style/Widget.Material.FastScroll +0103026c=style/Widget.Material.GridView +0103026d=style/Widget.Material.HorizontalScrollView +0103026e=style/Widget.Material.ImageButton +0103026f=style/Widget.Material.ListPopupWindow +01030270=style/Widget.Material.ListView +01030271=style/Widget.Material.ListView.DropDown +01030272=style/Widget.Material.MediaRouteButton +01030273=style/Widget.Material.PopupMenu +01030274=style/Widget.Material.PopupMenu.Overflow +01030275=style/Widget.Material.PopupWindow +01030276=style/Widget.Material.ProgressBar +01030277=style/Widget.Material.ProgressBar.Horizontal +01030278=style/Widget.Material.ProgressBar.Large +01030279=style/Widget.Material.ProgressBar.Small +0103027a=style/Widget.Material.ProgressBar.Small.Title +0103027b=style/Widget.Material.RatingBar +0103027c=style/Widget.Material.RatingBar.Indicator +0103027d=style/Widget.Material.RatingBar.Small +0103027e=style/Widget.Material.ScrollView +0103027f=style/Widget.Material.SearchView +01030280=style/Widget.Material.SeekBar +01030281=style/Widget.Material.SegmentedButton +01030282=style/Widget.Material.StackView +01030283=style/Widget.Material.Spinner +01030284=style/Widget.Material.Spinner.Underlined +01030285=style/Widget.Material.Tab +01030286=style/Widget.Material.TabWidget +01030287=style/Widget.Material.TextView +01030288=style/Widget.Material.TextView.SpinnerItem +01030289=style/Widget.Material.TimePicker +0103028a=style/Widget.Material.Toolbar +0103028b=style/Widget.Material.Toolbar.Button.Navigation +0103028c=style/Widget.Material.WebTextView +0103028d=style/Widget.Material.WebView +0103028e=style/Widget.Material.Light +0103028f=style/Widget.Material.Light.ActionBar +01030290=style/Widget.Material.Light.ActionBar.Solid +01030291=style/Widget.Material.Light.ActionBar.TabBar +01030292=style/Widget.Material.Light.ActionBar.TabText +01030293=style/Widget.Material.Light.ActionBar.TabView +01030294=style/Widget.Material.Light.ActionButton +01030295=style/Widget.Material.Light.ActionButton.CloseMode +01030296=style/Widget.Material.Light.ActionButton.Overflow +01030297=style/Widget.Material.Light.ActionMode +01030298=style/Widget.Material.Light.AutoCompleteTextView +01030299=style/Widget.Material.Light.Button +0103029a=style/Widget.Material.Light.Button.Borderless +0103029b=style/Widget.Material.Light.Button.Borderless.Colored +0103029c=style/Widget.Material.Light.Button.Borderless.Small +0103029d=style/Widget.Material.Light.Button.Inset +0103029e=style/Widget.Material.Light.Button.Small +0103029f=style/Widget.Material.Light.Button.Toggle +010302a0=style/Widget.Material.Light.ButtonBar +010302a1=style/Widget.Material.Light.ButtonBar.AlertDialog +010302a2=style/Widget.Material.Light.CalendarView +010302a3=style/Widget.Material.Light.CheckedTextView +010302a4=style/Widget.Material.Light.CompoundButton.CheckBox +010302a5=style/Widget.Material.Light.CompoundButton.RadioButton +010302a6=style/Widget.Material.Light.CompoundButton.Star +010302a7=style/Widget.Material.Light.DatePicker +010302a8=style/Widget.Material.Light.DropDownItem +010302a9=style/Widget.Material.Light.DropDownItem.Spinner +010302aa=style/Widget.Material.Light.EditText +010302ab=style/Widget.Material.Light.ExpandableListView +010302ac=style/Widget.Material.Light.FastScroll +010302ad=style/Widget.Material.Light.GridView +010302ae=style/Widget.Material.Light.HorizontalScrollView +010302af=style/Widget.Material.Light.ImageButton +010302b0=style/Widget.Material.Light.ListPopupWindow +010302b1=style/Widget.Material.Light.ListView +010302b2=style/Widget.Material.Light.ListView.DropDown +010302b3=style/Widget.Material.Light.MediaRouteButton +010302b4=style/Widget.Material.Light.PopupMenu +010302b5=style/Widget.Material.Light.PopupMenu.Overflow +010302b6=style/Widget.Material.Light.PopupWindow +010302b7=style/Widget.Material.Light.ProgressBar +010302b8=style/Widget.Material.Light.ProgressBar.Horizontal +010302b9=style/Widget.Material.Light.ProgressBar.Inverse +010302ba=style/Widget.Material.Light.ProgressBar.Large +010302bb=style/Widget.Material.Light.ProgressBar.Large.Inverse +010302bc=style/Widget.Material.Light.ProgressBar.Small +010302bd=style/Widget.Material.Light.ProgressBar.Small.Inverse +010302be=style/Widget.Material.Light.ProgressBar.Small.Title +010302bf=style/Widget.Material.Light.RatingBar +010302c0=style/Widget.Material.Light.RatingBar.Indicator +010302c1=style/Widget.Material.Light.RatingBar.Small +010302c2=style/Widget.Material.Light.ScrollView +010302c3=style/Widget.Material.Light.SearchView +010302c4=style/Widget.Material.Light.SeekBar +010302c5=style/Widget.Material.Light.SegmentedButton +010302c6=style/Widget.Material.Light.StackView +010302c7=style/Widget.Material.Light.Spinner +010302c8=style/Widget.Material.Light.Spinner.Underlined +010302c9=style/Widget.Material.Light.Tab +010302ca=style/Widget.Material.Light.TabWidget +010302cb=style/Widget.Material.Light.TextView +010302cc=style/Widget.Material.Light.TextView.SpinnerItem +010302cd=style/Widget.Material.Light.TimePicker +010302ce=style/Widget.Material.Light.WebTextView +010302cf=style/Widget.Material.Light.WebView +010302d0=style/Theme.Leanback.FormWizard +010302d1=style/Theme.DeviceDefault.Dialog.Alert +010302d2=style/Theme.DeviceDefault.Light.Dialog.Alert +010302d3=style/Widget.Material.Button.Colored +010302d4=style/TextAppearance.Material.Widget.Button.Inverse +010302d5=style/Theme.Material.Light.LightStatusBar +010302d6=style/ThemeOverlay.Material.Dialog +010302d7=style/ThemeOverlay.Material.Dialog.Alert +010302d8=style/Theme.Material.Light.DialogWhenLarge.DarkActionBar +010302d9=style/Widget.Material.SeekBar.Discrete +010302da=style/Widget.Material.CompoundButton.Switch +010302db=style/Widget.Material.Light.CompoundButton.Switch +010302dc=style/Widget.Material.NumberPicker +010302dd=style/Widget.Material.Light.NumberPicker +010302de=style/TextAppearance.Material.Widget.Button.Colored +010302df=style/TextAppearance.Material.Widget.Button.Borderless.Colored +010302e0=style/Widget.DeviceDefault.Button.Colored +010302e1=style/Widget.DeviceDefault.Button.Borderless.Colored +010302e2=style/Theme.DeviceDefault.DocumentsUI +010302e3=style/Theme.DeviceDefault.DayNight +010302e4=style/ThemeOverlay.DeviceDefault.Accent.DayNight +010302e5=style/ActionBarButton +010302e6=style/ActionBarButtonTextAppearance +010302e7=style/ActionBarTitle +010302e8=style/ActiveWallpaperSettings +010302e9=style/AlertDialog +010302ea=style/AlertDialog.DeviceDefault +010302eb=style/AlertDialog.DeviceDefault.Light +010302ec=style/AlertDialog.Holo +010302ed=style/AlertDialog.Holo.Light +010302ee=style/AlertDialog.Leanback +010302ef=style/AlertDialog.Leanback.Light +010302f0=style/AlertDialog.Material +010302f1=style/AlertDialog.Material.Light +010302f2=style/Animation.DeviceDefault.Activity +010302f3=style/Animation.DeviceDefault.Activity.Resolver +010302f4=style/Animation.DeviceDefault.Dialog +010302f5=style/Animation.DropDownDown +010302f6=style/Animation.DropDownUp +010302f7=style/Animation.Holo +010302f8=style/Animation.Holo.Activity +010302f9=style/Animation.Holo.Dialog +010302fa=style/Animation.ImmersiveModeConfirmation +010302fb=style/Animation.InputMethodFancy +010302fc=style/Animation.LockScreen +010302fd=style/Animation.Material +010302fe=style/Animation.Material.Activity +010302ff=style/Animation.Material.Dialog +01030300=style/Animation.Material.Popup +01030301=style/Animation.OptionsPanel +01030302=style/Animation.PopupWindow +01030303=style/Animation.PopupWindow.ActionMode +01030304=style/Animation.RecentApplications +01030305=style/Animation.SearchBar +01030306=style/Animation.SubMenuPanel +01030307=style/Animation.TextSelectHandle +01030308=style/Animation.Tooltip +01030309=style/Animation.TypingFilter +0103030a=style/Animation.TypingFilterRestore +0103030b=style/Animation.VoiceActivity +0103030c=style/Animation.VoiceInteractionSession +0103030d=style/Animation.VolumePanel +0103030e=style/Animation.Wallpaper +0103030f=style/Animation.ZoomButtons +01030310=style/AutofillDatasetPicker +01030311=style/AutofillHalfScreenAnimation +01030312=style/AutofillSaveAnimation +01030313=style/BasePreferenceFragment +01030314=style/CarAction1 +01030315=style/CarAction1.Dark +01030316=style/CarAction1.Light +01030317=style/CarBody1 +01030318=style/CarBody1.Dark +01030319=style/CarBody1.Light +0103031a=style/CarBody2 +0103031b=style/CarBody2.Dark +0103031c=style/CarBody2.Light +0103031d=style/CarBody3 +0103031e=style/CarBody4 +0103031f=style/CarTitle +01030320=style/CarTitle.Dark +01030321=style/CarTitle.Light +01030322=style/DatePickerDialog.Material +01030323=style/DialogWindowTitle +01030324=style/DialogWindowTitle.DeviceDefault +01030325=style/DialogWindowTitle.DeviceDefault.Light +01030326=style/DialogWindowTitle.Holo +01030327=style/DialogWindowTitle.Holo.Light +01030328=style/DialogWindowTitle.Material +01030329=style/DialogWindowTitle.Material.Light +0103032a=style/DialogWindowTitleBackground +0103032b=style/DialogWindowTitleBackground.Material +0103032c=style/DialogWindowTitleBackground.Material.Light +0103032d=style/Holo +0103032e=style/Holo.Light +0103032f=style/LargePointer +01030330=style/Material +01030331=style/Material.Light +01030332=style/Notification.Header +01030333=style/NotificationAction +01030334=style/NotificationEmphasizedAction +01030335=style/NotificationMediaActionContainer +01030336=style/NotificationTombstoneAction +01030337=style/Pointer +01030338=style/Preference +01030339=style/Preference.Category +0103033a=style/Preference.CheckBoxPreference +0103033b=style/Preference.DeviceDefault +0103033c=style/Preference.DeviceDefault.Category +0103033d=style/Preference.DeviceDefault.CheckBoxPreference +0103033e=style/Preference.DeviceDefault.DialogPreference +0103033f=style/Preference.DeviceDefault.DialogPreference.EditTextPreference +01030340=style/Preference.DeviceDefault.DialogPreference.YesNoPreference +01030341=style/Preference.DeviceDefault.Information +01030342=style/Preference.DeviceDefault.PreferenceScreen +01030343=style/Preference.DeviceDefault.RingtonePreference +01030344=style/Preference.DeviceDefault.SeekBarPreference +01030345=style/Preference.DeviceDefault.SwitchPreference +01030346=style/Preference.DialogPreference +01030347=style/Preference.DialogPreference.EditTextPreference +01030348=style/Preference.DialogPreference.SeekBarPreference +01030349=style/Preference.DialogPreference.YesNoPreference +0103034a=style/Preference.Holo +0103034b=style/Preference.Holo.Category +0103034c=style/Preference.Holo.CheckBoxPreference +0103034d=style/Preference.Holo.DialogPreference +0103034e=style/Preference.Holo.DialogPreference.EditTextPreference +0103034f=style/Preference.Holo.DialogPreference.YesNoPreference +01030350=style/Preference.Holo.Information +01030351=style/Preference.Holo.PreferenceScreen +01030352=style/Preference.Holo.RingtonePreference +01030353=style/Preference.Holo.SeekBarPreference +01030354=style/Preference.Holo.SwitchPreference +01030355=style/Preference.Information +01030356=style/Preference.Material +01030357=style/Preference.Material.BasePreferenceScreen +01030358=style/Preference.Material.Category +01030359=style/Preference.Material.CheckBoxPreference +0103035a=style/Preference.Material.DialogPreference +0103035b=style/Preference.Material.DialogPreference.EditTextPreference +0103035c=style/Preference.Material.DialogPreference.SeekBarPreference +0103035d=style/Preference.Material.DialogPreference.YesNoPreference +0103035e=style/Preference.Material.Information +0103035f=style/Preference.Material.PreferenceScreen +01030360=style/Preference.Material.RingtonePreference +01030361=style/Preference.Material.SeekBarPreference +01030362=style/Preference.Material.SwitchPreference +01030363=style/Preference.PreferenceScreen +01030364=style/Preference.RingtonePreference +01030365=style/Preference.SeekBarPreference +01030366=style/Preference.SwitchPreference +01030367=style/PreferenceActivity +01030368=style/PreferenceActivity.Material +01030369=style/PreferenceFragment +0103036a=style/PreferenceFragment.Holo +0103036b=style/PreferenceFragment.Material +0103036c=style/PreferenceFragmentList +0103036d=style/PreferenceFragmentList.Material +0103036e=style/PreferenceHeaderList +0103036f=style/PreferenceHeaderList.Material +01030370=style/PreferenceHeaderPanel +01030371=style/PreferenceHeaderPanel.Material +01030372=style/PreferencePanel +01030373=style/PreferencePanel.Dialog +01030374=style/PreferencePanel.Material +01030375=style/PreferencePanel.Material.Dialog +01030376=style/PreviewWallpaperSettings +01030377=style/SegmentedButton +01030378=style/TextAppearance.AutoCorrectionSuggestion +01030379=style/TextAppearance.DeviceDefault.Body1 +0103037a=style/TextAppearance.DeviceDefault.Body2 +0103037b=style/TextAppearance.DeviceDefault.Caption +0103037c=style/TextAppearance.DeviceDefault.Display1 +0103037d=style/TextAppearance.DeviceDefault.Headline +0103037e=style/TextAppearance.DeviceDefault.ListItem +0103037f=style/TextAppearance.DeviceDefault.ListItemSecondary +01030380=style/TextAppearance.DeviceDefault.Notification +01030381=style/TextAppearance.DeviceDefault.Notification.Conversation.AppName +01030382=style/TextAppearance.DeviceDefault.Notification.Info +01030383=style/TextAppearance.DeviceDefault.Notification.Reply +01030384=style/TextAppearance.DeviceDefault.Notification.Time +01030385=style/TextAppearance.DeviceDefault.Notification.Title +01030386=style/TextAppearance.DeviceDefault.Subhead +01030387=style/TextAppearance.DeviceDefault.Title +01030388=style/TextAppearance.DeviceDefault.Widget.Button.Borderless.Colored +01030389=style/TextAppearance.DeviceDefault.Widget.Switch +0103038a=style/TextAppearance.DeviceDefault.Widget.Toolbar.Subtitle +0103038b=style/TextAppearance.DeviceDefault.Widget.Toolbar.Title +0103038c=style/TextAppearance.EasyCorrectSuggestion +0103038d=style/TextAppearance.Holo.CalendarViewWeekDayView +0103038e=style/TextAppearance.Holo.Light +0103038f=style/TextAppearance.Holo.Light.CalendarViewWeekDayView +01030390=style/TextAppearance.Holo.Light.DialogWindowTitle +01030391=style/TextAppearance.Holo.Light.Inverse +01030392=style/TextAppearance.Holo.Light.Large +01030393=style/TextAppearance.Holo.Light.Large.Inverse +01030394=style/TextAppearance.Holo.Light.Medium +01030395=style/TextAppearance.Holo.Light.Medium.Inverse +01030396=style/TextAppearance.Holo.Light.SearchResult +01030397=style/TextAppearance.Holo.Light.SearchResult.Subtitle +01030398=style/TextAppearance.Holo.Light.SearchResult.Title +01030399=style/TextAppearance.Holo.Light.Small +0103039a=style/TextAppearance.Holo.Light.Small.Inverse +0103039b=style/TextAppearance.Holo.Light.Widget +0103039c=style/TextAppearance.Holo.Light.Widget.ActionMode.Subtitle +0103039d=style/TextAppearance.Holo.Light.Widget.ActionMode.Title +0103039e=style/TextAppearance.Holo.Light.Widget.Button +0103039f=style/TextAppearance.Holo.Light.Widget.DropDownHint +010303a0=style/TextAppearance.Holo.Light.Widget.EditText +010303a1=style/TextAppearance.Holo.Light.Widget.PopupMenu +010303a2=style/TextAppearance.Holo.Light.Widget.PopupMenu.Large +010303a3=style/TextAppearance.Holo.Light.Widget.PopupMenu.Small +010303a4=style/TextAppearance.Holo.Light.Widget.Switch +010303a5=style/TextAppearance.Holo.Light.WindowTitle +010303a6=style/TextAppearance.Holo.SearchResult +010303a7=style/TextAppearance.Holo.SuggestionHighlight +010303a8=style/TextAppearance.Holo.Widget.ActionMode +010303a9=style/TextAppearance.Holo.Widget.Switch +010303aa=style/TextAppearance.Large.Inverse.NumberPickerInputText +010303ab=style/TextAppearance.Leanback.FormWizard +010303ac=style/TextAppearance.Leanback.FormWizard.Large +010303ad=style/TextAppearance.Leanback.FormWizard.ListItem +010303ae=style/TextAppearance.Leanback.FormWizard.Medium +010303af=style/TextAppearance.Leanback.FormWizard.Small +010303b0=style/TextAppearance.Material.DatePicker.DateLabel +010303b1=style/TextAppearance.Material.DatePicker.List.YearLabel +010303b2=style/TextAppearance.Material.DatePicker.List.YearLabel.Activated +010303b3=style/TextAppearance.Material.DatePicker.YearLabel +010303b4=style/TextAppearance.Material.ListItem +010303b5=style/TextAppearance.Material.ListItemSecondary +010303b6=style/TextAppearance.Material.Menu.Inverse +010303b7=style/TextAppearance.Material.Notification.Conversation.AppName +010303b8=style/TextAppearance.Material.Notification.Reply +010303b9=style/TextAppearance.Material.NumberPicker +010303ba=style/TextAppearance.Material.SearchResult +010303bb=style/TextAppearance.Material.Subhead.Inverse +010303bc=style/TextAppearance.Material.TextSuggestionHighlight +010303bd=style/TextAppearance.Material.TimePicker.AmPmLabel +010303be=style/TextAppearance.Material.TimePicker.InputField +010303bf=style/TextAppearance.Material.TimePicker.InputHeader +010303c0=style/TextAppearance.Material.TimePicker.PromptLabel +010303c1=style/TextAppearance.Material.TimePicker.TimeLabel +010303c2=style/TextAppearance.Material.Title.Inverse +010303c3=style/TextAppearance.Material.Widget.ActionBar.Menu.Inverse +010303c4=style/TextAppearance.Material.Widget.ActionMode +010303c5=style/TextAppearance.Material.Widget.Calendar.Day +010303c6=style/TextAppearance.Material.Widget.Calendar.DayOfWeek +010303c7=style/TextAppearance.Material.Widget.Calendar.Month +010303c8=style/TextAppearance.Material.Widget.PopupMenu.Header +010303c9=style/TextAppearance.Material.Widget.Switch +010303ca=style/TextAppearance.MisspelledSuggestion +010303cb=style/TextAppearance.SearchResult +010303cc=style/TextAppearance.SlidingTabActive +010303cd=style/TextAppearance.SlidingTabNormal +010303ce=style/TextAppearance.Small.CalendarViewWeekDayView +010303cf=style/TextAppearance.StatusBar +010303d0=style/TextAppearance.StatusBar.EventContent.Emphasis +010303d1=style/TextAppearance.StatusBar.EventContent.Info +010303d2=style/TextAppearance.StatusBar.EventContent.Line2 +010303d3=style/TextAppearance.StatusBar.EventContent.Time +010303d4=style/TextAppearance.StatusBar.Ticker +010303d5=style/TextAppearance.Suggestion +010303d6=style/TextAppearance.Toast +010303d7=style/TextAppearance.Tooltip +010303d8=style/TextAppearance.Widget.ActionBar.Subtitle +010303d9=style/TextAppearance.Widget.ActionBar.Title +010303da=style/TextAppearance.Widget.ActionMode.Subtitle +010303db=style/TextAppearance.Widget.ActionMode.Title +010303dc=style/TextAppearance.Widget.PopupMenu +010303dd=style/TextAppearance.Widget.Toolbar.Subtitle +010303de=style/TextAppearance.Widget.Toolbar.Title +010303df=style/Theme.DeviceDefault.Autofill +010303e0=style/Theme.DeviceDefault.Autofill.Light +010303e1=style/Theme.DeviceDefault.Autofill.Save +010303e2=style/Theme.DeviceDefault.Chooser +010303e3=style/Theme.DeviceDefault.Dialog.Alert.DayNight +010303e4=style/Theme.DeviceDefault.Dialog.AppError +010303e5=style/Theme.DeviceDefault.Dialog.FixedSize +010303e6=style/Theme.DeviceDefault.Dialog.NoActionBar.FixedSize +010303e7=style/Theme.DeviceDefault.Dialog.NoFrame +010303e8=style/Theme.DeviceDefault.Dialog.Presentation +010303e9=style/Theme.DeviceDefault.Light.Autofill +010303ea=style/Theme.DeviceDefault.Light.Autofill.Save +010303eb=style/Theme.DeviceDefault.Light.Dialog.Alert.UserSwitchingDialog +010303ec=style/Theme.DeviceDefault.Light.Dialog.FixedSize +010303ed=style/Theme.DeviceDefault.Light.Dialog.NoActionBar.FixedSize +010303ee=style/Theme.DeviceDefault.Light.Dialog.Presentation +010303ef=style/Theme.DeviceDefault.Light.SearchBar +010303f0=style/Theme.DeviceDefault.Light.Voice +010303f1=style/Theme.DeviceDefault.Notification +010303f2=style/Theme.DeviceDefault.QuickSettings +010303f3=style/Theme.DeviceDefault.QuickSettings.Dialog +010303f4=style/Theme.DeviceDefault.Resolver +010303f5=style/Theme.DeviceDefault.ResolverCommon +010303f6=style/Theme.DeviceDefault.SearchBar +010303f7=style/Theme.DeviceDefault.Settings.BaseDialog +010303f8=style/Theme.DeviceDefault.Settings.CompactMenu +010303f9=style/Theme.DeviceDefault.Settings.Dark.NoActionBar +010303fa=style/Theme.DeviceDefault.Settings.Dialog +010303fb=style/Theme.DeviceDefault.Settings.Dialog.Alert +010303fc=style/Theme.DeviceDefault.Settings.Dialog.NoActionBar +010303fd=style/Theme.DeviceDefault.Settings.Dialog.Presentation +010303fe=style/Theme.DeviceDefault.Settings.DialogBase +010303ff=style/Theme.DeviceDefault.Settings.DialogWhenLarge +01030400=style/Theme.DeviceDefault.Settings.DialogWhenLarge.NoActionBar +01030401=style/Theme.DeviceDefault.Settings.NoActionBar +01030402=style/Theme.DeviceDefault.Settings.SearchBar +01030403=style/Theme.DeviceDefault.System +01030404=style/Theme.DeviceDefault.System.Dialog +01030405=style/Theme.DeviceDefault.System.Dialog.Alert +01030406=style/Theme.DeviceDefault.VoiceInteractionSession +01030407=style/Theme.DeviceDefaultBase +01030408=style/Theme.Dialog.Alert +01030409=style/Theme.Dialog.Confirmation +0103040a=style/Theme.Dialog.NoFrame +0103040b=style/Theme.Dialog.RecentApplications +0103040c=style/Theme.Dream +0103040d=style/Theme.ExpandedMenu +0103040e=style/Theme.GlobalSearchBar +0103040f=style/Theme.Holo.CompactMenu +01030410=style/Theme.Holo.Dialog.Alert +01030411=style/Theme.Holo.Dialog.BaseAlert +01030412=style/Theme.Holo.Dialog.FixedSize +01030413=style/Theme.Holo.Dialog.NoActionBar.FixedSize +01030414=style/Theme.Holo.Dialog.NoFrame +01030415=style/Theme.Holo.Dialog.Presentation +01030416=style/Theme.Holo.Light.CompactMenu +01030417=style/Theme.Holo.Light.Dialog.Alert +01030418=style/Theme.Holo.Light.Dialog.BaseAlert +01030419=style/Theme.Holo.Light.Dialog.FixedSize +0103041a=style/Theme.Holo.Light.Dialog.NoActionBar.FixedSize +0103041b=style/Theme.Holo.Light.Dialog.Presentation +0103041c=style/Theme.Holo.Light.SearchBar +0103041d=style/Theme.Holo.SearchBar +0103041e=style/Theme.IconMenu +0103041f=style/Theme.Leanback.Dialog +01030420=style/Theme.Leanback.Dialog.Alert +01030421=style/Theme.Leanback.Dialog.AppError +01030422=style/Theme.Leanback.Dialog.Confirmation +01030423=style/Theme.Leanback.Light.Dialog +01030424=style/Theme.Leanback.Light.Dialog.Alert +01030425=style/Theme.Leanback.Resolver +01030426=style/Theme.Leanback.Settings.Dialog +01030427=style/Theme.Leanback.Settings.Dialog.Alert +01030428=style/Theme.Material.BaseDialog +01030429=style/Theme.Material.CompactMenu +0103042a=style/Theme.Material.Dialog.BaseAlert +0103042b=style/Theme.Material.Dialog.FixedSize +0103042c=style/Theme.Material.Dialog.NoActionBar.FixedSize +0103042d=style/Theme.Material.Dialog.NoFrame +0103042e=style/Theme.Material.Light.BaseDialog +0103042f=style/Theme.Material.Light.CompactMenu +01030430=style/Theme.Material.Light.Dialog.BaseAlert +01030431=style/Theme.Material.Light.Dialog.FixedSize +01030432=style/Theme.Material.Light.Dialog.NoActionBar.FixedSize +01030433=style/Theme.Material.Light.SearchBar +01030434=style/Theme.Material.Notification +01030435=style/Theme.Material.SearchBar +01030436=style/Theme.Material.Settings.BaseDialog +01030437=style/Theme.Material.Settings.CompactMenu +01030438=style/Theme.Material.Settings.Dialog +01030439=style/Theme.Material.Settings.Dialog.Alert +0103043a=style/Theme.Material.Settings.Dialog.BaseAlert +0103043b=style/Theme.Material.Settings.Dialog.Presentation +0103043c=style/Theme.Material.Settings.DialogWhenLarge +0103043d=style/Theme.Material.Settings.DialogWhenLarge.NoActionBar +0103043e=style/Theme.Material.Settings.NoActionBar +0103043f=style/Theme.Material.Settings.SearchBar +01030440=style/Theme.Material.VoiceInteractionSession +01030441=style/Theme.SearchBar +01030442=style/Theme.Toast +01030443=style/Theme.VoiceInteractionSession +01030444=style/ThemeOverlay.DeviceDefault +01030445=style/ThemeOverlay.DeviceDefault.Accent +01030446=style/ThemeOverlay.DeviceDefault.Accent.Light +01030447=style/ThemeOverlay.DeviceDefault.ActionBar +01030448=style/ThemeOverlay.DeviceDefault.Dark.ActionBar.Accent +01030449=style/ThemeOverlay.DeviceDefault.Popup.Light +0103044a=style/ThemeOverlay.Material.BaseDialog +0103044b=style/ThemeOverlay.Material.Dialog.DatePicker +0103044c=style/ThemeOverlay.Material.Dialog.TimePicker +0103044d=style/TimePickerDialog.Material +0103044e=style/Widget.ActionMode +0103044f=style/Widget.ActivityChooserView +01030450=style/Widget.Button.Transparent +01030451=style/Widget.CheckedTextView +01030452=style/Widget.CompoundButton.Switch +01030453=style/Widget.DeviceDefault.AbsListView +01030454=style/Widget.DeviceDefault.Button.ButtonBar.AlertDialog +01030455=style/Widget.DeviceDefault.CompoundButton.Switch +01030456=style/Widget.DeviceDefault.ExpandableListView.White +01030457=style/Widget.DeviceDefault.FragmentBreadCrumbs +01030458=style/Widget.DeviceDefault.Gallery +01030459=style/Widget.DeviceDefault.GestureOverlayView +0103045a=style/Widget.DeviceDefault.ImageWell +0103045b=style/Widget.DeviceDefault.KeyboardView +0103045c=style/Widget.DeviceDefault.Light.AbsListView +0103045d=style/Widget.DeviceDefault.Light.Button.Borderless +0103045e=style/Widget.DeviceDefault.Light.DatePicker +0103045f=style/Widget.DeviceDefault.Light.ExpandableListView.White +01030460=style/Widget.DeviceDefault.Light.FragmentBreadCrumbs +01030461=style/Widget.DeviceDefault.Light.Gallery +01030462=style/Widget.DeviceDefault.Light.GestureOverlayView +01030463=style/Widget.DeviceDefault.Light.ImageWell +01030464=style/Widget.DeviceDefault.Light.ListView.White +01030465=style/Widget.DeviceDefault.Light.NumberPicker +01030466=style/Widget.DeviceDefault.Light.PopupWindow.ActionMode +01030467=style/Widget.DeviceDefault.Light.Spinner.DropDown +01030468=style/Widget.DeviceDefault.Light.Spinner.DropDown.ActionBar +01030469=style/Widget.DeviceDefault.Light.TextView.ListSeparator +0103046a=style/Widget.DeviceDefault.Light.TimePicker +0103046b=style/Widget.DeviceDefault.ListView.White +0103046c=style/Widget.DeviceDefault.Notification.MessagingName +0103046d=style/Widget.DeviceDefault.Notification.MessagingText +0103046e=style/Widget.DeviceDefault.Notification.Text +0103046f=style/Widget.DeviceDefault.NumberPicker +01030470=style/Widget.DeviceDefault.PopupWindow.ActionMode +01030471=style/Widget.DeviceDefault.PreferenceFrameLayout +01030472=style/Widget.DeviceDefault.ProgressBar.Inverse +01030473=style/Widget.DeviceDefault.ProgressBar.Large.Inverse +01030474=style/Widget.DeviceDefault.ProgressBar.Small.Inverse +01030475=style/Widget.DeviceDefault.QuickContactBadge.WindowLarge +01030476=style/Widget.DeviceDefault.QuickContactBadge.WindowMedium +01030477=style/Widget.DeviceDefault.QuickContactBadge.WindowSmall +01030478=style/Widget.DeviceDefault.QuickContactBadgeSmall.WindowLarge +01030479=style/Widget.DeviceDefault.QuickContactBadgeSmall.WindowMedium +0103047a=style/Widget.DeviceDefault.QuickContactBadgeSmall.WindowSmall +0103047b=style/Widget.DeviceDefault.Resolver.TabWidget +0103047c=style/Widget.DeviceDefault.Spinner.DropDown +0103047d=style/Widget.DeviceDefault.Spinner.DropDown.ActionBar +0103047e=style/Widget.DeviceDefault.TextSelectHandle +0103047f=style/Widget.DeviceDefault.TextView.ListSeparator +01030480=style/Widget.DeviceDefault.TimePicker +01030481=style/Widget.DeviceDefault.Toolbar +01030482=style/Widget.ExpandableListView.White +01030483=style/Widget.GenericQuickContactBadge +01030484=style/Widget.GestureOverlayView +01030485=style/Widget.GestureOverlayView.White +01030486=style/Widget.Holo.AbsListView +01030487=style/Widget.Holo.ActivityChooserView +01030488=style/Widget.Holo.ButtonBar +01030489=style/Widget.Holo.ButtonBar.Button +0103048a=style/Widget.Holo.CompoundButton +0103048b=style/Widget.Holo.CompoundButton.Switch +0103048c=style/Widget.Holo.ExpandableListView.White +0103048d=style/Widget.Holo.FastScroll +0103048e=style/Widget.Holo.FragmentBreadCrumbs +0103048f=style/Widget.Holo.Gallery +01030490=style/Widget.Holo.GestureOverlayView +01030491=style/Widget.Holo.ImageWell +01030492=style/Widget.Holo.KeyboardView +01030493=style/Widget.Holo.Light.AbsListView +01030494=style/Widget.Holo.Light.ActivityChooserView +01030495=style/Widget.Holo.Light.Button.Borderless +01030496=style/Widget.Holo.Light.CompoundButton.Switch +01030497=style/Widget.Holo.Light.DatePicker +01030498=style/Widget.Holo.Light.ExpandableListView.White +01030499=style/Widget.Holo.Light.FastScroll +0103049a=style/Widget.Holo.Light.FragmentBreadCrumbs +0103049b=style/Widget.Holo.Light.Gallery +0103049c=style/Widget.Holo.Light.GestureOverlayView +0103049d=style/Widget.Holo.Light.ImageWell +0103049e=style/Widget.Holo.Light.KeyboardView +0103049f=style/Widget.Holo.Light.ListView.White +010304a0=style/Widget.Holo.Light.NumberPicker +010304a1=style/Widget.Holo.Light.PopupWindow.ActionMode +010304a2=style/Widget.Holo.Light.QuickContactBadge.WindowLarge +010304a3=style/Widget.Holo.Light.QuickContactBadge.WindowMedium +010304a4=style/Widget.Holo.Light.QuickContactBadge.WindowSmall +010304a5=style/Widget.Holo.Light.QuickContactBadgeSmall.WindowLarge +010304a6=style/Widget.Holo.Light.QuickContactBadgeSmall.WindowMedium +010304a7=style/Widget.Holo.Light.QuickContactBadgeSmall.WindowSmall +010304a8=style/Widget.Holo.Light.SearchView +010304a9=style/Widget.Holo.Light.Spinner.DropDown +010304aa=style/Widget.Holo.Light.Spinner.DropDown.ActionBar +010304ab=style/Widget.Holo.Light.StackView +010304ac=style/Widget.Holo.Light.TextSelectHandle +010304ad=style/Widget.Holo.Light.TextView.ListSeparator +010304ae=style/Widget.Holo.Light.TimePicker +010304af=style/Widget.Holo.ListView.White +010304b0=style/Widget.Holo.NumberPicker +010304b1=style/Widget.Holo.PopupWindow.ActionMode +010304b2=style/Widget.Holo.PreferenceFrameLayout +010304b3=style/Widget.Holo.ProgressBar.Inverse +010304b4=style/Widget.Holo.ProgressBar.Large.Inverse +010304b5=style/Widget.Holo.ProgressBar.Small.Inverse +010304b6=style/Widget.Holo.QuickContactBadge.WindowLarge +010304b7=style/Widget.Holo.QuickContactBadge.WindowMedium +010304b8=style/Widget.Holo.QuickContactBadge.WindowSmall +010304b9=style/Widget.Holo.QuickContactBadgeSmall.WindowLarge +010304ba=style/Widget.Holo.QuickContactBadgeSmall.WindowMedium +010304bb=style/Widget.Holo.QuickContactBadgeSmall.WindowSmall +010304bc=style/Widget.Holo.SearchView +010304bd=style/Widget.Holo.Spinner.DropDown +010304be=style/Widget.Holo.Spinner.DropDown.ActionBar +010304bf=style/Widget.Holo.StackView +010304c0=style/Widget.Holo.SuggestionButton +010304c1=style/Widget.Holo.SuggestionItem +010304c2=style/Widget.Holo.TabText +010304c3=style/Widget.Holo.TextSelectHandle +010304c4=style/Widget.Holo.TextView.ListSeparator +010304c5=style/Widget.Holo.TimePicker +010304c6=style/Widget.HorizontalScrollView +010304c7=style/Widget.Leanback.DatePicker +010304c8=style/Widget.Leanback.NumberPicker +010304c9=style/Widget.Leanback.TimePicker +010304ca=style/Widget.LockPatternView +010304cb=style/Widget.Magnifier +010304cc=style/Widget.Material.AbsListView +010304cd=style/Widget.Material.ActivityChooserView +010304ce=style/Widget.Material.Button.ButtonBar.AlertDialog +010304cf=style/Widget.Material.CompoundButton +010304d0=style/Widget.Material.ContextPopupMenu +010304d1=style/Widget.Material.ExpandableListView.White +010304d2=style/Widget.Material.FragmentBreadCrumbs +010304d3=style/Widget.Material.Gallery +010304d4=style/Widget.Material.GestureOverlayView +010304d5=style/Widget.Material.ImageWell +010304d6=style/Widget.Material.KeyboardView +010304d7=style/Widget.Material.Light.AbsListView +010304d8=style/Widget.Material.Light.ActivityChooserView +010304d9=style/Widget.Material.Light.Button.ButtonBar.AlertDialog +010304da=style/Widget.Material.Light.CompoundButton +010304db=style/Widget.Material.Light.ExpandableListView.White +010304dc=style/Widget.Material.Light.FragmentBreadCrumbs +010304dd=style/Widget.Material.Light.Gallery +010304de=style/Widget.Material.Light.GestureOverlayView +010304df=style/Widget.Material.Light.ImageWell +010304e0=style/Widget.Material.Light.KeyboardView +010304e1=style/Widget.Material.Light.ListView.White +010304e2=style/Widget.Material.Light.PopupWindow.ActionMode +010304e3=style/Widget.Material.Light.QuickContactBadge.WindowLarge +010304e4=style/Widget.Material.Light.QuickContactBadge.WindowMedium +010304e5=style/Widget.Material.Light.QuickContactBadge.WindowSmall +010304e6=style/Widget.Material.Light.QuickContactBadgeSmall.WindowLarge +010304e7=style/Widget.Material.Light.QuickContactBadgeSmall.WindowMedium +010304e8=style/Widget.Material.Light.QuickContactBadgeSmall.WindowSmall +010304e9=style/Widget.Material.Light.SearchView.ActionBar +010304ea=style/Widget.Material.Light.Spinner.DropDown +010304eb=style/Widget.Material.Light.Spinner.DropDown.ActionBar +010304ec=style/Widget.Material.Light.TextSelectHandle +010304ed=style/Widget.Material.Light.TextView.ListSeparator +010304ee=style/Widget.Material.ListMenuView +010304ef=style/Widget.Material.ListView.White +010304f0=style/Widget.Material.Notification.MessagingName +010304f1=style/Widget.Material.Notification.MessagingText +010304f2=style/Widget.Material.Notification.ProgressBar +010304f3=style/Widget.Material.Notification.Text +010304f4=style/Widget.Material.PopupWindow.ActionMode +010304f5=style/Widget.Material.PreferenceFrameLayout +010304f6=style/Widget.Material.ProgressBar.Inverse +010304f7=style/Widget.Material.ProgressBar.Large.Inverse +010304f8=style/Widget.Material.ProgressBar.Small.Inverse +010304f9=style/Widget.Material.QuickContactBadge.WindowLarge +010304fa=style/Widget.Material.QuickContactBadge.WindowMedium +010304fb=style/Widget.Material.QuickContactBadge.WindowSmall +010304fc=style/Widget.Material.QuickContactBadgeSmall.WindowLarge +010304fd=style/Widget.Material.QuickContactBadgeSmall.WindowMedium +010304fe=style/Widget.Material.QuickContactBadgeSmall.WindowSmall +010304ff=style/Widget.Material.Resolver.Tab +01030500=style/Widget.Material.SearchView.ActionBar +01030501=style/Widget.Material.Spinner.DropDown +01030502=style/Widget.Material.Spinner.DropDown.ActionBar +01030503=style/Widget.Material.SuggestionButton +01030504=style/Widget.Material.SuggestionItem +01030505=style/Widget.Material.TabText +01030506=style/Widget.Material.TextSelectHandle +01030507=style/Widget.Material.TextView.ListSeparator +01030508=style/Widget.NumberPicker +01030509=style/Widget.PreferenceFrameLayout +0103050a=style/Widget.ProgressBar.Small.Title +0103050b=style/Widget.QuickContactBadge +0103050c=style/Widget.QuickContactBadge.WindowLarge +0103050d=style/Widget.QuickContactBadge.WindowMedium +0103050e=style/Widget.QuickContactBadge.WindowSmall +0103050f=style/Widget.QuickContactBadgeSmall +01030510=style/Widget.QuickContactBadgeSmall.WindowLarge +01030511=style/Widget.QuickContactBadgeSmall.WindowMedium +01030512=style/Widget.QuickContactBadgeSmall.WindowSmall +01030513=style/Widget.RatingBar.Indicator +01030514=style/Widget.RatingBar.Small +01030515=style/Widget.TextSelectHandle +01030516=style/Widget.TextView.ListSeparator +01030517=style/Widget.TextView.ListSeparator.White +01030518=style/Widget.TimePicker +01030519=style/Widget.WebTextView +0103051a=style/WindowAnimationStyle.Leanback.Setup +0103051b=style/WindowTitle +0103051c=style/WindowTitle.DeviceDefault +0103051d=style/WindowTitle.Holo +0103051e=style/WindowTitle.Material +0103051f=style/WindowTitleBackground +01030520=style/WindowTitleBackground.DeviceDefault +01030521=style/WindowTitleBackground.Holo +01030522=style/WindowTitleBackground.Material +01030523=style/ZoomControls +01030524=style/aerr_list_item +01040000=string/cancel +01040001=string/copy +01040002=string/copyUrl +01040003=string/cut +01040004=string/defaultVoiceMailAlphaTag +01040005=string/defaultMsisdnAlphaTag +01040006=string/emptyPhoneNumber +01040007=string/httpErrorBadUrl +01040008=string/httpErrorUnsupportedScheme +01040009=string/no +0104000a=string/ok +0104000b=string/paste +0104000c=string/search_go +0104000d=string/selectAll +0104000e=string/unknownName +0104000f=string/untitled +01040010=string/VideoView_error_button +01040011=string/VideoView_error_text_unknown +01040012=string/VideoView_error_title +01040013=string/yes +01040014=string/dialog_alert_title +01040015=string/VideoView_error_text_invalid_progressive_playback +01040016=string/selectTextMode +01040017=string/status_bar_notification_info_overflow +01040018=string/fingerprint_icon_content_description +01040019=string/paste_as_plain_text +0104001a=string/autofill +0104001b=string/config_helpPackageNameKey +0104001c=string/config_helpPackageNameValue +0104001d=string/config_helpIntentExtraKey +0104001e=string/config_helpIntentNameKey +0104001f=string/config_feedbackIntentExtraKey +01040020=string/config_feedbackIntentNameKey +01040021=string/config_defaultAssistant +01040022=string/config_defaultBrowser +01040023=string/config_defaultDialer +01040024=string/config_defaultSms +01040025=string/config_defaultCallRedirection +01040026=string/config_defaultCallScreening +01040027=string/config_systemGallery +01040028=string/BaMmi +01040029=string/CLIRDefaultOffNextCallOff +0104002a=string/CLIRDefaultOffNextCallOn +0104002b=string/CLIRDefaultOnNextCallOff +0104002c=string/CLIRDefaultOnNextCallOn +0104002d=string/CLIRPermanent +0104002e=string/CfMmi +0104002f=string/ClipMmi +01040030=string/ClirMmi +01040031=string/CndMmi +01040032=string/CnipMmi +01040033=string/CnirMmi +01040034=string/ColpMmi +01040035=string/ColrMmi +01040036=string/CwMmi +01040037=string/DndMmi +01040038=string/EmergencyCallWarningSummary +01040039=string/EmergencyCallWarningTitle +0104003a=string/Midnight +0104003b=string/NetworkPreferenceSwitchSummary +0104003c=string/NetworkPreferenceSwitchTitle +0104003d=string/Noon +0104003e=string/PERSOSUBSTATE_RUIM_CORPORATE_ENTRY +0104003f=string/PERSOSUBSTATE_RUIM_CORPORATE_ERROR +01040040=string/PERSOSUBSTATE_RUIM_CORPORATE_IN_PROGRESS +01040041=string/PERSOSUBSTATE_RUIM_CORPORATE_PUK_ENTRY +01040042=string/PERSOSUBSTATE_RUIM_CORPORATE_PUK_ERROR +01040043=string/PERSOSUBSTATE_RUIM_CORPORATE_PUK_IN_PROGRESS +01040044=string/PERSOSUBSTATE_RUIM_CORPORATE_PUK_SUCCESS +01040045=string/PERSOSUBSTATE_RUIM_CORPORATE_SUCCESS +01040046=string/PERSOSUBSTATE_RUIM_HRPD_ENTRY +01040047=string/PERSOSUBSTATE_RUIM_HRPD_ERROR +01040048=string/PERSOSUBSTATE_RUIM_HRPD_IN_PROGRESS +01040049=string/PERSOSUBSTATE_RUIM_HRPD_PUK_ENTRY +0104004a=string/PERSOSUBSTATE_RUIM_HRPD_PUK_ERROR +0104004b=string/PERSOSUBSTATE_RUIM_HRPD_PUK_IN_PROGRESS +0104004c=string/PERSOSUBSTATE_RUIM_HRPD_PUK_SUCCESS +0104004d=string/PERSOSUBSTATE_RUIM_HRPD_SUCCESS +0104004e=string/PERSOSUBSTATE_RUIM_NETWORK1_ENTRY +0104004f=string/PERSOSUBSTATE_RUIM_NETWORK1_ERROR +01040050=string/PERSOSUBSTATE_RUIM_NETWORK1_IN_PROGRESS +01040051=string/PERSOSUBSTATE_RUIM_NETWORK1_PUK_ENTRY +01040052=string/PERSOSUBSTATE_RUIM_NETWORK1_PUK_ERROR +01040053=string/PERSOSUBSTATE_RUIM_NETWORK1_PUK_IN_PROGRESS +01040054=string/PERSOSUBSTATE_RUIM_NETWORK1_PUK_SUCCESS +01040055=string/PERSOSUBSTATE_RUIM_NETWORK1_SUCCESS +01040056=string/PERSOSUBSTATE_RUIM_NETWORK2_ENTRY +01040057=string/PERSOSUBSTATE_RUIM_NETWORK2_ERROR +01040058=string/PERSOSUBSTATE_RUIM_NETWORK2_IN_PROGRESS +01040059=string/PERSOSUBSTATE_RUIM_NETWORK2_PUK_ENTRY +0104005a=string/PERSOSUBSTATE_RUIM_NETWORK2_PUK_ERROR +0104005b=string/PERSOSUBSTATE_RUIM_NETWORK2_PUK_IN_PROGRESS +0104005c=string/PERSOSUBSTATE_RUIM_NETWORK2_PUK_SUCCESS +0104005d=string/PERSOSUBSTATE_RUIM_NETWORK2_SUCCESS +0104005e=string/PERSOSUBSTATE_RUIM_RUIM_ENTRY +0104005f=string/PERSOSUBSTATE_RUIM_RUIM_ERROR +01040060=string/PERSOSUBSTATE_RUIM_RUIM_IN_PROGRESS +01040061=string/PERSOSUBSTATE_RUIM_RUIM_PUK_ENTRY +01040062=string/PERSOSUBSTATE_RUIM_RUIM_PUK_ERROR +01040063=string/PERSOSUBSTATE_RUIM_RUIM_PUK_IN_PROGRESS +01040064=string/PERSOSUBSTATE_RUIM_RUIM_PUK_SUCCESS +01040065=string/PERSOSUBSTATE_RUIM_RUIM_SUCCESS +01040066=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_ENTRY +01040067=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_ERROR +01040068=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_IN_PROGRESS +01040069=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK_ENTRY +0104006a=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK_ERROR +0104006b=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK_IN_PROGRESS +0104006c=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK_SUCCESS +0104006d=string/PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_SUCCESS +0104006e=string/PERSOSUBSTATE_SIM_CORPORATE_ENTRY +0104006f=string/PERSOSUBSTATE_SIM_CORPORATE_ERROR +01040070=string/PERSOSUBSTATE_SIM_CORPORATE_IN_PROGRESS +01040071=string/PERSOSUBSTATE_SIM_CORPORATE_PUK_ENTRY +01040072=string/PERSOSUBSTATE_SIM_CORPORATE_PUK_ERROR +01040073=string/PERSOSUBSTATE_SIM_CORPORATE_PUK_IN_PROGRESS +01040074=string/PERSOSUBSTATE_SIM_CORPORATE_PUK_SUCCESS +01040075=string/PERSOSUBSTATE_SIM_CORPORATE_SUCCESS +01040076=string/PERSOSUBSTATE_SIM_ICCID_ENTRY +01040077=string/PERSOSUBSTATE_SIM_ICCID_ERROR +01040078=string/PERSOSUBSTATE_SIM_ICCID_IN_PROGRESS +01040079=string/PERSOSUBSTATE_SIM_ICCID_SUCCESS +0104007a=string/PERSOSUBSTATE_SIM_IMPI_ENTRY +0104007b=string/PERSOSUBSTATE_SIM_IMPI_ERROR +0104007c=string/PERSOSUBSTATE_SIM_IMPI_IN_PROGRESS +0104007d=string/PERSOSUBSTATE_SIM_IMPI_SUCCESS +0104007e=string/PERSOSUBSTATE_SIM_NETWORK_ENTRY +0104007f=string/PERSOSUBSTATE_SIM_NETWORK_ERROR +01040080=string/PERSOSUBSTATE_SIM_NETWORK_IN_PROGRESS +01040081=string/PERSOSUBSTATE_SIM_NETWORK_PUK_ENTRY +01040082=string/PERSOSUBSTATE_SIM_NETWORK_PUK_ERROR +01040083=string/PERSOSUBSTATE_SIM_NETWORK_PUK_IN_PROGRESS +01040084=string/PERSOSUBSTATE_SIM_NETWORK_PUK_SUCCESS +01040085=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_ENTRY +01040086=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_ERROR +01040087=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_IN_PROGRESS +01040088=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK_ENTRY +01040089=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK_ERROR +0104008a=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK_IN_PROGRESS +0104008b=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK_SUCCESS +0104008c=string/PERSOSUBSTATE_SIM_NETWORK_SUBSET_SUCCESS +0104008d=string/PERSOSUBSTATE_SIM_NETWORK_SUCCESS +0104008e=string/PERSOSUBSTATE_SIM_NS_SP_ENTRY +0104008f=string/PERSOSUBSTATE_SIM_NS_SP_ERROR +01040090=string/PERSOSUBSTATE_SIM_NS_SP_IN_PROGRESS +01040091=string/PERSOSUBSTATE_SIM_NS_SP_SUCCESS +01040092=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_ENTRY +01040093=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_ERROR +01040094=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_IN_PROGRESS +01040095=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK_ENTRY +01040096=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK_ERROR +01040097=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK_IN_PROGRESS +01040098=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK_SUCCESS +01040099=string/PERSOSUBSTATE_SIM_SERVICE_PROVIDER_SUCCESS +0104009a=string/PERSOSUBSTATE_SIM_SIM_ENTRY +0104009b=string/PERSOSUBSTATE_SIM_SIM_ERROR +0104009c=string/PERSOSUBSTATE_SIM_SIM_IN_PROGRESS +0104009d=string/PERSOSUBSTATE_SIM_SIM_PUK_ENTRY +0104009e=string/PERSOSUBSTATE_SIM_SIM_PUK_ERROR +0104009f=string/PERSOSUBSTATE_SIM_SIM_PUK_IN_PROGRESS +010400a0=string/PERSOSUBSTATE_SIM_SIM_PUK_SUCCESS +010400a1=string/PERSOSUBSTATE_SIM_SIM_SUCCESS +010400a2=string/PERSOSUBSTATE_SIM_SPN_ENTRY +010400a3=string/PERSOSUBSTATE_SIM_SPN_ERROR +010400a4=string/PERSOSUBSTATE_SIM_SPN_IN_PROGRESS +010400a5=string/PERSOSUBSTATE_SIM_SPN_SUCCESS +010400a6=string/PERSOSUBSTATE_SIM_SP_EHPLMN_ENTRY +010400a7=string/PERSOSUBSTATE_SIM_SP_EHPLMN_ERROR +010400a8=string/PERSOSUBSTATE_SIM_SP_EHPLMN_IN_PROGRESS +010400a9=string/PERSOSUBSTATE_SIM_SP_EHPLMN_SUCCESS +010400aa=string/PinMmi +010400ab=string/PwdMmi +010400ac=string/RestrictedOnAllVoiceTitle +010400ad=string/RestrictedOnDataTitle +010400ae=string/RestrictedOnEmergencyTitle +010400af=string/RestrictedOnNormalTitle +010400b0=string/RestrictedStateContent +010400b1=string/RestrictedStateContentMsimTemplate +010400b2=string/RuacMmi +010400b3=string/SetupCallDefault +010400b4=string/ThreeWCMmi +010400b5=string/accept +010400b6=string/accessibility_binding_label +010400b7=string/accessibility_button_instructional_text +010400b8=string/accessibility_button_prompt_text +010400b9=string/accessibility_dialog_button_allow +010400ba=string/accessibility_dialog_button_deny +010400bb=string/accessibility_edit_shortcut_menu_button_title +010400bc=string/accessibility_edit_shortcut_menu_volume_title +010400bd=string/accessibility_enable_service_encryption_warning +010400be=string/accessibility_enable_service_title +010400bf=string/accessibility_freeform_caption +010400c0=string/accessibility_gesture_3finger_instructional_text +010400c1=string/accessibility_gesture_3finger_prompt_text +010400c2=string/accessibility_gesture_instructional_text +010400c3=string/accessibility_gesture_prompt_text +010400c4=string/accessibility_magnification_chooser_text +010400c5=string/accessibility_select_shortcut_menu_title +010400c6=string/accessibility_service_action_perform_description +010400c7=string/accessibility_service_action_perform_title +010400c8=string/accessibility_service_screen_control_description +010400c9=string/accessibility_service_screen_control_title +010400ca=string/accessibility_service_warning_description +010400cb=string/accessibility_shortcut_disabling_service +010400cc=string/accessibility_shortcut_enabling_service +010400cd=string/accessibility_shortcut_menu_item_status_off +010400ce=string/accessibility_shortcut_menu_item_status_on +010400cf=string/accessibility_shortcut_multiple_service_list +010400d0=string/accessibility_shortcut_multiple_service_warning +010400d1=string/accessibility_shortcut_multiple_service_warning_title +010400d2=string/accessibility_shortcut_off +010400d3=string/accessibility_shortcut_on +010400d4=string/accessibility_shortcut_single_service_warning +010400d5=string/accessibility_shortcut_single_service_warning_title +010400d6=string/accessibility_shortcut_spoken_feedback +010400d7=string/accessibility_shortcut_toogle_warning +010400d8=string/accessibility_shortcut_warning_dialog_title +010400d9=string/accessibility_system_action_back_label +010400da=string/accessibility_system_action_hardware_a11y_shortcut_label +010400db=string/accessibility_system_action_home_label +010400dc=string/accessibility_system_action_lock_screen_label +010400dd=string/accessibility_system_action_notifications_label +010400de=string/accessibility_system_action_on_screen_a11y_shortcut_chooser_label +010400df=string/accessibility_system_action_on_screen_a11y_shortcut_label +010400e0=string/accessibility_system_action_power_dialog_label +010400e1=string/accessibility_system_action_quick_settings_label +010400e2=string/accessibility_system_action_recents_label +010400e3=string/accessibility_system_action_screenshot_label +010400e4=string/accessibility_uncheck_legacy_item_warning +010400e5=string/action_bar_home_description +010400e6=string/action_bar_home_description_format +010400e7=string/action_bar_home_subtitle_description_format +010400e8=string/action_bar_up_description +010400e9=string/action_menu_overflow_description +010400ea=string/action_mode_done +010400eb=string/activity_chooser_view_dialog_title_default +010400ec=string/activity_chooser_view_see_all +010400ed=string/activity_list_empty +010400ee=string/activity_resolver_use_always +010400ef=string/activity_resolver_use_once +010400f0=string/activity_resolver_work_profiles_support +010400f1=string/activitychooserview_choose_application +010400f2=string/activitychooserview_choose_application_error +010400f3=string/adb_active_notification_message +010400f4=string/adb_active_notification_title +010400f5=string/adb_debugging_notification_channel_tv +010400f6=string/adbwifi_active_notification_message +010400f7=string/adbwifi_active_notification_title +010400f8=string/addToDictionary +010400f9=string/add_account_button_label +010400fa=string/add_account_label +010400fb=string/aerr_application +010400fc=string/aerr_application_repeated +010400fd=string/aerr_close +010400fe=string/aerr_close_app +010400ff=string/aerr_mute +01040100=string/aerr_process +01040101=string/aerr_process_repeated +01040102=string/aerr_report +01040103=string/aerr_restart +01040104=string/aerr_wait +01040105=string/alert_windows_notification_channel_group_name +01040106=string/alert_windows_notification_channel_name +01040107=string/alert_windows_notification_message +01040108=string/alert_windows_notification_title +01040109=string/alert_windows_notification_turn_off_action +0104010a=string/allow +0104010b=string/allow_while_in_use_permission_in_fgs +0104010c=string/alternate_eri_file +0104010d=string/alwaysUse +0104010e=string/android_preparing_apk +0104010f=string/android_start_title +01040110=string/android_system_label +01040111=string/android_upgrading_apk +01040112=string/android_upgrading_complete +01040113=string/android_upgrading_fstrim +01040114=string/android_upgrading_notification_title +01040115=string/android_upgrading_starting_apps +01040116=string/android_upgrading_title +01040117=string/anr_activity_application +01040118=string/anr_activity_process +01040119=string/anr_application_process +0104011a=string/anr_process +0104011b=string/anr_title +0104011c=string/app_blocked_message +0104011d=string/app_blocked_title +0104011e=string/app_category_audio +0104011f=string/app_category_game +01040120=string/app_category_image +01040121=string/app_category_maps +01040122=string/app_category_news +01040123=string/app_category_productivity +01040124=string/app_category_social +01040125=string/app_category_video +01040126=string/app_info +01040127=string/app_not_found +01040128=string/app_running_notification_text +01040129=string/app_running_notification_title +0104012a=string/app_suspended_default_message +0104012b=string/app_suspended_more_details +0104012c=string/app_suspended_title +0104012d=string/app_suspended_unsuspend_message +0104012e=string/app_upgrading_toast +0104012f=string/as_app_forced_to_restricted_bucket +01040130=string/autofill_address_line_1_label_re +01040131=string/autofill_address_line_1_re +01040132=string/autofill_address_line_2_re +01040133=string/autofill_address_line_3_re +01040134=string/autofill_address_name_separator +01040135=string/autofill_address_summary_format +01040136=string/autofill_address_summary_name_format +01040137=string/autofill_address_summary_separator +01040138=string/autofill_address_type_same_as_re +01040139=string/autofill_address_type_use_my_re +0104013a=string/autofill_area +0104013b=string/autofill_area_code_notext_re +0104013c=string/autofill_area_code_re +0104013d=string/autofill_attention_ignored_re +0104013e=string/autofill_billing_designator_re +0104013f=string/autofill_card_cvc_re +01040140=string/autofill_card_ignored_re +01040141=string/autofill_card_number_re +01040142=string/autofill_city_re +01040143=string/autofill_company_re +01040144=string/autofill_continue_yes +01040145=string/autofill_country_code_re +01040146=string/autofill_country_re +01040147=string/autofill_county +01040148=string/autofill_department +01040149=string/autofill_district +0104014a=string/autofill_email_re +0104014b=string/autofill_emirate +0104014c=string/autofill_error_cannot_autofill +0104014d=string/autofill_expiration_date_re +0104014e=string/autofill_expiration_month_re +0104014f=string/autofill_fax_re +01040150=string/autofill_first_name_re +01040151=string/autofill_island +01040152=string/autofill_last_name_re +01040153=string/autofill_middle_initial_re +01040154=string/autofill_middle_name_re +01040155=string/autofill_name_on_card_contextual_re +01040156=string/autofill_name_on_card_re +01040157=string/autofill_name_re +01040158=string/autofill_name_specific_re +01040159=string/autofill_parish +0104015a=string/autofill_phone_extension_re +0104015b=string/autofill_phone_prefix_re +0104015c=string/autofill_phone_prefix_separator_re +0104015d=string/autofill_phone_re +0104015e=string/autofill_phone_suffix_re +0104015f=string/autofill_phone_suffix_separator_re +01040160=string/autofill_picker_accessibility_title +01040161=string/autofill_picker_no_suggestions +01040162=string/autofill_postal_code +01040163=string/autofill_prefecture +01040164=string/autofill_province +01040165=string/autofill_region_ignored_re +01040166=string/autofill_save_accessibility_title +01040167=string/autofill_save_never +01040168=string/autofill_save_no +01040169=string/autofill_save_notnow +0104016a=string/autofill_save_title +0104016b=string/autofill_save_title_with_2types +0104016c=string/autofill_save_title_with_3types +0104016d=string/autofill_save_title_with_type +0104016e=string/autofill_save_type_address +0104016f=string/autofill_save_type_credit_card +01040170=string/autofill_save_type_debit_card +01040171=string/autofill_save_type_email_address +01040172=string/autofill_save_type_generic_card +01040173=string/autofill_save_type_password +01040174=string/autofill_save_type_payment_card +01040175=string/autofill_save_type_username +01040176=string/autofill_save_yes +01040177=string/autofill_shipping_designator_re +01040178=string/autofill_state +01040179=string/autofill_state_re +0104017a=string/autofill_this_form +0104017b=string/autofill_update_title +0104017c=string/autofill_update_title_with_2types +0104017d=string/autofill_update_title_with_3types +0104017e=string/autofill_update_title_with_type +0104017f=string/autofill_update_yes +01040180=string/autofill_username_re +01040181=string/autofill_window_title +01040182=string/autofill_zip_4_re +01040183=string/autofill_zip_code +01040184=string/autofill_zip_code_re +01040185=string/back_button_label +01040186=string/badPin +01040187=string/badPuk +01040188=string/battery_saver_charged_notification_summary +01040189=string/battery_saver_description +0104018a=string/battery_saver_description_with_learn_more +0104018b=string/battery_saver_notification_channel_name +0104018c=string/battery_saver_off_notification_title +0104018d=string/beforeOneMonthDurationPast +0104018e=string/biometric_dialog_default_title +0104018f=string/biometric_error_canceled +01040190=string/biometric_error_device_not_secured +01040191=string/biometric_error_hw_unavailable +01040192=string/biometric_error_user_canceled +01040193=string/biometric_not_recognized +01040194=string/bluetooth_a2dp_audio_route_name +01040195=string/bluetooth_airplane_mode_toast +01040196=string/bugreport_message +01040197=string/bugreport_option_full_summary +01040198=string/bugreport_option_full_title +01040199=string/bugreport_option_interactive_summary +0104019a=string/bugreport_option_interactive_title +0104019b=string/bugreport_screenshot_failure_toast +0104019c=string/bugreport_screenshot_success_toast +0104019d=string/bugreport_status +0104019e=string/bugreport_title +0104019f=string/byteShort +010401a0=string/candidates_style +010401a1=string/capability_desc_canCaptureFingerprintGestures +010401a2=string/capability_desc_canControlMagnification +010401a3=string/capability_desc_canPerformGestures +010401a4=string/capability_desc_canRequestFilterKeyEvents +010401a5=string/capability_desc_canRequestTouchExploration +010401a6=string/capability_desc_canRetrieveWindowContent +010401a7=string/capability_desc_canTakeScreenshot +010401a8=string/capability_title_canCaptureFingerprintGestures +010401a9=string/capability_title_canControlMagnification +010401aa=string/capability_title_canPerformGestures +010401ab=string/capability_title_canRequestFilterKeyEvents +010401ac=string/capability_title_canRequestTouchExploration +010401ad=string/capability_title_canRetrieveWindowContent +010401ae=string/capability_title_canTakeScreenshot +010401af=string/capital_off +010401b0=string/capital_on +010401b1=string/car_loading_profile +010401b2=string/car_mode_disable_notification_message +010401b3=string/car_mode_disable_notification_title +010401b4=string/carrier_app_notification_text +010401b5=string/carrier_app_notification_title +010401b6=string/cfTemplateForwarded +010401b7=string/cfTemplateForwardedTime +010401b8=string/cfTemplateNotForwarded +010401b9=string/cfTemplateRegistered +010401ba=string/cfTemplateRegisteredTime +010401bb=string/checked +010401bc=string/chooseActivity +010401bd=string/chooseUsbActivity +010401be=string/choose_account_label +010401bf=string/chooser_all_apps_button_label +010401c0=string/chooser_no_direct_share_targets +010401c1=string/chooser_wallpaper +010401c2=string/clearDefaultHintMsg +010401c3=string/close_button_text +010401c4=string/color_correction_feature_name +010401c5=string/color_inversion_feature_name +010401c6=string/common_last_name_prefixes +010401c7=string/common_name +010401c8=string/common_name_conjunctions +010401c9=string/common_name_prefixes +010401ca=string/common_name_suffixes +010401cb=string/condition_provider_service_binding_label +010401cc=string/conference_call +010401cd=string/config_UsbDeviceConnectionHandling_component +010401ce=string/config_activityRecognitionHardwarePackageName +010401cf=string/config_appsAuthorizedForSharedAccounts +010401d0=string/config_appsNotReportingCrashes +010401d1=string/config_bandwidthEstimateSource +010401d2=string/config_batterySaverDeviceSpecificConfig +010401d3=string/config_batterySaverScheduleProvider +010401d4=string/config_batterymeterBoltPath +010401d5=string/config_batterymeterErrorPerimeterPath +010401d6=string/config_batterymeterFillMask +010401d7=string/config_batterymeterPerimeterPath +010401d8=string/config_batterymeterPowersavePath +010401d9=string/config_bodyFontFamily +010401da=string/config_bodyFontFamilyMedium +010401db=string/config_cameraLaunchGestureSensorStringType +010401dc=string/config_cameraLiftTriggerSensorStringType +010401dd=string/config_carrierAppInstallDialogComponent +010401de=string/config_chooseAccountActivity +010401df=string/config_chooseTypeAndAccountActivity +010401e0=string/config_chooserActivity +010401e1=string/config_companionDeviceManagerPackage +010401e2=string/config_controlsPackage +010401e3=string/config_customAdbPublicKeyConfirmationComponent +010401e4=string/config_customAdbPublicKeyConfirmationSecondaryUserComponent +010401e5=string/config_customAdbWifiNetworkConfirmationComponent +010401e6=string/config_customAdbWifiNetworkConfirmationSecondaryUserComponent +010401e7=string/config_customCountryDetector +010401e8=string/config_customMediaKeyDispatcher +010401e9=string/config_customResolverActivity +010401ea=string/config_customSessionPolicyProvider +010401eb=string/config_customVpnAlwaysOnDisconnectedDialogComponent +010401ec=string/config_customVpnConfirmDialogComponent +010401ed=string/config_dataUsageSummaryComponent +010401ee=string/config_datause_iface +010401ef=string/config_defaultAccessibilityService +010401f0=string/config_defaultAppPredictionService +010401f1=string/config_defaultAssistantAccessComponent +010401f2=string/config_defaultAttentionService +010401f3=string/config_defaultAugmentedAutofillService +010401f4=string/config_defaultAutofillService +010401f5=string/config_defaultBugReportHandlerApp +010401f6=string/config_defaultContentCaptureService +010401f7=string/config_defaultContentSuggestionsService +010401f8=string/config_defaultDndAccessPackages +010401f9=string/config_defaultListenerAccessPackages +010401fa=string/config_defaultModuleMetadataProvider +010401fb=string/config_defaultNearbySharingComponent +010401fc=string/config_defaultNetworkRecommendationProviderPackage +010401fd=string/config_defaultNetworkScorerPackageName +010401fe=string/config_defaultPictureInPictureScreenEdgeInsets +010401ff=string/config_defaultSupervisionProfileOwnerComponent +01040200=string/config_defaultSystemCaptionsManagerService +01040201=string/config_defaultSystemCaptionsService +01040202=string/config_defaultTextClassifierPackage +01040203=string/config_defaultTrustAgent +01040204=string/config_defaultWellbeingPackage +01040205=string/config_default_dns_server +01040206=string/config_deviceConfiguratorPackageName +01040207=string/config_deviceProvisioningPackage +01040208=string/config_deviceSpecificAudioService +01040209=string/config_deviceSpecificDevicePolicyManagerService +0104020a=string/config_deviceSpecificDisplayAreaPolicyProvider +0104020b=string/config_displayLightSensorType +0104020c=string/config_displayWhiteBalanceColorTemperatureSensorName +0104020d=string/config_doubleTouchGestureEnableFile +0104020e=string/config_dozeComponent +0104020f=string/config_dozeDoubleTapSensorType +01040210=string/config_dozeLongPressSensorType +01040211=string/config_dozeTapSensorType +01040212=string/config_dreamsDefaultComponent +01040213=string/config_emergency_call_number +01040214=string/config_emergency_dialer_package +01040215=string/config_ethernet_iface_regex +01040216=string/config_ethernet_tcp_buffers +01040217=string/config_factoryResetPackage +01040218=string/config_foldedArea +01040219=string/config_forceVoiceInteractionServicePackage +0104021a=string/config_fusedLocationProviderPackageName +0104021b=string/config_geocoderProviderPackageName +0104021c=string/config_geofenceProviderPackageName +0104021d=string/config_headlineFontFamily +0104021e=string/config_headlineFontFamilyMedium +0104021f=string/config_headlineFontFeatureSettings +01040220=string/config_iccHotswapPromptForRestartDialogComponent +01040221=string/config_icon_mask +01040222=string/config_inCallNotificationSound +01040223=string/config_incidentReportApproverPackage +01040224=string/config_inputEventCompatProcessorOverrideClassName +01040225=string/config_isoImagePath +01040226=string/config_keyguardComponent +01040227=string/config_mainBuiltInDisplayCutout +01040228=string/config_mainBuiltInDisplayCutoutRectApproximation +01040229=string/config_managed_provisioning_package +0104022a=string/config_mediaProjectionPermissionDialogComponent +0104022b=string/config_misprovisionedBrandValue +0104022c=string/config_misprovisionedDeviceModel +0104022d=string/config_mms_user_agent +0104022e=string/config_mms_user_agent_profile_url +0104022f=string/config_mobile_hotspot_provision_app_no_ui +01040230=string/config_mobile_hotspot_provision_response +01040231=string/config_networkCaptivePortalServerUrl +01040232=string/config_networkLocationProviderPackageName +01040233=string/config_networkOverLimitComponent +01040234=string/config_networkPolicyNotificationComponent +01040235=string/config_ntpServer +01040236=string/config_overrideComponentUiPackage +01040237=string/config_packagedKeyboardName +01040238=string/config_pdp_reject_dialog_title +01040239=string/config_pdp_reject_multi_conn_to_same_pdn_not_allowed +0104023a=string/config_pdp_reject_service_not_subscribed +0104023b=string/config_pdp_reject_user_authentication_failed +0104023c=string/config_persistentDataPackageName +0104023d=string/config_platformVpnConfirmDialogComponent +0104023e=string/config_powerSaveModeChangedListenerPackage +0104023f=string/config_qualified_networks_service_class +01040240=string/config_qualified_networks_service_package +01040241=string/config_radio_access_family +01040242=string/config_rawContactsLocalAccountName +01040243=string/config_rawContactsLocalAccountType +01040244=string/config_recentsComponentName +01040245=string/config_retailDemoPackage +01040246=string/config_retailDemoPackageSignature +01040247=string/config_screenRecorderComponent +01040248=string/config_screenshotErrorReceiverComponent +01040249=string/config_screenshotServiceComponent +0104024a=string/config_secondaryHomePackage +0104024b=string/config_servicesExtensionPackage +0104024c=string/config_signalXPath +0104024d=string/config_slicePermissionComponent +0104024e=string/config_somnambulatorComponent +0104024f=string/config_systemUIServiceComponent +01040250=string/config_timeZoneRulesDataPackage +01040251=string/config_timeZoneRulesUpdaterPackage +01040252=string/config_tvRemoteServicePackage +01040253=string/config_usbAccessoryUriActivity +01040254=string/config_usbConfirmActivity +01040255=string/config_usbContaminantActivity +01040256=string/config_usbPermissionActivity +01040257=string/config_usbResolverActivity +01040258=string/config_useragentprofile_url +01040259=string/config_wallpaperCropperPackage +0104025a=string/config_wallpaperManagerServiceName +0104025b=string/config_wifi_tether_enable +0104025c=string/config_wimaxManagerClassname +0104025d=string/config_wimaxNativeLibLocation +0104025e=string/config_wimaxServiceClassname +0104025f=string/config_wimaxServiceJarLocation +01040260=string/config_wimaxStateTrackerClassname +01040261=string/config_wlan_data_service_class +01040262=string/config_wlan_data_service_package +01040263=string/config_wlan_network_service_class +01040264=string/config_wlan_network_service_package +01040265=string/config_wwan_data_service_class +01040266=string/config_wwan_data_service_package +01040267=string/config_wwan_network_service_class +01040268=string/config_wwan_network_service_package +01040269=string/confirm_battery_saver +0104026a=string/console_running_notification_message +0104026b=string/console_running_notification_title +0104026c=string/contentServiceSync +0104026d=string/contentServiceSyncNotificationTitle +0104026e=string/contentServiceTooManyDeletesNotificationDesc +0104026f=string/content_description_sliding_handle +01040270=string/conversation_single_line_image_placeholder +01040271=string/conversation_single_line_name_display +01040272=string/conversation_title_fallback_group_chat +01040273=string/conversation_title_fallback_one_to_one +01040274=string/copied +01040275=string/country_detector +01040276=string/country_selection_title +01040277=string/create_contact_using +01040278=string/data_saver_description +01040279=string/data_saver_enable_button +0104027a=string/data_saver_enable_title +0104027b=string/data_usage_limit_body +0104027c=string/data_usage_limit_snoozed_body +0104027d=string/data_usage_mobile_limit_snoozed_title +0104027e=string/data_usage_mobile_limit_title +0104027f=string/data_usage_rapid_app_body +01040280=string/data_usage_rapid_body +01040281=string/data_usage_rapid_title +01040282=string/data_usage_restricted_body +01040283=string/data_usage_restricted_title +01040284=string/data_usage_warning_body +01040285=string/data_usage_warning_title +01040286=string/data_usage_wifi_limit_snoozed_title +01040287=string/data_usage_wifi_limit_title +01040288=string/date_and_time +01040289=string/date_picker_day_of_week_typeface +0104028a=string/date_picker_day_typeface +0104028b=string/date_picker_decrement_day_button +0104028c=string/date_picker_decrement_month_button +0104028d=string/date_picker_decrement_year_button +0104028e=string/date_picker_dialog_title +0104028f=string/date_picker_increment_day_button +01040290=string/date_picker_increment_month_button +01040291=string/date_picker_increment_year_button +01040292=string/date_picker_mode +01040293=string/date_picker_month_typeface +01040294=string/date_picker_next_month_button +01040295=string/date_picker_prev_month_button +01040296=string/date_time +01040297=string/date_time_done +01040298=string/date_time_set +01040299=string/day +0104029a=string/days +0104029b=string/db_default_journal_mode +0104029c=string/db_default_sync_mode +0104029d=string/db_wal_sync_mode +0104029e=string/decline +0104029f=string/decline_remote_bugreport_action +010402a0=string/default_audio_route_category_name +010402a1=string/default_audio_route_name +010402a2=string/default_audio_route_name_dock_speakers +010402a3=string/default_audio_route_name_hdmi +010402a4=string/default_audio_route_name_headphones +010402a5=string/default_audio_route_name_usb +010402a6=string/default_browser +010402a7=string/default_notification_channel_label +010402a8=string/default_sms_application +010402a9=string/default_wallpaper_component +010402aa=string/delete +010402ab=string/deleteText +010402ac=string/deleted_key +010402ad=string/demo_restarting_message +010402ae=string/demo_starting_message +010402af=string/deny +010402b0=string/deprecated_target_sdk_app_store +010402b1=string/deprecated_target_sdk_message +010402b2=string/description_target_unlock_tablet +010402b3=string/device_ownership_relinquished +010402b4=string/device_storage_monitor_notification_channel +010402b5=string/dial_number_using +010402b6=string/disable_accessibility_shortcut +010402b7=string/display_manager_built_in_display_name +010402b8=string/display_manager_hdmi_display_name +010402b9=string/display_manager_overlay_display_name +010402ba=string/display_manager_overlay_display_secure_suffix +010402bb=string/display_manager_overlay_display_title +010402bc=string/dlg_ok +010402bd=string/done_accessibility_shortcut_menu_button +010402be=string/done_label +010402bf=string/double_tap_toast +010402c0=string/dump_heap_notification +010402c1=string/dump_heap_notification_detail +010402c2=string/dump_heap_ready_notification +010402c3=string/dump_heap_ready_text +010402c4=string/dump_heap_system_text +010402c5=string/dump_heap_text +010402c6=string/dump_heap_title +010402c7=string/dynamic_mode_notification_channel_name +010402c8=string/dynamic_mode_notification_summary +010402c9=string/dynamic_mode_notification_title +010402ca=string/editTextMenuTitle +010402cb=string/edit_accessibility_shortcut_menu_button +010402cc=string/elapsed_time_short_format_h_mm_ss +010402cd=string/elapsed_time_short_format_mm_ss +010402ce=string/emailTypeCustom +010402cf=string/emailTypeHome +010402d0=string/emailTypeMobile +010402d1=string/emailTypeOther +010402d2=string/emailTypeWork +010402d3=string/emergency_call_dialog_number_for_display +010402d4=string/emergency_calls_only +010402d5=string/enablePin +010402d6=string/enable_explore_by_touch_warning_message +010402d7=string/enable_explore_by_touch_warning_title +010402d8=string/error_message_change_not_allowed +010402d9=string/error_message_title +010402da=string/etws_primary_default_message_earthquake +010402db=string/etws_primary_default_message_earthquake_and_tsunami +010402dc=string/etws_primary_default_message_others +010402dd=string/etws_primary_default_message_test +010402de=string/etws_primary_default_message_tsunami +010402df=string/eventTypeAnniversary +010402e0=string/eventTypeBirthday +010402e1=string/eventTypeCustom +010402e2=string/eventTypeOther +010402e3=string/expand_action_accessibility +010402e4=string/expand_button_content_description_collapsed +010402e5=string/expand_button_content_description_expanded +010402e6=string/expires_on +010402e7=string/ext_media_badremoval_notification_message +010402e8=string/ext_media_badremoval_notification_title +010402e9=string/ext_media_browse_action +010402ea=string/ext_media_checking_notification_message +010402eb=string/ext_media_checking_notification_title +010402ec=string/ext_media_init_action +010402ed=string/ext_media_missing_message +010402ee=string/ext_media_missing_title +010402ef=string/ext_media_move_failure_message +010402f0=string/ext_media_move_failure_title +010402f1=string/ext_media_move_specific_title +010402f2=string/ext_media_move_success_message +010402f3=string/ext_media_move_success_title +010402f4=string/ext_media_move_title +010402f5=string/ext_media_new_notification_message +010402f6=string/ext_media_new_notification_title +010402f7=string/ext_media_nomedia_notification_message +010402f8=string/ext_media_nomedia_notification_title +010402f9=string/ext_media_ready_notification_message +010402fa=string/ext_media_seamless_action +010402fb=string/ext_media_status_bad_removal +010402fc=string/ext_media_status_checking +010402fd=string/ext_media_status_ejecting +010402fe=string/ext_media_status_formatting +010402ff=string/ext_media_status_missing +01040300=string/ext_media_status_mounted +01040301=string/ext_media_status_mounted_ro +01040302=string/ext_media_status_removed +01040303=string/ext_media_status_unmountable +01040304=string/ext_media_status_unmounted +01040305=string/ext_media_status_unsupported +01040306=string/ext_media_unmount_action +01040307=string/ext_media_unmountable_notification_message +01040308=string/ext_media_unmountable_notification_title +01040309=string/ext_media_unmounting_notification_message +0104030a=string/ext_media_unmounting_notification_title +0104030b=string/ext_media_unsupported_notification_message +0104030c=string/ext_media_unsupported_notification_title +0104030d=string/extract_edit_menu_button +0104030e=string/face_acquired_insufficient +0104030f=string/face_acquired_not_detected +01040310=string/face_acquired_obscured +01040311=string/face_acquired_pan_too_extreme +01040312=string/face_acquired_poor_gaze +01040313=string/face_acquired_recalibrate +01040314=string/face_acquired_roll_too_extreme +01040315=string/face_acquired_sensor_dirty +01040316=string/face_acquired_tilt_too_extreme +01040317=string/face_acquired_too_bright +01040318=string/face_acquired_too_close +01040319=string/face_acquired_too_dark +0104031a=string/face_acquired_too_different +0104031b=string/face_acquired_too_far +0104031c=string/face_acquired_too_high +0104031d=string/face_acquired_too_left +0104031e=string/face_acquired_too_low +0104031f=string/face_acquired_too_much_motion +01040320=string/face_acquired_too_right +01040321=string/face_acquired_too_similar +01040322=string/face_authenticated_confirmation_required +01040323=string/face_authenticated_no_confirmation_required +01040324=string/face_error_canceled +01040325=string/face_error_hw_not_available +01040326=string/face_error_hw_not_present +01040327=string/face_error_lockout +01040328=string/face_error_lockout_permanent +01040329=string/face_error_no_space +0104032a=string/face_error_not_enrolled +0104032b=string/face_error_security_update_required +0104032c=string/face_error_timeout +0104032d=string/face_error_unable_to_process +0104032e=string/face_error_user_canceled +0104032f=string/face_icon_content_description +01040330=string/face_name_template +01040331=string/face_recalibrate_notification_content +01040332=string/face_recalibrate_notification_name +01040333=string/face_recalibrate_notification_title +01040334=string/faceunlock_multiple_failures +01040335=string/factory_reset_message +01040336=string/factory_reset_warning +01040337=string/factorytest_failed +01040338=string/factorytest_no_action +01040339=string/factorytest_not_system +0104033a=string/factorytest_reboot +0104033b=string/failed_to_copy_to_clipboard +0104033c=string/fast_scroll_alphabet +0104033d=string/fast_scroll_numeric_alphabet +0104033e=string/fcComplete +0104033f=string/fcError +01040340=string/fileSizeSuffix +01040341=string/find +01040342=string/find_next +01040343=string/find_on_page +01040344=string/find_previous +01040345=string/fingerprint_acquired_imager_dirty +01040346=string/fingerprint_acquired_insufficient +01040347=string/fingerprint_acquired_partial +01040348=string/fingerprint_acquired_too_fast +01040349=string/fingerprint_acquired_too_slow +0104034a=string/fingerprint_authenticated +0104034b=string/fingerprint_error_canceled +0104034c=string/fingerprint_error_hw_not_available +0104034d=string/fingerprint_error_hw_not_present +0104034e=string/fingerprint_error_lockout +0104034f=string/fingerprint_error_lockout_permanent +01040350=string/fingerprint_error_no_fingerprints +01040351=string/fingerprint_error_no_space +01040352=string/fingerprint_error_security_update_required +01040353=string/fingerprint_error_timeout +01040354=string/fingerprint_error_unable_to_process +01040355=string/fingerprint_error_user_canceled +01040356=string/fingerprint_name_template +01040357=string/fingerprints +01040358=string/floating_toolbar_close_overflow_description +01040359=string/floating_toolbar_open_overflow_description +0104035a=string/font_family_body_1_material +0104035b=string/font_family_body_2_material +0104035c=string/font_family_button_material +0104035d=string/font_family_caption_material +0104035e=string/font_family_display_1_material +0104035f=string/font_family_display_2_material +01040360=string/font_family_display_3_material +01040361=string/font_family_display_4_material +01040362=string/font_family_headline_material +01040363=string/font_family_menu_material +01040364=string/font_family_subhead_material +01040365=string/font_family_title_material +01040366=string/force_close +01040367=string/foreground_service_app_in_background +01040368=string/foreground_service_apps_in_background +01040369=string/foreground_service_multiple_separator +0104036a=string/foreground_service_tap_for_details +0104036b=string/forward_intent_to_owner +0104036c=string/forward_intent_to_work +0104036d=string/gadget_host_error_inflating +0104036e=string/gigabyteShort +0104036f=string/global_action_assist +01040370=string/global_action_bug_report +01040371=string/global_action_emergency +01040372=string/global_action_lock +01040373=string/global_action_lockdown +01040374=string/global_action_logout +01040375=string/global_action_power_off +01040376=string/global_action_power_options +01040377=string/global_action_restart +01040378=string/global_action_screenshot +01040379=string/global_action_settings +0104037a=string/global_action_silent_mode_off_status +0104037b=string/global_action_silent_mode_on_status +0104037c=string/global_action_toggle_silent_mode +0104037d=string/global_action_voice_assist +0104037e=string/global_actions +0104037f=string/global_actions_airplane_mode_off_status +01040380=string/global_actions_airplane_mode_on_status +01040381=string/global_actions_toggle_airplane_mode +01040382=string/gnss_nfw_notification_message_carrier +01040383=string/gnss_nfw_notification_message_oem +01040384=string/gnss_nfw_notification_title +01040385=string/gpsNotifMessage +01040386=string/gpsNotifTicker +01040387=string/gpsNotifTitle +01040388=string/gpsVerifNo +01040389=string/gpsVerifYes +0104038a=string/grant_credentials_permission_message_footer +0104038b=string/grant_credentials_permission_message_header +0104038c=string/grant_permissions_header_text +0104038d=string/granularity_label_character +0104038e=string/granularity_label_line +0104038f=string/granularity_label_link +01040390=string/granularity_label_word +01040391=string/gsm_alphabet_default_charset +01040392=string/hardware +01040393=string/harmful_app_warning_open_anyway +01040394=string/harmful_app_warning_title +01040395=string/harmful_app_warning_uninstall +01040396=string/heavy_weight_notification +01040397=string/heavy_weight_notification_detail +01040398=string/heavy_weight_switcher_text +01040399=string/heavy_weight_switcher_title +0104039a=string/hour +0104039b=string/hour_picker_description +0104039c=string/hours +0104039d=string/httpError +0104039e=string/httpErrorAuth +0104039f=string/httpErrorConnect +010403a0=string/httpErrorFailedSslHandshake +010403a1=string/httpErrorFile +010403a2=string/httpErrorFileNotFound +010403a3=string/httpErrorIO +010403a4=string/httpErrorLookup +010403a5=string/httpErrorOk +010403a6=string/httpErrorProxyAuth +010403a7=string/httpErrorRedirectLoop +010403a8=string/httpErrorTimeout +010403a9=string/httpErrorTooManyRequests +010403aa=string/httpErrorUnsupportedAuthScheme +010403ab=string/icu_abbrev_wday_month_day_no_year +010403ac=string/imProtocolAim +010403ad=string/imProtocolCustom +010403ae=string/imProtocolGoogleTalk +010403af=string/imProtocolIcq +010403b0=string/imProtocolJabber +010403b1=string/imProtocolMsn +010403b2=string/imProtocolNetMeeting +010403b3=string/imProtocolQq +010403b4=string/imProtocolSkype +010403b5=string/imProtocolYahoo +010403b6=string/imTypeCustom +010403b7=string/imTypeHome +010403b8=string/imTypeOther +010403b9=string/imTypeWork +010403ba=string/image_wallpaper_component +010403bb=string/ime_action_default +010403bc=string/ime_action_done +010403bd=string/ime_action_go +010403be=string/ime_action_next +010403bf=string/ime_action_previous +010403c0=string/ime_action_search +010403c1=string/ime_action_send +010403c2=string/imei +010403c3=string/immersive_cling_description +010403c4=string/immersive_cling_positive +010403c5=string/immersive_cling_title +010403c6=string/importance_from_person +010403c7=string/importance_from_user +010403c8=string/inputMethod +010403c9=string/input_method_binding_label +010403ca=string/install_carrier_app_notification_button +010403cb=string/install_carrier_app_notification_text +010403cc=string/install_carrier_app_notification_text_app_name +010403cd=string/install_carrier_app_notification_title +010403ce=string/invalidPin +010403cf=string/invalidPuk +010403d0=string/issued_by +010403d1=string/issued_on +010403d2=string/issued_to +010403d3=string/js_dialog_before_unload +010403d4=string/js_dialog_before_unload_negative_button +010403d5=string/js_dialog_before_unload_positive_button +010403d6=string/js_dialog_before_unload_title +010403d7=string/js_dialog_title +010403d8=string/js_dialog_title_default +010403d9=string/keyboardview_keycode_alt +010403da=string/keyboardview_keycode_cancel +010403db=string/keyboardview_keycode_delete +010403dc=string/keyboardview_keycode_done +010403dd=string/keyboardview_keycode_enter +010403de=string/keyboardview_keycode_mode_change +010403df=string/keyboardview_keycode_shift +010403e0=string/keygaurd_accessibility_media_controls +010403e1=string/keyguard_accessibility_add_widget +010403e2=string/keyguard_accessibility_camera +010403e3=string/keyguard_accessibility_expand_lock_area +010403e4=string/keyguard_accessibility_face_unlock +010403e5=string/keyguard_accessibility_password_unlock +010403e6=string/keyguard_accessibility_pattern_area +010403e7=string/keyguard_accessibility_pattern_unlock +010403e8=string/keyguard_accessibility_pin_unlock +010403e9=string/keyguard_accessibility_sim_pin_unlock +010403ea=string/keyguard_accessibility_sim_puk_unlock +010403eb=string/keyguard_accessibility_slide_area +010403ec=string/keyguard_accessibility_slide_unlock +010403ed=string/keyguard_accessibility_status +010403ee=string/keyguard_accessibility_unlock_area_collapsed +010403ef=string/keyguard_accessibility_unlock_area_expanded +010403f0=string/keyguard_accessibility_user_selector +010403f1=string/keyguard_accessibility_widget +010403f2=string/keyguard_accessibility_widget_changed +010403f3=string/keyguard_accessibility_widget_deleted +010403f4=string/keyguard_accessibility_widget_empty_slot +010403f5=string/keyguard_accessibility_widget_reorder_end +010403f6=string/keyguard_accessibility_widget_reorder_start +010403f7=string/keyguard_label_text +010403f8=string/keyguard_password_enter_password_code +010403f9=string/keyguard_password_enter_pin_code +010403fa=string/keyguard_password_enter_pin_password_code +010403fb=string/keyguard_password_enter_pin_prompt +010403fc=string/keyguard_password_enter_puk_code +010403fd=string/keyguard_password_enter_puk_prompt +010403fe=string/keyguard_password_entry_touch_hint +010403ff=string/keyguard_password_wrong_pin_code +01040400=string/kg_enter_confirm_pin_hint +01040401=string/kg_failed_attempts_almost_at_login +01040402=string/kg_failed_attempts_almost_at_wipe +01040403=string/kg_failed_attempts_now_wiping +01040404=string/kg_forgot_pattern_button_text +01040405=string/kg_invalid_confirm_pin_hint +01040406=string/kg_invalid_puk +01040407=string/kg_invalid_sim_pin_hint +01040408=string/kg_invalid_sim_puk_hint +01040409=string/kg_login_account_recovery_hint +0104040a=string/kg_login_checking_password +0104040b=string/kg_login_instructions +0104040c=string/kg_login_invalid_input +0104040d=string/kg_login_password_hint +0104040e=string/kg_login_submit_button +0104040f=string/kg_login_too_many_attempts +01040410=string/kg_login_username_hint +01040411=string/kg_password_instructions +01040412=string/kg_password_wrong_pin_code +01040413=string/kg_pattern_instructions +01040414=string/kg_pin_instructions +01040415=string/kg_puk_enter_pin_hint +01040416=string/kg_puk_enter_puk_hint +01040417=string/kg_reordering_delete_drop_target_text +01040418=string/kg_sim_pin_instructions +01040419=string/kg_sim_unlock_progress_dialog_message +0104041a=string/kg_text_message_separator +0104041b=string/kg_too_many_failed_password_attempts_dialog_message +0104041c=string/kg_too_many_failed_pattern_attempts_dialog_message +0104041d=string/kg_too_many_failed_pin_attempts_dialog_message +0104041e=string/kg_wrong_password +0104041f=string/kg_wrong_pattern +01040420=string/kg_wrong_pin +01040421=string/kilobyteShort +01040422=string/language_picker_section_all +01040423=string/language_picker_section_suggested +01040424=string/language_selection_title +01040425=string/last_month +01040426=string/launchBrowserDefault +01040427=string/launch_warning_original +01040428=string/launch_warning_replace +01040429=string/launch_warning_title +0104042a=string/leave_accessibility_shortcut_on +0104042b=string/loading +0104042c=string/locale_replacement +0104042d=string/locale_search_menu +0104042e=string/location_changed_notification_text +0104042f=string/location_changed_notification_title +01040430=string/location_service +01040431=string/lock_pattern_view_aspect +01040432=string/lock_to_app_unlock_password +01040433=string/lock_to_app_unlock_pattern +01040434=string/lock_to_app_unlock_pin +01040435=string/lockscreen_access_pattern_area +01040436=string/lockscreen_access_pattern_cell_added +01040437=string/lockscreen_access_pattern_cell_added_verbose +01040438=string/lockscreen_access_pattern_cleared +01040439=string/lockscreen_access_pattern_detected +0104043a=string/lockscreen_access_pattern_start +0104043b=string/lockscreen_carrier_default +0104043c=string/lockscreen_emergency_call +0104043d=string/lockscreen_failed_attempts_almost_at_wipe +0104043e=string/lockscreen_failed_attempts_almost_glogin +0104043f=string/lockscreen_failed_attempts_now_wiping +01040440=string/lockscreen_forgot_pattern_button_text +01040441=string/lockscreen_glogin_account_recovery_hint +01040442=string/lockscreen_glogin_checking_password +01040443=string/lockscreen_glogin_forgot_pattern +01040444=string/lockscreen_glogin_instructions +01040445=string/lockscreen_glogin_invalid_input +01040446=string/lockscreen_glogin_password_hint +01040447=string/lockscreen_glogin_submit_button +01040448=string/lockscreen_glogin_too_many_attempts +01040449=string/lockscreen_glogin_username_hint +0104044a=string/lockscreen_instructions_when_pattern_disabled +0104044b=string/lockscreen_instructions_when_pattern_enabled +0104044c=string/lockscreen_missing_sim_instructions +0104044d=string/lockscreen_missing_sim_instructions_long +0104044e=string/lockscreen_missing_sim_message +0104044f=string/lockscreen_missing_sim_message_short +01040450=string/lockscreen_network_locked_message +01040451=string/lockscreen_password_wrong +01040452=string/lockscreen_pattern_correct +01040453=string/lockscreen_pattern_instructions +01040454=string/lockscreen_pattern_wrong +01040455=string/lockscreen_permanent_disabled_sim_instructions +01040456=string/lockscreen_permanent_disabled_sim_message_short +01040457=string/lockscreen_return_to_call +01040458=string/lockscreen_screen_locked +01040459=string/lockscreen_sim_locked_message +0104045a=string/lockscreen_sim_puk_locked_instructions +0104045b=string/lockscreen_sim_puk_locked_message +0104045c=string/lockscreen_sim_unlock_progress_dialog_message +0104045d=string/lockscreen_sound_off_label +0104045e=string/lockscreen_sound_on_label +0104045f=string/lockscreen_storage_locked +01040460=string/lockscreen_too_many_failed_attempts_countdown +01040461=string/lockscreen_too_many_failed_attempts_dialog_message +01040462=string/lockscreen_too_many_failed_password_attempts_dialog_message +01040463=string/lockscreen_too_many_failed_pin_attempts_dialog_message +01040464=string/lockscreen_transport_ffw_description +01040465=string/lockscreen_transport_next_description +01040466=string/lockscreen_transport_pause_description +01040467=string/lockscreen_transport_play_description +01040468=string/lockscreen_transport_prev_description +01040469=string/lockscreen_transport_rew_description +0104046a=string/lockscreen_transport_stop_description +0104046b=string/lockscreen_unlock_label +0104046c=string/low_internal_storage_view_text +0104046d=string/low_internal_storage_view_text_no_boot +0104046e=string/low_internal_storage_view_title +0104046f=string/low_memory +01040470=string/managed_profile_label +01040471=string/managed_profile_label_badge +01040472=string/managed_profile_label_badge_2 +01040473=string/managed_profile_label_badge_3 +01040474=string/maximize_button_text +01040475=string/me +01040476=string/media_route_button_content_description +01040477=string/media_route_chooser_extended_settings +01040478=string/media_route_chooser_searching +01040479=string/media_route_chooser_title +0104047a=string/media_route_chooser_title_for_remote_display +0104047b=string/media_route_controller_disconnect +0104047c=string/media_route_status_available +0104047d=string/media_route_status_connecting +0104047e=string/media_route_status_in_use +0104047f=string/media_route_status_not_available +01040480=string/media_route_status_scanning +01040481=string/mediasize_chinese_om_dai_pa_kai +01040482=string/mediasize_chinese_om_jurro_ku_kai +01040483=string/mediasize_chinese_om_pa_kai +01040484=string/mediasize_chinese_prc_1 +01040485=string/mediasize_chinese_prc_10 +01040486=string/mediasize_chinese_prc_16k +01040487=string/mediasize_chinese_prc_2 +01040488=string/mediasize_chinese_prc_3 +01040489=string/mediasize_chinese_prc_4 +0104048a=string/mediasize_chinese_prc_5 +0104048b=string/mediasize_chinese_prc_6 +0104048c=string/mediasize_chinese_prc_7 +0104048d=string/mediasize_chinese_prc_8 +0104048e=string/mediasize_chinese_prc_9 +0104048f=string/mediasize_chinese_roc_16k +01040490=string/mediasize_chinese_roc_8k +01040491=string/mediasize_iso_a0 +01040492=string/mediasize_iso_a1 +01040493=string/mediasize_iso_a10 +01040494=string/mediasize_iso_a2 +01040495=string/mediasize_iso_a3 +01040496=string/mediasize_iso_a4 +01040497=string/mediasize_iso_a5 +01040498=string/mediasize_iso_a6 +01040499=string/mediasize_iso_a7 +0104049a=string/mediasize_iso_a8 +0104049b=string/mediasize_iso_a9 +0104049c=string/mediasize_iso_b0 +0104049d=string/mediasize_iso_b1 +0104049e=string/mediasize_iso_b10 +0104049f=string/mediasize_iso_b2 +010404a0=string/mediasize_iso_b3 +010404a1=string/mediasize_iso_b4 +010404a2=string/mediasize_iso_b5 +010404a3=string/mediasize_iso_b6 +010404a4=string/mediasize_iso_b7 +010404a5=string/mediasize_iso_b8 +010404a6=string/mediasize_iso_b9 +010404a7=string/mediasize_iso_c0 +010404a8=string/mediasize_iso_c1 +010404a9=string/mediasize_iso_c10 +010404aa=string/mediasize_iso_c2 +010404ab=string/mediasize_iso_c3 +010404ac=string/mediasize_iso_c4 +010404ad=string/mediasize_iso_c5 +010404ae=string/mediasize_iso_c6 +010404af=string/mediasize_iso_c7 +010404b0=string/mediasize_iso_c8 +010404b1=string/mediasize_iso_c9 +010404b2=string/mediasize_japanese_chou2 +010404b3=string/mediasize_japanese_chou3 +010404b4=string/mediasize_japanese_chou4 +010404b5=string/mediasize_japanese_hagaki +010404b6=string/mediasize_japanese_jis_b0 +010404b7=string/mediasize_japanese_jis_b1 +010404b8=string/mediasize_japanese_jis_b10 +010404b9=string/mediasize_japanese_jis_b2 +010404ba=string/mediasize_japanese_jis_b3 +010404bb=string/mediasize_japanese_jis_b4 +010404bc=string/mediasize_japanese_jis_b5 +010404bd=string/mediasize_japanese_jis_b6 +010404be=string/mediasize_japanese_jis_b7 +010404bf=string/mediasize_japanese_jis_b8 +010404c0=string/mediasize_japanese_jis_b9 +010404c1=string/mediasize_japanese_jis_exec +010404c2=string/mediasize_japanese_kahu +010404c3=string/mediasize_japanese_kaku2 +010404c4=string/mediasize_japanese_oufuku +010404c5=string/mediasize_japanese_you4 +010404c6=string/mediasize_na_foolscap +010404c7=string/mediasize_na_gvrnmt_letter +010404c8=string/mediasize_na_index_3x5 +010404c9=string/mediasize_na_index_4x6 +010404ca=string/mediasize_na_index_5x8 +010404cb=string/mediasize_na_junior_legal +010404cc=string/mediasize_na_ledger +010404cd=string/mediasize_na_legal +010404ce=string/mediasize_na_letter +010404cf=string/mediasize_na_monarch +010404d0=string/mediasize_na_quarto +010404d1=string/mediasize_na_tabloid +010404d2=string/mediasize_unknown_landscape +010404d3=string/mediasize_unknown_portrait +010404d4=string/megabyteShort +010404d5=string/meid +010404d6=string/menu_alt_shortcut_label +010404d7=string/menu_ctrl_shortcut_label +010404d8=string/menu_delete_shortcut_label +010404d9=string/menu_enter_shortcut_label +010404da=string/menu_function_shortcut_label +010404db=string/menu_meta_shortcut_label +010404dc=string/menu_shift_shortcut_label +010404dd=string/menu_space_shortcut_label +010404de=string/menu_sym_shortcut_label +010404df=string/midnight +010404e0=string/mime_type_apk +010404e1=string/mime_type_audio +010404e2=string/mime_type_audio_ext +010404e3=string/mime_type_compressed +010404e4=string/mime_type_compressed_ext +010404e5=string/mime_type_document +010404e6=string/mime_type_document_ext +010404e7=string/mime_type_folder +010404e8=string/mime_type_generic +010404e9=string/mime_type_generic_ext +010404ea=string/mime_type_image +010404eb=string/mime_type_image_ext +010404ec=string/mime_type_presentation +010404ed=string/mime_type_presentation_ext +010404ee=string/mime_type_spreadsheet +010404ef=string/mime_type_spreadsheet_ext +010404f0=string/mime_type_video +010404f1=string/mime_type_video_ext +010404f2=string/minute +010404f3=string/minute_picker_description +010404f4=string/minutes +010404f5=string/mismatchPin +010404f6=string/mmcc_authentication_reject +010404f7=string/mmcc_authentication_reject_msim_template +010404f8=string/mmcc_illegal_me +010404f9=string/mmcc_illegal_me_msim_template +010404fa=string/mmcc_illegal_ms +010404fb=string/mmcc_illegal_ms_msim_template +010404fc=string/mmcc_imsi_unknown_in_hlr +010404fd=string/mmcc_imsi_unknown_in_hlr_msim_template +010404fe=string/mmiComplete +010404ff=string/mmiError +01040500=string/mmiErrorWhileRoaming +01040501=string/mmiFdnError +01040502=string/mobile_no_internet +01040503=string/mobile_provisioning_apn +01040504=string/mobile_provisioning_url +01040505=string/month_day_year +01040506=string/more_item_label +01040507=string/muted_by +01040508=string/needPuk +01040509=string/needPuk2 +0104050a=string/negative_duration +0104050b=string/network_available_sign_in +0104050c=string/network_available_sign_in_detailed +0104050d=string/network_logging_notification_text +0104050e=string/network_logging_notification_title +0104050f=string/network_partial_connectivity +01040510=string/network_partial_connectivity_detailed +01040511=string/network_switch_metered +01040512=string/network_switch_metered_detail +01040513=string/network_switch_metered_toast +01040514=string/network_switch_type_name_unknown +01040515=string/new_app_action +01040516=string/new_app_description +01040517=string/new_sms_notification_content +01040518=string/new_sms_notification_title +01040519=string/next_button_label +0104051a=string/noApplications +0104051b=string/no_file_chosen +0104051c=string/no_matches +0104051d=string/no_permissions +0104051e=string/no_recent_tasks +0104051f=string/noon +01040520=string/not_checked +01040521=string/notification_alerted_content_description +01040522=string/notification_app_name_settings +01040523=string/notification_app_name_system +01040524=string/notification_appops_camera_active +01040525=string/notification_appops_microphone_active +01040526=string/notification_appops_overlay_active +01040527=string/notification_channel_account +01040528=string/notification_channel_alerts +01040529=string/notification_channel_call_forward +0104052a=string/notification_channel_car_mode +0104052b=string/notification_channel_developer +0104052c=string/notification_channel_developer_important +0104052d=string/notification_channel_device_admin +0104052e=string/notification_channel_do_not_disturb +0104052f=string/notification_channel_emergency_callback +01040530=string/notification_channel_foreground_service +01040531=string/notification_channel_heavy_weight_app +01040532=string/notification_channel_mobile_data_status +01040533=string/notification_channel_network_alert +01040534=string/notification_channel_network_alerts +01040535=string/notification_channel_network_available +01040536=string/notification_channel_network_status +01040537=string/notification_channel_physical_keyboard +01040538=string/notification_channel_retail_mode +01040539=string/notification_channel_security +0104053a=string/notification_channel_sim +0104053b=string/notification_channel_sim_high_prio +0104053c=string/notification_channel_sms +0104053d=string/notification_channel_system_changes +0104053e=string/notification_channel_updates +0104053f=string/notification_channel_usb +01040540=string/notification_channel_virtual_keyboard +01040541=string/notification_channel_voice_mail +01040542=string/notification_channel_vpn +01040543=string/notification_channel_wfc +01040544=string/notification_header_divider_symbol +01040545=string/notification_header_divider_symbol_with_spaces +01040546=string/notification_hidden_text +01040547=string/notification_history_title_placeholder +01040548=string/notification_inbox_ellipsis +01040549=string/notification_listener_binding_label +0104054a=string/notification_messaging_title_template +0104054b=string/notification_ranker_binding_label +0104054c=string/notification_reply_button_accessibility +0104054d=string/notification_title +0104054e=string/notification_work_profile_content_description +0104054f=string/now_string_shortest +01040550=string/number_picker_decrement_button +01040551=string/number_picker_increment_button +01040552=string/number_picker_increment_scroll_action +01040553=string/number_picker_increment_scroll_mode +01040554=string/old_app_action +01040555=string/older +01040556=string/oneMonthDurationPast +01040557=string/open_permission_deny +01040558=string/orgTypeCustom +01040559=string/orgTypeOther +0104055a=string/orgTypeWork +0104055b=string/org_name +0104055c=string/org_unit +0104055d=string/other_networks_no_internet +0104055e=string/owner_name +0104055f=string/package_deleted_device_owner +01040560=string/package_installed_device_owner +01040561=string/package_updated_device_owner +01040562=string/passwordIncorrect +01040563=string/password_keyboard_label_alpha_key +01040564=string/password_keyboard_label_alt_key +01040565=string/password_keyboard_label_symbol_key +01040566=string/peerTtyModeFull +01040567=string/peerTtyModeHco +01040568=string/peerTtyModeOff +01040569=string/peerTtyModeVco +0104056a=string/perm_costs_money +0104056b=string/permdesc_acceptHandovers +0104056c=string/permdesc_accessBackgroundLocation +0104056d=string/permdesc_accessCoarseLocation +0104056e=string/permdesc_accessDrmCertificates +0104056f=string/permdesc_accessFineLocation +01040570=string/permdesc_accessImsCallService +01040571=string/permdesc_accessLocationExtraCommands +01040572=string/permdesc_accessNetworkConditions +01040573=string/permdesc_accessNetworkState +01040574=string/permdesc_accessNotifications +01040575=string/permdesc_accessWifiState +01040576=string/permdesc_accessWimaxState +01040577=string/permdesc_access_notification_policy +01040578=string/permdesc_activityRecognition +01040579=string/permdesc_addVoicemail +0104057a=string/permdesc_answerPhoneCalls +0104057b=string/permdesc_audioWrite +0104057c=string/permdesc_bindCarrierMessagingService +0104057d=string/permdesc_bindCarrierServices +0104057e=string/permdesc_bindCellBroadcastService +0104057f=string/permdesc_bindConditionProviderService +01040580=string/permdesc_bindDreamService +01040581=string/permdesc_bindNotificationListenerService +01040582=string/permdesc_bind_connection_service +01040583=string/permdesc_bind_incall_service +01040584=string/permdesc_bluetooth +01040585=string/permdesc_bluetoothAdmin +01040586=string/permdesc_bodySensors +01040587=string/permdesc_broadcastSticky +01040588=string/permdesc_callCompanionApp +01040589=string/permdesc_callPhone +0104058a=string/permdesc_camera +0104058b=string/permdesc_cameraOpenCloseListener +0104058c=string/permdesc_changeNetworkState +0104058d=string/permdesc_changeTetherState +0104058e=string/permdesc_changeWifiMulticastState +0104058f=string/permdesc_changeWifiState +01040590=string/permdesc_changeWimaxState +01040591=string/permdesc_connection_manager +01040592=string/permdesc_control_incall_experience +01040593=string/permdesc_createNetworkSockets +01040594=string/permdesc_disableKeyguard +01040595=string/permdesc_enableCarMode +01040596=string/permdesc_exemptFromAudioRecordRestrictions +01040597=string/permdesc_expandStatusBar +01040598=string/permdesc_foregroundService +01040599=string/permdesc_getAccounts +0104059a=string/permdesc_getPackageSize +0104059b=string/permdesc_getTasks +0104059c=string/permdesc_handoverStatus +0104059d=string/permdesc_imagesWrite +0104059e=string/permdesc_install_shortcut +0104059f=string/permdesc_invokeCarrierSetup +010405a0=string/permdesc_killBackgroundProcesses +010405a1=string/permdesc_manageFace +010405a2=string/permdesc_manageFingerprint +010405a3=string/permdesc_manageNetworkPolicy +010405a4=string/permdesc_manageOwnCalls +010405a5=string/permdesc_manageProfileAndDeviceOwners +010405a6=string/permdesc_mediaLocation +010405a7=string/permdesc_modifyAudioSettings +010405a8=string/permdesc_modifyNetworkAccounting +010405a9=string/permdesc_nfc +010405aa=string/permdesc_persistentActivity +010405ab=string/permdesc_preferredPaymentInfo +010405ac=string/permdesc_processOutgoingCalls +010405ad=string/permdesc_readCalendar +010405ae=string/permdesc_readCallLog +010405af=string/permdesc_readCellBroadcasts +010405b0=string/permdesc_readContacts +010405b1=string/permdesc_readHistoryBookmarks +010405b2=string/permdesc_readInstallSessions +010405b3=string/permdesc_readNetworkUsageHistory +010405b4=string/permdesc_readPhoneNumbers +010405b5=string/permdesc_readPhoneState +010405b6=string/permdesc_readSms +010405b7=string/permdesc_readSyncSettings +010405b8=string/permdesc_readSyncStats +010405b9=string/permdesc_receiveBootCompleted +010405ba=string/permdesc_receiveMms +010405bb=string/permdesc_receiveSms +010405bc=string/permdesc_receiveWapPush +010405bd=string/permdesc_recordAudio +010405be=string/permdesc_register_call_provider +010405bf=string/permdesc_register_sim_subscription +010405c0=string/permdesc_removeDrmCertificates +010405c1=string/permdesc_reorderTasks +010405c2=string/permdesc_requestDeletePackages +010405c3=string/permdesc_requestIgnoreBatteryOptimizations +010405c4=string/permdesc_requestInstallPackages +010405c5=string/permdesc_requestPasswordComplexity +010405c6=string/permdesc_route_media_output +010405c7=string/permdesc_runInBackground +010405c8=string/permdesc_sdcardRead +010405c9=string/permdesc_sdcardWrite +010405ca=string/permdesc_sendSms +010405cb=string/permdesc_setAlarm +010405cc=string/permdesc_setInputCalibration +010405cd=string/permdesc_setTimeZone +010405ce=string/permdesc_setWallpaper +010405cf=string/permdesc_setWallpaperHints +010405d0=string/permdesc_sim_communication +010405d1=string/permdesc_startViewPermissionUsage +010405d2=string/permdesc_statusBar +010405d3=string/permdesc_statusBarService +010405d4=string/permdesc_subscribedFeedsRead +010405d5=string/permdesc_systemAlertWindow +010405d6=string/permdesc_systemCamera +010405d7=string/permdesc_transmitIr +010405d8=string/permdesc_uninstall_shortcut +010405d9=string/permdesc_useBiometric +010405da=string/permdesc_useDataInBackground +010405db=string/permdesc_useFaceAuthentication +010405dc=string/permdesc_useFingerprint +010405dd=string/permdesc_use_sip +010405de=string/permdesc_vibrate +010405df=string/permdesc_vibrator_state +010405e0=string/permdesc_videoWrite +010405e1=string/permdesc_wakeLock +010405e2=string/permdesc_writeCalendar +010405e3=string/permdesc_writeCallLog +010405e4=string/permdesc_writeContacts +010405e5=string/permdesc_writeGeolocationPermissions +010405e6=string/permdesc_writeHistoryBookmarks +010405e7=string/permdesc_writeSettings +010405e8=string/permdesc_writeSyncSettings +010405e9=string/permgroupdesc_activityRecognition +010405ea=string/permgroupdesc_calendar +010405eb=string/permgroupdesc_calllog +010405ec=string/permgroupdesc_camera +010405ed=string/permgroupdesc_contacts +010405ee=string/permgroupdesc_location +010405ef=string/permgroupdesc_microphone +010405f0=string/permgroupdesc_phone +010405f1=string/permgroupdesc_sensors +010405f2=string/permgroupdesc_sms +010405f3=string/permgroupdesc_storage +010405f4=string/permgrouplab_activityRecognition +010405f5=string/permgrouplab_calendar +010405f6=string/permgrouplab_calllog +010405f7=string/permgrouplab_camera +010405f8=string/permgrouplab_contacts +010405f9=string/permgrouplab_location +010405fa=string/permgrouplab_microphone +010405fb=string/permgrouplab_phone +010405fc=string/permgrouplab_sensors +010405fd=string/permgrouplab_sms +010405fe=string/permgrouplab_storage +010405ff=string/permission_request_notification_title +01040600=string/permission_request_notification_with_subtitle +01040601=string/permlab_acceptHandover +01040602=string/permlab_accessBackgroundLocation +01040603=string/permlab_accessCoarseLocation +01040604=string/permlab_accessDrmCertificates +01040605=string/permlab_accessFineLocation +01040606=string/permlab_accessImsCallService +01040607=string/permlab_accessLocationExtraCommands +01040608=string/permlab_accessNetworkConditions +01040609=string/permlab_accessNetworkState +0104060a=string/permlab_accessNotifications +0104060b=string/permlab_accessWifiState +0104060c=string/permlab_accessWimaxState +0104060d=string/permlab_access_notification_policy +0104060e=string/permlab_activityRecognition +0104060f=string/permlab_addVoicemail +01040610=string/permlab_answerPhoneCalls +01040611=string/permlab_audioWrite +01040612=string/permlab_bindCarrierMessagingService +01040613=string/permlab_bindCarrierServices +01040614=string/permlab_bindCellBroadcastService +01040615=string/permlab_bindConditionProviderService +01040616=string/permlab_bindDreamService +01040617=string/permlab_bindNotificationListenerService +01040618=string/permlab_bind_connection_service +01040619=string/permlab_bind_incall_service +0104061a=string/permlab_bluetooth +0104061b=string/permlab_bluetoothAdmin +0104061c=string/permlab_bodySensors +0104061d=string/permlab_broadcastSticky +0104061e=string/permlab_callCompanionApp +0104061f=string/permlab_callPhone +01040620=string/permlab_camera +01040621=string/permlab_cameraOpenCloseListener +01040622=string/permlab_changeNetworkState +01040623=string/permlab_changeTetherState +01040624=string/permlab_changeWifiMulticastState +01040625=string/permlab_changeWifiState +01040626=string/permlab_changeWimaxState +01040627=string/permlab_connection_manager +01040628=string/permlab_control_incall_experience +01040629=string/permlab_createNetworkSockets +0104062a=string/permlab_disableKeyguard +0104062b=string/permlab_enableCarMode +0104062c=string/permlab_exemptFromAudioRecordRestrictions +0104062d=string/permlab_expandStatusBar +0104062e=string/permlab_foregroundService +0104062f=string/permlab_getAccounts +01040630=string/permlab_getPackageSize +01040631=string/permlab_getTasks +01040632=string/permlab_handoverStatus +01040633=string/permlab_imagesWrite +01040634=string/permlab_install_shortcut +01040635=string/permlab_invokeCarrierSetup +01040636=string/permlab_killBackgroundProcesses +01040637=string/permlab_manageFace +01040638=string/permlab_manageFingerprint +01040639=string/permlab_manageNetworkPolicy +0104063a=string/permlab_manageOwnCalls +0104063b=string/permlab_manageProfileAndDeviceOwners +0104063c=string/permlab_mediaLocation +0104063d=string/permlab_modifyAudioSettings +0104063e=string/permlab_modifyNetworkAccounting +0104063f=string/permlab_nfc +01040640=string/permlab_persistentActivity +01040641=string/permlab_preferredPaymentInfo +01040642=string/permlab_processOutgoingCalls +01040643=string/permlab_readCalendar +01040644=string/permlab_readCallLog +01040645=string/permlab_readCellBroadcasts +01040646=string/permlab_readContacts +01040647=string/permlab_readHistoryBookmarks +01040648=string/permlab_readInstallSessions +01040649=string/permlab_readNetworkUsageHistory +0104064a=string/permlab_readPhoneNumbers +0104064b=string/permlab_readPhoneState +0104064c=string/permlab_readSms +0104064d=string/permlab_readSyncSettings +0104064e=string/permlab_readSyncStats +0104064f=string/permlab_receiveBootCompleted +01040650=string/permlab_receiveMms +01040651=string/permlab_receiveSms +01040652=string/permlab_receiveWapPush +01040653=string/permlab_recordAudio +01040654=string/permlab_register_call_provider +01040655=string/permlab_register_sim_subscription +01040656=string/permlab_removeDrmCertificates +01040657=string/permlab_reorderTasks +01040658=string/permlab_requestDeletePackages +01040659=string/permlab_requestIgnoreBatteryOptimizations +0104065a=string/permlab_requestInstallPackages +0104065b=string/permlab_requestPasswordComplexity +0104065c=string/permlab_route_media_output +0104065d=string/permlab_runInBackground +0104065e=string/permlab_sdcardRead +0104065f=string/permlab_sdcardWrite +01040660=string/permlab_sendSms +01040661=string/permlab_setAlarm +01040662=string/permlab_setInputCalibration +01040663=string/permlab_setTimeZone +01040664=string/permlab_setWallpaper +01040665=string/permlab_setWallpaperHints +01040666=string/permlab_sim_communication +01040667=string/permlab_startViewPermissionUsage +01040668=string/permlab_statusBar +01040669=string/permlab_statusBarService +0104066a=string/permlab_subscribedFeedsRead +0104066b=string/permlab_systemAlertWindow +0104066c=string/permlab_systemCamera +0104066d=string/permlab_transmitIr +0104066e=string/permlab_uninstall_shortcut +0104066f=string/permlab_useBiometric +01040670=string/permlab_useDataInBackground +01040671=string/permlab_useFaceAuthentication +01040672=string/permlab_useFingerprint +01040673=string/permlab_use_sip +01040674=string/permlab_vibrate +01040675=string/permlab_videoWrite +01040676=string/permlab_wakeLock +01040677=string/permlab_writeCalendar +01040678=string/permlab_writeCallLog +01040679=string/permlab_writeContacts +0104067a=string/permlab_writeGeolocationPermissions +0104067b=string/permlab_writeHistoryBookmarks +0104067c=string/permlab_writeSettings +0104067d=string/permlab_writeSyncSettings +0104067e=string/perms_description_app +0104067f=string/perms_new_perm_prefix +01040680=string/personal_apps_suspended_turn_profile_on +01040681=string/personal_apps_suspension_soon_text +01040682=string/personal_apps_suspension_text +01040683=string/personal_apps_suspension_title +01040684=string/petabyteShort +01040685=string/phoneTypeAssistant +01040686=string/phoneTypeCallback +01040687=string/phoneTypeCar +01040688=string/phoneTypeCompanyMain +01040689=string/phoneTypeCustom +0104068a=string/phoneTypeFaxHome +0104068b=string/phoneTypeFaxWork +0104068c=string/phoneTypeHome +0104068d=string/phoneTypeIsdn +0104068e=string/phoneTypeMain +0104068f=string/phoneTypeMms +01040690=string/phoneTypeMobile +01040691=string/phoneTypeOther +01040692=string/phoneTypeOtherFax +01040693=string/phoneTypePager +01040694=string/phoneTypeRadio +01040695=string/phoneTypeTelex +01040696=string/phoneTypeTtyTdd +01040697=string/phoneTypeWork +01040698=string/phoneTypeWorkMobile +01040699=string/phoneTypeWorkPager +0104069a=string/pin_specific_target +0104069b=string/pin_target +0104069c=string/policydesc_disableCamera +0104069d=string/policydesc_disableKeyguardFeatures +0104069e=string/policydesc_encryptedStorage +0104069f=string/policydesc_expirePassword +010406a0=string/policydesc_forceLock +010406a1=string/policydesc_limitPassword +010406a2=string/policydesc_resetPassword +010406a3=string/policydesc_setGlobalProxy +010406a4=string/policydesc_watchLogin +010406a5=string/policydesc_watchLogin_secondaryUser +010406a6=string/policydesc_wipeData +010406a7=string/policydesc_wipeData_secondaryUser +010406a8=string/policylab_disableCamera +010406a9=string/policylab_disableKeyguardFeatures +010406aa=string/policylab_encryptedStorage +010406ab=string/policylab_expirePassword +010406ac=string/policylab_forceLock +010406ad=string/policylab_limitPassword +010406ae=string/policylab_resetPassword +010406af=string/policylab_setGlobalProxy +010406b0=string/policylab_watchLogin +010406b1=string/policylab_wipeData +010406b2=string/policylab_wipeData_secondaryUser +010406b3=string/popup_window_default_title +010406b4=string/postalTypeCustom +010406b5=string/postalTypeHome +010406b6=string/postalTypeOther +010406b7=string/postalTypeWork +010406b8=string/power_dialog +010406b9=string/power_off +010406ba=string/prepend_shortcut_label +010406bb=string/preposition_for_date +010406bc=string/preposition_for_time +010406bd=string/preposition_for_year +010406be=string/print_service_installed_message +010406bf=string/print_service_installed_title +010406c0=string/printing_disabled_by +010406c1=string/private_dns_broken_detailed +010406c2=string/profile_encrypted_detail +010406c3=string/profile_encrypted_message +010406c4=string/profile_encrypted_title +010406c5=string/progress_erasing +010406c6=string/prohibit_manual_network_selection_in_gobal_mode +010406c7=string/quick_contacts_not_available +010406c8=string/radial_numbers_typeface +010406c9=string/reason_service_unavailable +010406ca=string/reason_unknown +010406cb=string/reboot_safemode_confirm +010406cc=string/reboot_safemode_title +010406cd=string/reboot_to_reset_message +010406ce=string/reboot_to_reset_title +010406cf=string/reboot_to_update_package +010406d0=string/reboot_to_update_prepare +010406d1=string/reboot_to_update_reboot +010406d2=string/reboot_to_update_title +010406d3=string/recent_tasks_title +010406d4=string/redo +010406d5=string/region_picker_section_all +010406d6=string/relationTypeAssistant +010406d7=string/relationTypeBrother +010406d8=string/relationTypeChild +010406d9=string/relationTypeCustom +010406da=string/relationTypeDomesticPartner +010406db=string/relationTypeFather +010406dc=string/relationTypeFriend +010406dd=string/relationTypeManager +010406de=string/relationTypeMother +010406df=string/relationTypeParent +010406e0=string/relationTypePartner +010406e1=string/relationTypeReferredBy +010406e2=string/relationTypeRelative +010406e3=string/relationTypeSister +010406e4=string/relationTypeSpouse +010406e5=string/relative_time +010406e6=string/replace +010406e7=string/report +010406e8=string/reset +010406e9=string/resolver_cant_access_personal_apps +010406ea=string/resolver_cant_access_personal_apps_explanation +010406eb=string/resolver_cant_access_work_apps +010406ec=string/resolver_cant_access_work_apps_explanation +010406ed=string/resolver_cant_share_with_personal_apps +010406ee=string/resolver_cant_share_with_personal_apps_explanation +010406ef=string/resolver_cant_share_with_work_apps +010406f0=string/resolver_cant_share_with_work_apps_explanation +010406f1=string/resolver_no_personal_apps_available_resolve +010406f2=string/resolver_no_personal_apps_available_share +010406f3=string/resolver_no_work_apps_available_resolve +010406f4=string/resolver_no_work_apps_available_share +010406f5=string/resolver_personal_tab +010406f6=string/resolver_personal_tab_accessibility +010406f7=string/resolver_switch_on_work +010406f8=string/resolver_turn_on_work_apps +010406f9=string/resolver_work_tab +010406fa=string/resolver_work_tab_accessibility +010406fb=string/restr_pin_confirm_pin +010406fc=string/restr_pin_create_pin +010406fd=string/restr_pin_enter_admin_pin +010406fe=string/restr_pin_enter_new_pin +010406ff=string/restr_pin_enter_old_pin +01040700=string/restr_pin_enter_pin +01040701=string/restr_pin_error_doesnt_match +01040702=string/restr_pin_error_too_short +01040703=string/restr_pin_incorrect +01040704=string/restr_pin_try_later +01040705=string/revoke +01040706=string/ringtone_default +01040707=string/ringtone_default_with_actual +01040708=string/ringtone_picker_title +01040709=string/ringtone_picker_title_alarm +0104070a=string/ringtone_picker_title_notification +0104070b=string/ringtone_silent +0104070c=string/ringtone_unknown +0104070d=string/roamingText0 +0104070e=string/roamingText1 +0104070f=string/roamingText10 +01040710=string/roamingText11 +01040711=string/roamingText12 +01040712=string/roamingText2 +01040713=string/roamingText3 +01040714=string/roamingText4 +01040715=string/roamingText5 +01040716=string/roamingText6 +01040717=string/roamingText7 +01040718=string/roamingText8 +01040719=string/roamingText9 +0104071a=string/roamingTextSearching +0104071b=string/safeMode +0104071c=string/safe_media_volume_warning +0104071d=string/sans_serif +0104071e=string/save_password_label +0104071f=string/save_password_message +01040720=string/save_password_never +01040721=string/save_password_notnow +01040722=string/save_password_remember +01040723=string/screen_compat_mode_hint +01040724=string/screen_compat_mode_scale +01040725=string/screen_compat_mode_show +01040726=string/screen_lock +01040727=string/screenshot_edit +01040728=string/search_hint +01040729=string/search_language_hint +0104072a=string/searchview_description_clear +0104072b=string/searchview_description_query +0104072c=string/searchview_description_search +0104072d=string/searchview_description_submit +0104072e=string/searchview_description_voice +0104072f=string/second +01040730=string/seconds +01040731=string/select_character +01040732=string/select_day +01040733=string/select_hours +01040734=string/select_input_method +01040735=string/select_keyboard_layout_notification_message +01040736=string/select_keyboard_layout_notification_title +01040737=string/select_minutes +01040738=string/select_year +01040739=string/sendText +0104073a=string/sending +0104073b=string/sensor_notification_service +0104073c=string/serial_number +0104073d=string/serviceClassData +0104073e=string/serviceClassDataAsync +0104073f=string/serviceClassDataSync +01040740=string/serviceClassFAX +01040741=string/serviceClassPAD +01040742=string/serviceClassPacket +01040743=string/serviceClassSMS +01040744=string/serviceClassVoice +01040745=string/serviceDisabled +01040746=string/serviceEnabled +01040747=string/serviceEnabledFor +01040748=string/serviceErased +01040749=string/serviceNotProvisioned +0104074a=string/serviceRegistered +0104074b=string/setup_autofill +0104074c=string/sha1_fingerprint +0104074d=string/sha256_fingerprint +0104074e=string/share +0104074f=string/share_action_provider_share_with +01040750=string/share_remote_bugreport_action +01040751=string/share_remote_bugreport_notification_message_finished +01040752=string/share_remote_bugreport_notification_title +01040753=string/shareactionprovider_share_with +01040754=string/shareactionprovider_share_with_application +01040755=string/sharing_remote_bugreport_notification_title +01040756=string/shortcut_disabled_reason_unknown +01040757=string/shortcut_restore_not_supported +01040758=string/shortcut_restore_signature_mismatch +01040759=string/shortcut_restore_unknown_issue +0104075a=string/shortcut_restored_on_lower_version +0104075b=string/show_ime +0104075c=string/shutdown_confirm +0104075d=string/shutdown_confirm_question +0104075e=string/shutdown_progress +0104075f=string/silent_mode +01040760=string/silent_mode_ring +01040761=string/silent_mode_silent +01040762=string/silent_mode_vibrate +01040763=string/sim_added_message +01040764=string/sim_added_title +01040765=string/sim_done_button +01040766=string/sim_removed_message +01040767=string/sim_removed_title +01040768=string/sim_restart_button +01040769=string/sipAddressTypeCustom +0104076a=string/sipAddressTypeHome +0104076b=string/sipAddressTypeOther +0104076c=string/sipAddressTypeWork +0104076d=string/skip_button_label +0104076e=string/slice_more_content +0104076f=string/slices_permission_request +01040770=string/sms_control_message +01040771=string/sms_control_no +01040772=string/sms_control_title +01040773=string/sms_control_yes +01040774=string/sms_premium_short_code_details +01040775=string/sms_short_code_confirm_allow +01040776=string/sms_short_code_confirm_always_allow +01040777=string/sms_short_code_confirm_deny +01040778=string/sms_short_code_confirm_message +01040779=string/sms_short_code_confirm_never_allow +0104077a=string/sms_short_code_details +0104077b=string/sms_short_code_remember_choice +0104077c=string/sms_short_code_remember_undo_instruction +0104077d=string/smv_application +0104077e=string/smv_process +0104077f=string/ssl_ca_cert_noti_by_administrator +01040780=string/ssl_ca_cert_noti_by_unknown +01040781=string/ssl_ca_cert_noti_managed +01040782=string/ssl_certificate +01040783=string/ssl_certificate_is_valid +01040784=string/status_bar_airplane +01040785=string/status_bar_alarm_clock +01040786=string/status_bar_battery +01040787=string/status_bar_bluetooth +01040788=string/status_bar_camera +01040789=string/status_bar_cast +0104078a=string/status_bar_cdma_eri +0104078b=string/status_bar_clock +0104078c=string/status_bar_data_connection +0104078d=string/status_bar_data_saver +0104078e=string/status_bar_ethernet +0104078f=string/status_bar_headset +01040790=string/status_bar_hotspot +01040791=string/status_bar_ime +01040792=string/status_bar_location +01040793=string/status_bar_managed_profile +01040794=string/status_bar_microphone +01040795=string/status_bar_mobile +01040796=string/status_bar_mute +01040797=string/status_bar_nfc +01040798=string/status_bar_phone_evdo_signal +01040799=string/status_bar_phone_signal +0104079a=string/status_bar_rotate +0104079b=string/status_bar_screen_record +0104079c=string/status_bar_secure +0104079d=string/status_bar_sensors_off +0104079e=string/status_bar_speakerphone +0104079f=string/status_bar_sync_active +010407a0=string/status_bar_sync_failing +010407a1=string/status_bar_tty +010407a2=string/status_bar_volume +010407a3=string/status_bar_vpn +010407a4=string/status_bar_wifi +010407a5=string/status_bar_zen +010407a6=string/stk_cc_ss_to_dial +010407a7=string/stk_cc_ss_to_dial_video +010407a8=string/stk_cc_ss_to_ss +010407a9=string/stk_cc_ss_to_ussd +010407aa=string/stk_cc_ussd_to_dial +010407ab=string/stk_cc_ussd_to_dial_video +010407ac=string/stk_cc_ussd_to_ss +010407ad=string/stk_cc_ussd_to_ussd +010407ae=string/storage_internal +010407af=string/storage_sd_card +010407b0=string/storage_sd_card_label +010407b1=string/storage_usb +010407b2=string/storage_usb_drive +010407b3=string/storage_usb_drive_label +010407b4=string/submit +010407b5=string/suspended_widget_accessibility +010407b6=string/sync_binding_label +010407b7=string/sync_do_nothing +010407b8=string/sync_really_delete +010407b9=string/sync_too_many_deletes +010407ba=string/sync_too_many_deletes_desc +010407bb=string/sync_undo_deletes +010407bc=string/system_error_manufacturer +010407bd=string/system_error_wipe_data +010407be=string/system_ui_date_pattern +010407bf=string/taking_remote_bugreport_notification_title +010407c0=string/terabyteShort +010407c1=string/test_harness_mode_notification_message +010407c2=string/test_harness_mode_notification_title +010407c3=string/textSelectionCABTitle +010407c4=string/text_copied +010407c5=string/time_of_day +010407c6=string/time_picker_decrement_hour_button +010407c7=string/time_picker_decrement_minute_button +010407c8=string/time_picker_decrement_set_am_button +010407c9=string/time_picker_dialog_title +010407ca=string/time_picker_header_text +010407cb=string/time_picker_hour_label +010407cc=string/time_picker_increment_hour_button +010407cd=string/time_picker_increment_minute_button +010407ce=string/time_picker_increment_set_pm_button +010407cf=string/time_picker_input_error +010407d0=string/time_picker_minute_label +010407d1=string/time_picker_mode +010407d2=string/time_picker_prompt_label +010407d3=string/time_picker_radial_mode_description +010407d4=string/time_picker_text_input_mode_description +010407d5=string/time_placeholder +010407d6=string/toolbar_collapse_description +010407d7=string/tooltip_popup_title +010407d8=string/turn_off_radio +010407d9=string/turn_on_radio +010407da=string/tutorial_double_tap_to_zoom_message_short +010407db=string/twilight_service +010407dc=string/undo +010407dd=string/unpin_specific_target +010407de=string/unpin_target +010407df=string/unread_convo_overflow +010407e0=string/unsupported_compile_sdk_check_update +010407e1=string/unsupported_compile_sdk_message +010407e2=string/unsupported_compile_sdk_show +010407e3=string/unsupported_display_size_message +010407e4=string/unsupported_display_size_show +010407e5=string/upload_file +010407e6=string/usb_accessory_notification_title +010407e7=string/usb_charging_notification_title +010407e8=string/usb_contaminant_detected_message +010407e9=string/usb_contaminant_detected_title +010407ea=string/usb_contaminant_not_detected_message +010407eb=string/usb_contaminant_not_detected_title +010407ec=string/usb_device_resolve_prompt_warn +010407ed=string/usb_midi_notification_title +010407ee=string/usb_midi_peripheral_manufacturer_name +010407ef=string/usb_midi_peripheral_name +010407f0=string/usb_midi_peripheral_product_name +010407f1=string/usb_mtp_launch_notification_description +010407f2=string/usb_mtp_launch_notification_title +010407f3=string/usb_mtp_notification_title +010407f4=string/usb_notification_message +010407f5=string/usb_power_notification_message +010407f6=string/usb_ptp_notification_title +010407f7=string/usb_supplying_notification_title +010407f8=string/usb_tether_notification_title +010407f9=string/usb_unsupported_audio_accessory_message +010407fa=string/usb_unsupported_audio_accessory_title +010407fb=string/use_a_different_app +010407fc=string/user_creation_account_exists +010407fd=string/user_creation_adding +010407fe=string/user_logging_out_message +010407ff=string/user_owner_label +01040800=string/user_switched +01040801=string/user_switching_message +01040802=string/validity_period +01040803=string/volume_alarm +01040804=string/volume_bluetooth_call +01040805=string/volume_call +01040806=string/volume_dialog_ringer_guidance_silent +01040807=string/volume_dialog_ringer_guidance_vibrate +01040808=string/volume_icon_description_bluetooth +01040809=string/volume_icon_description_incall +0104080a=string/volume_icon_description_media +0104080b=string/volume_icon_description_notification +0104080c=string/volume_icon_description_ringer +0104080d=string/volume_music +0104080e=string/volume_music_hint_playing_through_bluetooth +0104080f=string/volume_music_hint_silent_ringtone_selected +01040810=string/volume_notification +01040811=string/volume_ringtone +01040812=string/volume_unknown +01040813=string/vpn_lockdown_config +01040814=string/vpn_lockdown_connected +01040815=string/vpn_lockdown_connecting +01040816=string/vpn_lockdown_disconnected +01040817=string/vpn_lockdown_error +01040818=string/vpn_text +01040819=string/vpn_text_long +0104081a=string/vpn_title +0104081b=string/vpn_title_long +0104081c=string/vr_listener_binding_label +0104081d=string/wait +0104081e=string/wallpaper_binding_label +0104081f=string/webpage_unresponsive +01040820=string/websearch +01040821=string/week +01040822=string/weeks +01040823=string/wfcRegErrorTitle +01040824=string/wfcSpnFormat +01040825=string/wfcSpnFormat_spn +01040826=string/wfcSpnFormat_spn_vowifi +01040827=string/wfcSpnFormat_spn_wifi +01040828=string/wfcSpnFormat_spn_wifi_calling +01040829=string/wfcSpnFormat_spn_wifi_calling_vo_hyphen +0104082a=string/wfcSpnFormat_spn_wlan_call +0104082b=string/wfcSpnFormat_vowifi +0104082c=string/wfcSpnFormat_wifi +0104082d=string/wfcSpnFormat_wifi_calling +0104082e=string/wfcSpnFormat_wifi_calling_bar_spn +0104082f=string/wfcSpnFormat_wifi_calling_wo_hyphen +01040830=string/wfcSpnFormat_wlan_call +01040831=string/wfc_mode_cellular_preferred_summary +01040832=string/wfc_mode_wifi_only_summary +01040833=string/wfc_mode_wifi_preferred_summary +01040834=string/whichApplication +01040835=string/whichApplicationLabel +01040836=string/whichApplicationNamed +01040837=string/whichEditApplication +01040838=string/whichEditApplicationLabel +01040839=string/whichEditApplicationNamed +0104083a=string/whichGiveAccessToApplicationLabel +0104083b=string/whichHomeApplication +0104083c=string/whichHomeApplicationLabel +0104083d=string/whichHomeApplicationNamed +0104083e=string/whichImageCaptureApplication +0104083f=string/whichImageCaptureApplicationLabel +01040840=string/whichImageCaptureApplicationNamed +01040841=string/whichOpenHostLinksWith +01040842=string/whichOpenHostLinksWithApp +01040843=string/whichOpenLinksWith +01040844=string/whichOpenLinksWithApp +01040845=string/whichSendApplication +01040846=string/whichSendApplicationLabel +01040847=string/whichSendApplicationNamed +01040848=string/whichSendToApplication +01040849=string/whichSendToApplicationLabel +0104084a=string/whichSendToApplicationNamed +0104084b=string/whichViewApplication +0104084c=string/whichViewApplicationLabel +0104084d=string/whichViewApplicationNamed +0104084e=string/widget_default_class_name +0104084f=string/widget_default_package_name +01040850=string/wifi_available_sign_in +01040851=string/wifi_calling_off_summary +01040852=string/wifi_no_internet +01040853=string/wifi_no_internet_detailed +01040854=string/wireless_display_route_description +01040855=string/work_mode_off_message +01040856=string/work_mode_off_title +01040857=string/work_mode_turn_on +01040858=string/work_profile_deleted +01040859=string/work_profile_deleted_description_dpm_wipe +0104085a=string/work_profile_deleted_details +0104085b=string/work_profile_deleted_reason_maximum_password_failure +0104085c=string/write_fail_reason_cancelled +0104085d=string/write_fail_reason_cannot_write +0104085e=string/year +0104085f=string/years +01040860=string/zen_mode_alarm +01040861=string/zen_mode_default_events_name +01040862=string/zen_mode_default_every_night_name +01040863=string/zen_mode_default_weekends_name +01040864=string/zen_mode_default_weeknights_name +01040865=string/zen_mode_downtime_feature_name +01040866=string/zen_mode_feature_name +01040867=string/zen_mode_forever +01040868=string/zen_mode_forever_dnd +01040869=string/zen_mode_rule_name_combination +0104086a=string/zen_mode_until +0104086b=string/zen_upgrade_notification_content +0104086c=string/zen_upgrade_notification_title +0104086d=string/zen_upgrade_notification_visd_content +0104086e=string/zen_upgrade_notification_visd_title +01050000=dimen/app_icon_size +01050001=dimen/thumbnail_height +01050002=dimen/thumbnail_width +01050003=dimen/dialog_min_width_major +01050004=dimen/dialog_min_width_minor +01050005=dimen/notification_large_icon_width +01050006=dimen/notification_large_icon_height +01050007=dimen/config_restrictedIconSize +01050008=dimen/accessibility_magnification_indicator_width +01050009=dimen/accessibility_touch_slop +0105000a=dimen/action_bar_button_margin +0105000b=dimen/action_bar_button_max_width +0105000c=dimen/action_bar_content_inset_material +0105000d=dimen/action_bar_content_inset_with_nav +0105000e=dimen/action_bar_default_height +0105000f=dimen/action_bar_default_height_material +01050010=dimen/action_bar_default_padding_end_material +01050011=dimen/action_bar_default_padding_start_material +01050012=dimen/action_bar_elevation_material +01050013=dimen/action_bar_icon_vertical_padding +01050014=dimen/action_bar_icon_vertical_padding_material +01050015=dimen/action_bar_margin +01050016=dimen/action_bar_margin_end +01050017=dimen/action_bar_margin_start +01050018=dimen/action_bar_overflow_padding_end_material +01050019=dimen/action_bar_overflow_padding_start_material +0105001a=dimen/action_bar_stacked_max_height +0105001b=dimen/action_bar_stacked_tab_max_width +0105001c=dimen/action_bar_subtitle_bottom_margin +0105001d=dimen/action_bar_subtitle_bottom_margin_material +0105001e=dimen/action_bar_subtitle_text_size +0105001f=dimen/action_bar_subtitle_top_margin +01050020=dimen/action_bar_subtitle_top_margin_material +01050021=dimen/action_bar_title_text_size +01050022=dimen/action_bar_toggle_internal_padding +01050023=dimen/action_button_min_height_material +01050024=dimen/action_button_min_width +01050025=dimen/action_button_min_width_material +01050026=dimen/action_button_min_width_overflow_material +01050027=dimen/activity_chooser_popup_min_width +01050028=dimen/aerr_padding_list_bottom +01050029=dimen/aerr_padding_list_top +0105002a=dimen/alert_dialog_button_bar_height +0105002b=dimen/alert_dialog_button_bar_width +0105002c=dimen/alert_dialog_round_padding +0105002d=dimen/alert_dialog_title_height +0105002e=dimen/ambient_shadow_alpha +0105002f=dimen/app_header_height +01050030=dimen/autofill_dataset_picker_max_height +01050031=dimen/autofill_dataset_picker_max_width +01050032=dimen/autofill_elevation +01050033=dimen/autofill_save_button_bar_padding +01050034=dimen/autofill_save_custom_subtitle_max_height +01050035=dimen/autofill_save_icon_max_size +01050036=dimen/autofill_save_icon_size +01050037=dimen/autofill_save_inner_padding +01050038=dimen/autofill_save_outer_top_margin +01050039=dimen/autofill_save_outer_top_padding +0105003a=dimen/autofill_save_scroll_view_top_margin +0105003b=dimen/autofill_save_title_start_padding +0105003c=dimen/bubble_gone_padding_end +0105003d=dimen/bubble_visible_padding_end +0105003e=dimen/button_bar_layout_end_padding +0105003f=dimen/button_bar_layout_start_padding +01050040=dimen/button_bar_layout_top_padding +01050041=dimen/button_elevation_material +01050042=dimen/button_end_margin +01050043=dimen/button_inset_horizontal_material +01050044=dimen/button_inset_vertical_material +01050045=dimen/button_layout_height +01050046=dimen/button_padding_horizontal_material +01050047=dimen/button_padding_vertical_material +01050048=dimen/button_pressed_z_material +01050049=dimen/car_action1_size +0105004a=dimen/car_action2_size +0105004b=dimen/car_app_bar_height +0105004c=dimen/car_body1_size +0105004d=dimen/car_body2_size +0105004e=dimen/car_body3_size +0105004f=dimen/car_body4_size +01050050=dimen/car_body5_size +01050051=dimen/car_borderless_button_horizontal_padding +01050052=dimen/car_button_height +01050053=dimen/car_button_horizontal_padding +01050054=dimen/car_button_min_width +01050055=dimen/car_button_radius +01050056=dimen/car_card_action_bar_height +01050057=dimen/car_card_header_height +01050058=dimen/car_dialog_action_bar_height +01050059=dimen/car_double_line_list_item_height +0105005a=dimen/car_headline1_size +0105005b=dimen/car_headline2_size +0105005c=dimen/car_headline3_size +0105005d=dimen/car_headline4_size +0105005e=dimen/car_icon_size +0105005f=dimen/car_keyline_1 +01050060=dimen/car_keyline_1_keyline_3_diff +01050061=dimen/car_keyline_2 +01050062=dimen/car_keyline_3 +01050063=dimen/car_keyline_4 +01050064=dimen/car_label1_size +01050065=dimen/car_label2_size +01050066=dimen/car_large_avatar_size +01050067=dimen/car_list_divider_height +01050068=dimen/car_margin +01050069=dimen/car_padding_0 +0105006a=dimen/car_padding_1 +0105006b=dimen/car_padding_2 +0105006c=dimen/car_padding_3 +0105006d=dimen/car_padding_4 +0105006e=dimen/car_padding_5 +0105006f=dimen/car_padding_6 +01050070=dimen/car_pill_button_size +01050071=dimen/car_preference_category_icon_size +01050072=dimen/car_preference_icon_size +01050073=dimen/car_preference_row_vertical_margin +01050074=dimen/car_primary_icon_size +01050075=dimen/car_progress_bar_height +01050076=dimen/car_radius_1 +01050077=dimen/car_radius_2 +01050078=dimen/car_radius_3 +01050079=dimen/car_radius_5 +0105007a=dimen/car_secondary_icon_size +0105007b=dimen/car_seekbar_height +0105007c=dimen/car_seekbar_padding +0105007d=dimen/car_seekbar_text_overlap +0105007e=dimen/car_seekbar_thumb_size +0105007f=dimen/car_seekbar_thumb_stroke +01050080=dimen/car_single_line_list_item_height +01050081=dimen/car_textview_fading_edge_length +01050082=dimen/car_title2_size +01050083=dimen/car_title_size +01050084=dimen/car_touch_target_size +01050085=dimen/cascading_menus_min_smallest_width +01050086=dimen/chooser_action_button_icon_size +01050087=dimen/chooser_badge_size +01050088=dimen/chooser_corner_radius +01050089=dimen/chooser_direct_share_label_placeholder_max_width +0105008a=dimen/chooser_edge_margin_normal +0105008b=dimen/chooser_edge_margin_thin +0105008c=dimen/chooser_grid_padding +0105008d=dimen/chooser_header_scroll_elevation +0105008e=dimen/chooser_icon_size +0105008f=dimen/chooser_max_collapsed_height +01050090=dimen/chooser_preview_image_border +01050091=dimen/chooser_preview_image_font_size +01050092=dimen/chooser_preview_image_max_dimen +01050093=dimen/chooser_preview_width +01050094=dimen/chooser_row_text_option_translate +01050095=dimen/chooser_service_spacing +01050096=dimen/chooser_view_spacing +01050097=dimen/circular_display_mask_thickness +01050098=dimen/config_alertDialogSelectionScrollOffset +01050099=dimen/config_ambiguousGestureMultiplier +0105009a=dimen/config_appTransitionAnimationDurationScaleDefault +0105009b=dimen/config_backGestureInset +0105009c=dimen/config_bottomDialogCornerRadius +0105009d=dimen/config_buttonCornerRadius +0105009e=dimen/config_closeToSquareDisplayMaxAspectRatio +0105009f=dimen/config_dialogCornerRadius +010500a0=dimen/config_displayWhiteBalanceBrightnessFilterIntercept +010500a1=dimen/config_displayWhiteBalanceColorTemperatureFilterIntercept +010500a2=dimen/config_displayWhiteBalanceHighLightAmbientColorTemperature +010500a3=dimen/config_displayWhiteBalanceLowLightAmbientColorTemperature +010500a4=dimen/config_highResTaskSnapshotScale +010500a5=dimen/config_horizontalScrollFactor +010500a6=dimen/config_inCallNotificationVolume +010500a7=dimen/config_lowResTaskSnapshotScale +010500a8=dimen/config_mediaMetadataBitmapMaxSize +010500a9=dimen/config_minScalingSpan +010500aa=dimen/config_minScalingTouchMajor +010500ab=dimen/config_minScrollbarTouchTarget +010500ac=dimen/config_pictureInPictureAspectRatioLimitForMinSize +010500ad=dimen/config_pictureInPictureDefaultAspectRatio +010500ae=dimen/config_pictureInPictureDefaultSizePercent +010500af=dimen/config_pictureInPictureMaxAspectRatio +010500b0=dimen/config_pictureInPictureMinAspectRatio +010500b1=dimen/config_prefDialogWidth +010500b2=dimen/config_preferredHyphenationFrequency +010500b3=dimen/config_progressBarCornerRadius +010500b4=dimen/config_qsTileStrokeWidthActive +010500b5=dimen/config_qsTileStrokeWidthInactive +010500b6=dimen/config_screenBrightnessDimFloat +010500b7=dimen/config_screenBrightnessDozeFloat +010500b8=dimen/config_screenBrightnessSettingDefaultFloat +010500b9=dimen/config_screenBrightnessSettingForVrDefaultFloat +010500ba=dimen/config_screenBrightnessSettingForVrMaximumFloat +010500bb=dimen/config_screenBrightnessSettingForVrMinimumFloat +010500bc=dimen/config_screenBrightnessSettingMaximumFloat +010500bd=dimen/config_screenBrightnessSettingMinimumFloat +010500be=dimen/config_screen_magnification_scaling_threshold +010500bf=dimen/config_scrollFactor +010500c0=dimen/config_scrollbarSize +010500c1=dimen/config_signalCutoutHeightFraction +010500c2=dimen/config_signalCutoutWidthFraction +010500c3=dimen/config_verticalScrollFactor +010500c4=dimen/config_viewConfigurationHoverSlop +010500c5=dimen/config_viewConfigurationTouchSlop +010500c6=dimen/config_viewMaxFlingVelocity +010500c7=dimen/config_viewMinFlingVelocity +010500c8=dimen/config_wallpaperMaxScale +010500c9=dimen/content_rect_bottom_clip_allowance +010500ca=dimen/control_corner_material +010500cb=dimen/control_inset_material +010500cc=dimen/control_padding_material +010500cd=dimen/conversation_avatar_size +010500ce=dimen/conversation_avatar_size_group_expanded +010500cf=dimen/conversation_badge_side_margin +010500d0=dimen/conversation_badge_side_margin_group_expanded +010500d1=dimen/conversation_badge_side_margin_group_expanded_face_pile +010500d2=dimen/conversation_content_start +010500d3=dimen/conversation_expand_button_size +010500d4=dimen/conversation_expand_button_top_margin_expanded +010500d5=dimen/conversation_face_pile_avatar_size +010500d6=dimen/conversation_face_pile_avatar_size_group_expanded +010500d7=dimen/conversation_face_pile_protection_width +010500d8=dimen/conversation_face_pile_protection_width_expanded +010500d9=dimen/conversation_header_expanded_padding_end +010500da=dimen/conversation_icon_container_top_padding +010500db=dimen/conversation_icon_container_top_padding_small_avatar +010500dc=dimen/conversation_icon_size_badged +010500dd=dimen/cross_profile_apps_thumbnail_size +010500de=dimen/date_picker_date_label_size +010500df=dimen/date_picker_day_height +010500e0=dimen/date_picker_day_of_week_height +010500e1=dimen/date_picker_day_of_week_text_size +010500e2=dimen/date_picker_day_selector_radius +010500e3=dimen/date_picker_day_text_size +010500e4=dimen/date_picker_day_width +010500e5=dimen/date_picker_month_height +010500e6=dimen/date_picker_month_text_size +010500e7=dimen/date_picker_year_label_size +010500e8=dimen/datepicker_component_width +010500e9=dimen/datepicker_dialog_width +010500ea=dimen/datepicker_header_height +010500eb=dimen/datepicker_header_text_size +010500ec=dimen/datepicker_list_year_activated_label_size +010500ed=dimen/datepicker_list_year_label_size +010500ee=dimen/datepicker_selected_date_day_size +010500ef=dimen/datepicker_selected_date_month_size +010500f0=dimen/datepicker_selected_date_year_size +010500f1=dimen/datepicker_view_animator_height +010500f2=dimen/datepicker_year_label_height +010500f3=dimen/day_picker_button_margin_top +010500f4=dimen/day_picker_padding_horizontal +010500f5=dimen/day_picker_padding_top +010500f6=dimen/default_app_widget_padding_bottom +010500f7=dimen/default_app_widget_padding_left +010500f8=dimen/default_app_widget_padding_right +010500f9=dimen/default_app_widget_padding_top +010500fa=dimen/default_gap +010500fb=dimen/default_magnifier_corner_radius +010500fc=dimen/default_magnifier_elevation +010500fd=dimen/default_magnifier_height +010500fe=dimen/default_magnifier_horizontal_offset +010500ff=dimen/default_magnifier_vertical_offset +01050100=dimen/default_magnifier_width +01050101=dimen/default_magnifier_zoom +01050102=dimen/default_minimal_size_pip_resizable_task +01050103=dimen/default_minimal_size_resizable_task +01050104=dimen/dialog_corner_radius +01050105=dimen/dialog_fixed_height_major +01050106=dimen/dialog_fixed_height_minor +01050107=dimen/dialog_fixed_width_major +01050108=dimen/dialog_fixed_width_minor +01050109=dimen/dialog_list_padding_bottom_no_buttons +0105010a=dimen/dialog_list_padding_top_no_title +0105010b=dimen/dialog_no_title_padding_top +0105010c=dimen/dialog_padding +0105010d=dimen/dialog_padding_material +0105010e=dimen/dialog_padding_top_material +0105010f=dimen/dialog_title_divider_material +01050110=dimen/disabled_alpha_device_default +01050111=dimen/disabled_alpha_leanback_formwizard +01050112=dimen/disabled_alpha_material_dark +01050113=dimen/disabled_alpha_material_light +01050114=dimen/display_cutout_touchable_region_size +01050115=dimen/docked_stack_divider_insets +01050116=dimen/docked_stack_divider_thickness +01050117=dimen/docked_stack_minimize_thickness +01050118=dimen/dropdownitem_icon_width +01050119=dimen/dropdownitem_text_padding_left +0105011a=dimen/dropdownitem_text_padding_right +0105011b=dimen/edit_text_inset_bottom_material +0105011c=dimen/edit_text_inset_horizontal_material +0105011d=dimen/edit_text_inset_top_material +0105011e=dimen/emphasized_button_stroke_width +0105011f=dimen/expanded_group_conversation_message_padding +01050120=dimen/face_unlock_height +01050121=dimen/fast_scroller_minimum_touch_target +01050122=dimen/floating_toolbar_height +01050123=dimen/floating_toolbar_horizontal_margin +01050124=dimen/floating_toolbar_icon_text_spacing +01050125=dimen/floating_toolbar_maximum_overflow_height +01050126=dimen/floating_toolbar_menu_button_minimum_width +01050127=dimen/floating_toolbar_menu_button_side_padding +01050128=dimen/floating_toolbar_menu_image_button_vertical_padding +01050129=dimen/floating_toolbar_menu_image_button_width +0105012a=dimen/floating_toolbar_menu_image_width +0105012b=dimen/floating_toolbar_minimum_overflow_height +0105012c=dimen/floating_toolbar_overflow_image_button_width +0105012d=dimen/floating_toolbar_overflow_side_padding +0105012e=dimen/floating_toolbar_preferred_width +0105012f=dimen/floating_toolbar_text_size +01050130=dimen/floating_toolbar_vertical_margin +01050131=dimen/floating_window_margin_bottom +01050132=dimen/floating_window_margin_left +01050133=dimen/floating_window_margin_right +01050134=dimen/floating_window_margin_top +01050135=dimen/floating_window_z +01050136=dimen/glowpadview_target_placement_radius +01050137=dimen/harmful_app_icon_name_padding +01050138=dimen/harmful_app_icon_size +01050139=dimen/harmful_app_message_line_spacing_modifier +0105013a=dimen/harmful_app_message_padding_bottom +0105013b=dimen/harmful_app_message_padding_left +0105013c=dimen/harmful_app_message_padding_right +0105013d=dimen/harmful_app_name_padding_bottom +0105013e=dimen/harmful_app_name_padding_left +0105013f=dimen/harmful_app_name_padding_right +01050140=dimen/harmful_app_name_padding_top +01050141=dimen/harmful_app_padding_top +01050142=dimen/highlight_alpha_material_colored +01050143=dimen/highlight_alpha_material_dark +01050144=dimen/highlight_alpha_material_light +01050145=dimen/hint_alpha_material_dark +01050146=dimen/hint_alpha_material_light +01050147=dimen/hint_pressed_alpha_material_dark +01050148=dimen/hint_pressed_alpha_material_light +01050149=dimen/image_margin_start +0105014a=dimen/image_size +0105014b=dimen/immersive_mode_cling_width +0105014c=dimen/importance_ring_anim_max_stroke_width +0105014d=dimen/importance_ring_size +0105014e=dimen/importance_ring_stroke_width +0105014f=dimen/input_extract_action_button_height +01050150=dimen/input_extract_action_button_width +01050151=dimen/input_extract_action_icon_padding +01050152=dimen/item_touch_helper_max_drag_scroll_per_frame +01050153=dimen/item_touch_helper_swipe_escape_max_velocity +01050154=dimen/item_touch_helper_swipe_escape_velocity +01050155=dimen/keyguard_avatar_frame_shadow_radius +01050156=dimen/keyguard_avatar_frame_stroke_width +01050157=dimen/keyguard_avatar_name_size +01050158=dimen/keyguard_avatar_size +01050159=dimen/keyguard_lockscreen_clock_font_size +0105015a=dimen/keyguard_lockscreen_outerring_diameter +0105015b=dimen/keyguard_lockscreen_pin_margin_left +0105015c=dimen/keyguard_lockscreen_status_line_clockfont_bottom_margin +0105015d=dimen/keyguard_lockscreen_status_line_clockfont_top_margin +0105015e=dimen/keyguard_lockscreen_status_line_font_right_margin +0105015f=dimen/keyguard_lockscreen_status_line_font_size +01050160=dimen/keyguard_muliuser_selector_margin +01050161=dimen/keyguard_pattern_unlock_clock_font_size +01050162=dimen/keyguard_pattern_unlock_status_line_font_size +01050163=dimen/kg_clock_top_margin +01050164=dimen/kg_edge_swipe_region_size +01050165=dimen/kg_emergency_button_shift +01050166=dimen/kg_key_horizontal_gap +01050167=dimen/kg_key_vertical_gap +01050168=dimen/kg_pin_key_height +01050169=dimen/kg_runway_lights_height +0105016a=dimen/kg_runway_lights_top_margin +0105016b=dimen/kg_runway_lights_vertical_padding +0105016c=dimen/kg_secure_padding_height +0105016d=dimen/kg_security_panel_height +0105016e=dimen/kg_security_view_height +0105016f=dimen/kg_small_widget_height +01050170=dimen/kg_squashed_layout_threshold +01050171=dimen/kg_status_clock_font_size +01050172=dimen/kg_status_date_font_size +01050173=dimen/kg_status_line_font_right_margin +01050174=dimen/kg_status_line_font_size +01050175=dimen/kg_widget_pager_bottom_padding +01050176=dimen/kg_widget_pager_horizontal_padding +01050177=dimen/kg_widget_pager_top_padding +01050178=dimen/kg_widget_view_height +01050179=dimen/kg_widget_view_width +0105017a=dimen/leanback_alert_dialog_horizontal_margin +0105017b=dimen/leanback_alert_dialog_vertical_margin +0105017c=dimen/leanback_setup_alpha_activity_in_bkg_end +0105017d=dimen/leanback_setup_alpha_activity_in_bkg_start +0105017e=dimen/leanback_setup_alpha_activity_out_bkg_end +0105017f=dimen/leanback_setup_alpha_activity_out_bkg_start +01050180=dimen/leanback_setup_alpha_animiation_max_opacity +01050181=dimen/leanback_setup_alpha_animiation_min_opacity +01050182=dimen/leanback_setup_alpha_backward_in_content_end +01050183=dimen/leanback_setup_alpha_backward_in_content_start +01050184=dimen/leanback_setup_alpha_backward_out_content_end +01050185=dimen/leanback_setup_alpha_backward_out_content_start +01050186=dimen/leanback_setup_alpha_forward_in_content_end +01050187=dimen/leanback_setup_alpha_forward_in_content_start +01050188=dimen/leanback_setup_alpha_forward_out_content_end +01050189=dimen/leanback_setup_alpha_forward_out_content_start +0105018a=dimen/leanback_setup_translation_backward_out_content_end +0105018b=dimen/leanback_setup_translation_backward_out_content_end_v4 +0105018c=dimen/leanback_setup_translation_backward_out_content_start +0105018d=dimen/leanback_setup_translation_backward_out_content_start_v4 +0105018e=dimen/leanback_setup_translation_content_cliff +0105018f=dimen/leanback_setup_translation_content_resting_point +01050190=dimen/leanback_setup_translation_forward_in_content_end +01050191=dimen/leanback_setup_translation_forward_in_content_end_v4 +01050192=dimen/leanback_setup_translation_forward_in_content_start +01050193=dimen/leanback_setup_translation_forward_in_content_start_v4 +01050194=dimen/light_radius +01050195=dimen/light_y +01050196=dimen/light_z +01050197=dimen/list_item_padding_end_material +01050198=dimen/list_item_padding_horizontal_material +01050199=dimen/list_item_padding_start_material +0105019a=dimen/lock_pattern_dot_line_width +0105019b=dimen/lock_pattern_dot_size +0105019c=dimen/lock_pattern_dot_size_activated +0105019d=dimen/media_notification_action_button_size +0105019e=dimen/media_notification_actions_padding_bottom +0105019f=dimen/media_notification_expanded_image_margin_bottom +010501a0=dimen/media_notification_expanded_image_max_size +010501a1=dimen/media_notification_header_height +010501a2=dimen/messaging_avatar_size +010501a3=dimen/messaging_group_sending_progress_size +010501a4=dimen/messaging_group_singleline_sender_padding_end +010501a5=dimen/messaging_image_extra_spacing +010501a6=dimen/messaging_image_max_height +010501a7=dimen/messaging_image_min_size +010501a8=dimen/messaging_image_rounding +010501a9=dimen/messaging_layout_margin_end +010501aa=dimen/min_xlarge_screen_width +010501ab=dimen/navigation_bar_frame_height +010501ac=dimen/navigation_bar_frame_height_landscape +010501ad=dimen/navigation_bar_gesture_height +010501ae=dimen/navigation_bar_height +010501af=dimen/navigation_bar_height_car_mode +010501b0=dimen/navigation_bar_height_landscape +010501b1=dimen/navigation_bar_height_landscape_car_mode +010501b2=dimen/navigation_bar_height_portrait +010501b3=dimen/navigation_bar_width +010501b4=dimen/navigation_bar_width_car_mode +010501b5=dimen/notification_action_disabled_alpha +010501b6=dimen/notification_action_emphasized_height +010501b7=dimen/notification_action_list_height +010501b8=dimen/notification_action_list_margin_top +010501b9=dimen/notification_alerted_size +010501ba=dimen/notification_badge_size +010501bb=dimen/notification_big_picture_max_height +010501bc=dimen/notification_big_picture_max_height_low_ram +010501bd=dimen/notification_big_picture_max_width +010501be=dimen/notification_big_picture_max_width_low_ram +010501bf=dimen/notification_content_image_margin_end +010501c0=dimen/notification_content_margin +010501c1=dimen/notification_content_margin_end +010501c2=dimen/notification_content_margin_start +010501c3=dimen/notification_content_margin_top +010501c4=dimen/notification_conversation_header_separating_margin +010501c5=dimen/notification_custom_view_max_image_height +010501c6=dimen/notification_custom_view_max_image_height_low_ram +010501c7=dimen/notification_custom_view_max_image_width +010501c8=dimen/notification_custom_view_max_image_width_low_ram +010501c9=dimen/notification_expand_button_padding_top +010501ca=dimen/notification_header_app_name_margin_start +010501cb=dimen/notification_header_background_height +010501cc=dimen/notification_header_expand_icon_size +010501cd=dimen/notification_header_height +010501ce=dimen/notification_header_icon_margin_end +010501cf=dimen/notification_header_icon_size +010501d0=dimen/notification_header_icon_size_ambient +010501d1=dimen/notification_header_margin_bottom +010501d2=dimen/notification_header_padding_bottom +010501d3=dimen/notification_header_padding_top +010501d4=dimen/notification_header_separating_margin +010501d5=dimen/notification_header_shrink_min_width +010501d6=dimen/notification_inbox_item_top_padding +010501d7=dimen/notification_large_icon_circle_padding +010501d8=dimen/notification_media_image_margin_end +010501d9=dimen/notification_media_image_max_height +010501da=dimen/notification_media_image_max_height_low_ram +010501db=dimen/notification_media_image_max_width +010501dc=dimen/notification_media_image_max_width_low_ram +010501dd=dimen/notification_messaging_spacing +010501de=dimen/notification_min_content_height +010501df=dimen/notification_min_height +010501e0=dimen/notification_progress_bar_height +010501e1=dimen/notification_progress_margin_top +010501e2=dimen/notification_reply_inset +010501e3=dimen/notification_right_icon_size +010501e4=dimen/notification_right_icon_size_low_ram +010501e5=dimen/notification_secondary_text_disabled_alpha +010501e6=dimen/notification_subtext_size +010501e7=dimen/notification_text_margin_top +010501e8=dimen/notification_text_size +010501e9=dimen/notification_title_text_size +010501ea=dimen/notification_top_pad +010501eb=dimen/notification_top_pad_large_text +010501ec=dimen/notification_top_pad_large_text_narrow +010501ed=dimen/notification_top_pad_narrow +010501ee=dimen/password_keyboard_height +010501ef=dimen/password_keyboard_horizontalGap +010501f0=dimen/password_keyboard_key_height_alpha +010501f1=dimen/password_keyboard_key_height_numeric +010501f2=dimen/password_keyboard_spacebar_vertical_correction +010501f3=dimen/password_keyboard_verticalGap +010501f4=dimen/picker_bottom_margin +010501f5=dimen/picker_top_margin +010501f6=dimen/pip_minimized_visible_size +010501f7=dimen/preference_breadcrumb_paddingLeft +010501f8=dimen/preference_breadcrumb_paddingRight +010501f9=dimen/preference_breadcrumbs_padding_end_material +010501fa=dimen/preference_breadcrumbs_padding_start_material +010501fb=dimen/preference_child_padding_side +010501fc=dimen/preference_fragment_padding_bottom +010501fd=dimen/preference_fragment_padding_side +010501fe=dimen/preference_fragment_padding_side_material +010501ff=dimen/preference_fragment_padding_vertical_material +01050200=dimen/preference_icon_minWidth +01050201=dimen/preference_item_padding_inner +01050202=dimen/preference_item_padding_side +01050203=dimen/preference_screen_bottom_margin +01050204=dimen/preference_screen_header_padding_side +01050205=dimen/preference_screen_header_padding_side_material +01050206=dimen/preference_screen_header_vertical_padding +01050207=dimen/preference_screen_header_vertical_padding_material +01050208=dimen/preference_screen_side_margin +01050209=dimen/preference_screen_side_margin_material +0105020a=dimen/preference_screen_side_margin_negative +0105020b=dimen/preference_screen_side_margin_negative_material +0105020c=dimen/preference_screen_top_margin +0105020d=dimen/preference_widget_width +0105020e=dimen/primary_content_alpha_device_default +0105020f=dimen/primary_content_alpha_material_dark +01050210=dimen/primary_content_alpha_material_light +01050211=dimen/progress_bar_corner_material +01050212=dimen/progress_bar_height_material +01050213=dimen/progress_bar_size_large +01050214=dimen/progress_bar_size_medium +01050215=dimen/progress_bar_size_small +01050216=dimen/quick_qs_offset_height +01050217=dimen/quick_qs_total_height +01050218=dimen/quick_qs_total_height_with_media +01050219=dimen/resize_shadow_size +0105021a=dimen/resolver_badge_size +0105021b=dimen/resolver_button_bar_spacing +0105021c=dimen/resolver_edge_margin +0105021d=dimen/resolver_elevation +0105021e=dimen/resolver_empty_state_container_padding_bottom +0105021f=dimen/resolver_empty_state_container_padding_top +01050220=dimen/resolver_empty_state_height +01050221=dimen/resolver_empty_state_height_with_tabs +01050222=dimen/resolver_icon_margin +01050223=dimen/resolver_icon_size +01050224=dimen/resolver_max_collapsed_height +01050225=dimen/resolver_max_collapsed_height_with_default +01050226=dimen/resolver_max_collapsed_height_with_default_with_tabs +01050227=dimen/resolver_max_collapsed_height_with_tabs +01050228=dimen/resolver_max_width +01050229=dimen/resolver_small_margin +0105022a=dimen/resolver_tab_text_size +0105022b=dimen/resolver_title_padding_bottom +0105022c=dimen/restricted_icon_size_material +0105022d=dimen/rounded_corner_radius +0105022e=dimen/rounded_corner_radius_adjustment +0105022f=dimen/rounded_corner_radius_bottom +01050230=dimen/rounded_corner_radius_bottom_adjustment +01050231=dimen/rounded_corner_radius_top +01050232=dimen/rounded_corner_radius_top_adjustment +01050233=dimen/screen_percentage_05 +01050234=dimen/screen_percentage_10 +01050235=dimen/screen_percentage_12 +01050236=dimen/screen_percentage_15 +01050237=dimen/search_view_preferred_height +01050238=dimen/search_view_preferred_width +01050239=dimen/secondary_content_alpha_device_default +0105023a=dimen/secondary_content_alpha_material_dark +0105023b=dimen/secondary_content_alpha_material_light +0105023c=dimen/seekbar_thumb_exclusion_max_size +0105023d=dimen/seekbar_track_background_height_material +0105023e=dimen/seekbar_track_progress_height_material +0105023f=dimen/select_dialog_drawable_padding_start_material +01050240=dimen/select_dialog_padding_start_material +01050241=dimen/slice_icon_size +01050242=dimen/slice_padding +01050243=dimen/slice_shortcut_size +01050244=dimen/spot_shadow_alpha +01050245=dimen/status_bar_content_number_size +01050246=dimen/status_bar_edge_ignore +01050247=dimen/status_bar_height +01050248=dimen/status_bar_height_landscape +01050249=dimen/status_bar_height_portrait +0105024a=dimen/status_bar_icon_size +0105024b=dimen/status_bar_system_icon_intrinsic_size +0105024c=dimen/status_bar_system_icon_size +0105024d=dimen/subtitle_corner_radius +0105024e=dimen/subtitle_outline_width +0105024f=dimen/subtitle_shadow_offset +01050250=dimen/subtitle_shadow_radius +01050251=dimen/task_height_of_minimized_mode +01050252=dimen/text_edit_floating_toolbar_elevation +01050253=dimen/text_edit_floating_toolbar_margin +01050254=dimen/text_handle_min_size +01050255=dimen/text_line_spacing_multiplier_material +01050256=dimen/text_size_body_1_material +01050257=dimen/text_size_body_2_material +01050258=dimen/text_size_button_material +01050259=dimen/text_size_caption_material +0105025a=dimen/text_size_display_1_material +0105025b=dimen/text_size_display_2_material +0105025c=dimen/text_size_display_3_material +0105025d=dimen/text_size_display_4_material +0105025e=dimen/text_size_headline_material +0105025f=dimen/text_size_large_material +01050260=dimen/text_size_medium_material +01050261=dimen/text_size_menu_header_material +01050262=dimen/text_size_menu_material +01050263=dimen/text_size_small_material +01050264=dimen/text_size_subhead_material +01050265=dimen/text_size_subtitle_material_toolbar +01050266=dimen/text_size_title_material +01050267=dimen/text_size_title_material_toolbar +01050268=dimen/text_view_end_margin +01050269=dimen/text_view_start_margin +0105026a=dimen/textview_error_popup_default_width +0105026b=dimen/timepicker_am_top_padding +0105026c=dimen/timepicker_ampm_horizontal_padding +0105026d=dimen/timepicker_ampm_label_size +0105026e=dimen/timepicker_center_dot_radius +0105026f=dimen/timepicker_edit_text_size +01050270=dimen/timepicker_header_height +01050271=dimen/timepicker_left_side_width +01050272=dimen/timepicker_pm_top_padding +01050273=dimen/timepicker_radial_picker_dimen +01050274=dimen/timepicker_radial_picker_horizontal_margin +01050275=dimen/timepicker_radial_picker_top_margin +01050276=dimen/timepicker_selector_dot_radius +01050277=dimen/timepicker_selector_radius +01050278=dimen/timepicker_selector_stroke +01050279=dimen/timepicker_separator_padding +0105027a=dimen/timepicker_text_inset_inner +0105027b=dimen/timepicker_text_inset_normal +0105027c=dimen/timepicker_text_size_inner +0105027d=dimen/timepicker_text_size_normal +0105027e=dimen/timepicker_time_label_size +0105027f=dimen/toast_y_offset +01050280=dimen/tooltip_corner_radius +01050281=dimen/tooltip_horizontal_padding +01050282=dimen/tooltip_margin +01050283=dimen/tooltip_precise_anchor_extra_offset +01050284=dimen/tooltip_precise_anchor_threshold +01050285=dimen/tooltip_vertical_padding +01050286=dimen/tooltip_y_offset_non_touch +01050287=dimen/tooltip_y_offset_touch +01050288=dimen/waterfall_display_bottom_edge_size +01050289=dimen/waterfall_display_left_edge_size +0105028a=dimen/waterfall_display_right_edge_size +0105028b=dimen/waterfall_display_top_edge_size +01060000=color/darker_gray +01060001=color/primary_text_dark +01060002=color/primary_text_dark_nodisable +01060003=color/primary_text_light +01060004=color/primary_text_light_nodisable +01060005=color/secondary_text_dark +01060006=color/secondary_text_dark_nodisable +01060007=color/secondary_text_light +01060008=color/secondary_text_light_nodisable +01060009=color/tab_indicator_text +0106000a=color/widget_edittext_dark +0106000b=color/white +0106000c=color/black +0106000d=color/transparent +0106000e=color/background_dark +0106000f=color/background_light +01060010=color/tertiary_text_dark +01060011=color/tertiary_text_light +01060012=color/holo_blue_light +01060013=color/holo_blue_dark +01060014=color/holo_green_light +01060015=color/holo_green_dark +01060016=color/holo_red_light +01060017=color/holo_red_dark +01060018=color/holo_orange_light +01060019=color/holo_orange_dark +0106001a=color/holo_purple +0106001b=color/holo_blue_bright +0106001c=color/system_notification_accent_color +0106001d=color/Blue_700 +0106001e=color/Blue_800 +0106001f=color/GM2_grey_800 +01060020=color/Indigo_700 +01060021=color/Indigo_800 +01060022=color/Pink_700 +01060023=color/Pink_800 +01060024=color/Purple_700 +01060025=color/Purple_800 +01060026=color/Red_700 +01060027=color/Red_800 +01060028=color/Teal_700 +01060029=color/Teal_800 +0106002a=color/accent_device_default +0106002b=color/accent_device_default_50 +0106002c=color/accent_device_default_700 +0106002d=color/accent_device_default_dark +0106002e=color/accent_device_default_dark_60_percent_opacity +0106002f=color/accent_device_default_light +01060030=color/accent_material_dark +01060031=color/accent_material_light +01060032=color/accessibility_focus_highlight +01060033=color/autofill_background_material_dark +01060034=color/autofill_background_material_light +01060035=color/autofilled_highlight +01060036=color/background_cache_hint_selector_device_default +01060037=color/background_cache_hint_selector_holo_dark +01060038=color/background_cache_hint_selector_holo_light +01060039=color/background_cache_hint_selector_material_dark +0106003a=color/background_cache_hint_selector_material_light +0106003b=color/background_device_default_dark +0106003c=color/background_device_default_light +0106003d=color/background_floating_device_default_dark +0106003e=color/background_floating_device_default_light +0106003f=color/background_floating_material_dark +01060040=color/background_floating_material_light +01060041=color/background_holo_dark +01060042=color/background_holo_light +01060043=color/background_leanback_dark +01060044=color/background_leanback_light +01060045=color/background_material_dark +01060046=color/background_material_light +01060047=color/bright_foreground_dark +01060048=color/bright_foreground_dark_disabled +01060049=color/bright_foreground_dark_inverse +0106004a=color/bright_foreground_disabled_holo_dark +0106004b=color/bright_foreground_disabled_holo_light +0106004c=color/bright_foreground_holo_dark +0106004d=color/bright_foreground_holo_light +0106004e=color/bright_foreground_inverse_holo_dark +0106004f=color/bright_foreground_inverse_holo_light +01060050=color/bright_foreground_light +01060051=color/bright_foreground_light_disabled +01060052=color/bright_foreground_light_inverse +01060053=color/btn_colored_background_material +01060054=color/btn_colored_borderless_text_material +01060055=color/btn_colored_text_material +01060056=color/btn_default_material_dark +01060057=color/btn_default_material_light +01060058=color/btn_watch_default_dark +01060059=color/button_material_dark +0106005a=color/button_material_light +0106005b=color/button_normal_device_default_dark +0106005c=color/car_accent +0106005d=color/car_accent_dark +0106005e=color/car_accent_light +0106005f=color/car_action1 +01060060=color/car_action1_dark +01060061=color/car_action1_light +01060062=color/car_background +01060063=color/car_blue_100 +01060064=color/car_blue_200 +01060065=color/car_blue_300 +01060066=color/car_blue_400 +01060067=color/car_blue_50 +01060068=color/car_blue_500 +01060069=color/car_blue_600 +0106006a=color/car_blue_700 +0106006b=color/car_blue_800 +0106006c=color/car_blue_900 +0106006d=color/car_blue_grey_800 +0106006e=color/car_blue_grey_900 +0106006f=color/car_body1 +01060070=color/car_body1_dark +01060071=color/car_body1_light +01060072=color/car_body2 +01060073=color/car_body2_dark +01060074=color/car_body2_light +01060075=color/car_body3 +01060076=color/car_body3_dark +01060077=color/car_body3_light +01060078=color/car_body4 +01060079=color/car_body4_dark +0106007a=color/car_body4_light +0106007b=color/car_borderless_button_text_color +0106007c=color/car_button_text_color +0106007d=color/car_card +0106007e=color/car_card_dark +0106007f=color/car_card_light +01060080=color/car_card_ripple_background +01060081=color/car_card_ripple_background_dark +01060082=color/car_card_ripple_background_inverse +01060083=color/car_card_ripple_background_light +01060084=color/car_colorPrimary +01060085=color/car_colorPrimaryDark +01060086=color/car_colorSecondary +01060087=color/car_cyan_100 +01060088=color/car_cyan_200 +01060089=color/car_cyan_300 +0106008a=color/car_cyan_400 +0106008b=color/car_cyan_50 +0106008c=color/car_cyan_500 +0106008d=color/car_cyan_600 +0106008e=color/car_cyan_700 +0106008f=color/car_cyan_800 +01060090=color/car_cyan_900 +01060091=color/car_dark_blue_grey_1000 +01060092=color/car_dark_blue_grey_600 +01060093=color/car_dark_blue_grey_700 +01060094=color/car_dark_blue_grey_800 +01060095=color/car_dark_blue_grey_900 +01060096=color/car_green_100 +01060097=color/car_green_200 +01060098=color/car_green_300 +01060099=color/car_green_400 +0106009a=color/car_green_50 +0106009b=color/car_green_500 +0106009c=color/car_green_600 +0106009d=color/car_green_700 +0106009e=color/car_green_800 +0106009f=color/car_green_900 +010600a0=color/car_grey_100 +010600a1=color/car_grey_1000 +010600a2=color/car_grey_200 +010600a3=color/car_grey_300 +010600a4=color/car_grey_400 +010600a5=color/car_grey_50 +010600a6=color/car_grey_500 +010600a7=color/car_grey_600 +010600a8=color/car_grey_700 +010600a9=color/car_grey_746 +010600aa=color/car_grey_772 +010600ab=color/car_grey_800 +010600ac=color/car_grey_846 +010600ad=color/car_grey_868 +010600ae=color/car_grey_900 +010600af=color/car_grey_928 +010600b0=color/car_grey_958 +010600b1=color/car_grey_972 +010600b2=color/car_headline1 +010600b3=color/car_headline1_dark +010600b4=color/car_headline1_light +010600b5=color/car_headline2 +010600b6=color/car_headline2_dark +010600b7=color/car_headline2_light +010600b8=color/car_headline3 +010600b9=color/car_headline3_dark +010600ba=color/car_headline3_light +010600bb=color/car_headline4 +010600bc=color/car_headline4_dark +010600bd=color/car_headline4_light +010600be=color/car_highlight +010600bf=color/car_highlight_dark +010600c0=color/car_highlight_light +010600c1=color/car_keyboard_divider_line +010600c2=color/car_keyboard_text_primary_color +010600c3=color/car_keyboard_text_secondary_color +010600c4=color/car_light_blue_300 +010600c5=color/car_light_blue_500 +010600c6=color/car_light_blue_600 +010600c7=color/car_light_blue_700 +010600c8=color/car_light_blue_800 +010600c9=color/car_light_blue_900 +010600ca=color/car_list_divider +010600cb=color/car_list_divider_dark +010600cc=color/car_list_divider_light +010600cd=color/car_orange_100 +010600ce=color/car_orange_200 +010600cf=color/car_orange_300 +010600d0=color/car_orange_400 +010600d1=color/car_orange_50 +010600d2=color/car_orange_500 +010600d3=color/car_orange_600 +010600d4=color/car_orange_700 +010600d5=color/car_orange_800 +010600d6=color/car_orange_900 +010600d7=color/car_pink_100 +010600d8=color/car_pink_200 +010600d9=color/car_pink_300 +010600da=color/car_pink_400 +010600db=color/car_pink_50 +010600dc=color/car_pink_500 +010600dd=color/car_pink_600 +010600de=color/car_pink_700 +010600df=color/car_pink_800 +010600e0=color/car_pink_900 +010600e1=color/car_purple_100 +010600e2=color/car_purple_200 +010600e3=color/car_purple_300 +010600e4=color/car_purple_400 +010600e5=color/car_purple_50 +010600e6=color/car_purple_500 +010600e7=color/car_purple_600 +010600e8=color/car_purple_700 +010600e9=color/car_purple_800 +010600ea=color/car_purple_900 +010600eb=color/car_red_100 +010600ec=color/car_red_200 +010600ed=color/car_red_300 +010600ee=color/car_red_400 +010600ef=color/car_red_50 +010600f0=color/car_red_500 +010600f1=color/car_red_500a +010600f2=color/car_red_600 +010600f3=color/car_red_700 +010600f4=color/car_red_800 +010600f5=color/car_red_900 +010600f6=color/car_red_a700 +010600f7=color/car_scrollbar_thumb +010600f8=color/car_scrollbar_thumb_dark +010600f9=color/car_scrollbar_thumb_inverse +010600fa=color/car_scrollbar_thumb_light +010600fb=color/car_seekbar_track_background +010600fc=color/car_seekbar_track_background_dark +010600fd=color/car_seekbar_track_background_light +010600fe=color/car_seekbar_track_secondary_progress +010600ff=color/car_switch +01060100=color/car_teal_100 +01060101=color/car_teal_200 +01060102=color/car_teal_300 +01060103=color/car_teal_400 +01060104=color/car_teal_50 +01060105=color/car_teal_500 +01060106=color/car_teal_600 +01060107=color/car_teal_700 +01060108=color/car_teal_800 +01060109=color/car_teal_900 +0106010a=color/car_tint +0106010b=color/car_tint_dark +0106010c=color/car_tint_inverse +0106010d=color/car_tint_light +0106010e=color/car_title +0106010f=color/car_title2 +01060110=color/car_title2_dark +01060111=color/car_title2_light +01060112=color/car_title_dark +01060113=color/car_title_light +01060114=color/car_toast_background +01060115=color/car_user_switcher_user_image_bgcolor +01060116=color/car_user_switcher_user_image_fgcolor +01060117=color/car_white_1000 +01060118=color/car_yellow_100 +01060119=color/car_yellow_200 +0106011a=color/car_yellow_300 +0106011b=color/car_yellow_400 +0106011c=color/car_yellow_50 +0106011d=color/car_yellow_500 +0106011e=color/car_yellow_600 +0106011f=color/car_yellow_700 +01060120=color/car_yellow_800 +01060121=color/car_yellow_900 +01060122=color/chooser_gradient_background +01060123=color/chooser_gradient_highlight +01060124=color/chooser_row_divider +01060125=color/config_defaultNotificationColor +01060126=color/config_progress_background_tint +01060127=color/control_checkable_material +01060128=color/control_default_material +01060129=color/control_highlight_material +0106012a=color/conversation_important_highlight +0106012b=color/datepicker_default_circle_background_color_material_dark +0106012c=color/datepicker_default_circle_background_color_material_light +0106012d=color/datepicker_default_disabled_text_color_material_dark +0106012e=color/datepicker_default_disabled_text_color_material_light +0106012f=color/datepicker_default_header_dayofweek_background_color_material_dark +01060130=color/datepicker_default_header_dayofweek_background_color_material_light +01060131=color/datepicker_default_header_selector_background_material_dark +01060132=color/datepicker_default_header_selector_background_material_light +01060133=color/datepicker_default_normal_text_color_material_dark +01060134=color/datepicker_default_normal_text_color_material_light +01060135=color/datepicker_default_pressed_text_color_material_dark +01060136=color/datepicker_default_pressed_text_color_material_light +01060137=color/datepicker_default_selected_text_color_material_dark +01060138=color/datepicker_default_selected_text_color_material_light +01060139=color/datepicker_default_view_animator_color_material_dark +0106013a=color/datepicker_default_view_animator_color_material_light +0106013b=color/decor_button_dark_color +0106013c=color/decor_button_light_color +0106013d=color/decor_view_status_guard +0106013e=color/decor_view_status_guard_light +0106013f=color/default_magnifier_color_overlay +01060140=color/dim_foreground_dark +01060141=color/dim_foreground_dark_disabled +01060142=color/dim_foreground_dark_inverse +01060143=color/dim_foreground_dark_inverse_disabled +01060144=color/dim_foreground_disabled_holo_dark +01060145=color/dim_foreground_disabled_holo_light +01060146=color/dim_foreground_holo_dark +01060147=color/dim_foreground_holo_light +01060148=color/dim_foreground_inverse_disabled_holo_dark +01060149=color/dim_foreground_inverse_disabled_holo_light +0106014a=color/dim_foreground_inverse_holo_dark +0106014b=color/dim_foreground_inverse_holo_light +0106014c=color/dim_foreground_light +0106014d=color/dim_foreground_light_disabled +0106014e=color/dim_foreground_light_inverse +0106014f=color/dim_foreground_light_inverse_disabled +01060150=color/edge_effect_device_default_dark +01060151=color/edge_effect_device_default_light +01060152=color/error_color_device_default_dark +01060153=color/error_color_device_default_light +01060154=color/error_color_material_dark +01060155=color/error_color_material_light +01060156=color/facelock_spotlight_mask +01060157=color/floating_popup_divider_dark +01060158=color/floating_popup_divider_light +01060159=color/foreground_device_default_dark +0106015a=color/foreground_material_dark +0106015b=color/foreground_material_light +0106015c=color/group_button_dialog_focused_holo_dark +0106015d=color/group_button_dialog_focused_holo_light +0106015e=color/group_button_dialog_pressed_holo_dark +0106015f=color/group_button_dialog_pressed_holo_light +01060160=color/highlighted_text_dark +01060161=color/highlighted_text_holo_dark +01060162=color/highlighted_text_holo_light +01060163=color/highlighted_text_light +01060164=color/highlighted_text_material +01060165=color/hint_foreground_dark +01060166=color/hint_foreground_holo_dark +01060167=color/hint_foreground_holo_light +01060168=color/hint_foreground_light +01060169=color/hint_foreground_material_dark +0106016a=color/hint_foreground_material_light +0106016b=color/holo_button_normal +0106016c=color/holo_button_pressed +0106016d=color/holo_control_activated +0106016e=color/holo_control_normal +0106016f=color/holo_gray_bright +01060170=color/holo_gray_light +01060171=color/holo_light_button_normal +01060172=color/holo_light_button_pressed +01060173=color/holo_light_control_activated +01060174=color/holo_light_control_normal +01060175=color/holo_light_primary +01060176=color/holo_light_primary_dark +01060177=color/holo_primary +01060178=color/holo_primary_dark +01060179=color/instant_app_badge +0106017a=color/keyguard_avatar_frame_color +0106017b=color/keyguard_avatar_frame_pressed_color +0106017c=color/keyguard_avatar_frame_shadow_color +0106017d=color/keyguard_avatar_nick_color +0106017e=color/keyguard_text_color_decline +0106017f=color/keyguard_text_color_normal +01060180=color/keyguard_text_color_soundoff +01060181=color/keyguard_text_color_soundon +01060182=color/keyguard_text_color_unlock +01060183=color/kg_multi_user_text_active +01060184=color/kg_multi_user_text_inactive +01060185=color/kg_widget_pager_gradient +01060186=color/legacy_button_normal +01060187=color/legacy_button_pressed +01060188=color/legacy_control_activated +01060189=color/legacy_control_normal +0106018a=color/legacy_green +0106018b=color/legacy_light_button_normal +0106018c=color/legacy_light_button_pressed +0106018d=color/legacy_light_control_activated +0106018e=color/legacy_light_control_normal +0106018f=color/legacy_light_primary +01060190=color/legacy_light_primary_dark +01060191=color/legacy_long_pressed_highlight +01060192=color/legacy_orange +01060193=color/legacy_pressed_highlight +01060194=color/legacy_primary +01060195=color/legacy_primary_dark +01060196=color/legacy_selected_highlight +01060197=color/lighter_gray +01060198=color/link_text_dark +01060199=color/link_text_holo_dark +0106019a=color/link_text_holo_light +0106019b=color/link_text_light +0106019c=color/list_divider_color_dark +0106019d=color/list_divider_color_light +0106019e=color/list_divider_opacity_device_default_dark +0106019f=color/list_divider_opacity_device_default_light +010601a0=color/list_divider_opacity_material +010601a1=color/list_highlight_material +010601a2=color/loading_gradient_background_color_dark +010601a3=color/loading_gradient_background_color_light +010601a4=color/loading_gradient_highlight_color_dark +010601a5=color/loading_gradient_highlight_color_light +010601a6=color/lock_pattern_view_regular_color +010601a7=color/lock_pattern_view_success_color +010601a8=color/lockscreen_clock_am_pm +010601a9=color/lockscreen_clock_background +010601aa=color/lockscreen_clock_foreground +010601ab=color/lockscreen_owner_info +010601ac=color/material_blue_grey_200 +010601ad=color/material_blue_grey_700 +010601ae=color/material_blue_grey_800 +010601af=color/material_blue_grey_900 +010601b0=color/material_blue_grey_950 +010601b1=color/material_deep_teal_100 +010601b2=color/material_deep_teal_200 +010601b3=color/material_deep_teal_300 +010601b4=color/material_deep_teal_500 +010601b5=color/material_grey_100 +010601b6=color/material_grey_200 +010601b7=color/material_grey_300 +010601b8=color/material_grey_50 +010601b9=color/material_grey_600 +010601ba=color/material_grey_800 +010601bb=color/material_grey_850 +010601bc=color/material_grey_900 +010601bd=color/material_red_A100 +010601be=color/material_red_A700 +010601bf=color/micro_text_light +010601c0=color/navigation_bar_divider_device_default_settings +010601c1=color/notification_action_button_text_color +010601c2=color/notification_action_list +010601c3=color/notification_action_list_background_color +010601c4=color/notification_default_color +010601c5=color/notification_default_color_dark +010601c6=color/notification_default_color_light +010601c7=color/notification_material_background_color +010601c8=color/notification_primary_text_color_dark +010601c9=color/notification_primary_text_color_light +010601ca=color/notification_progress_background_color +010601cb=color/notification_secondary_text_color_dark +010601cc=color/notification_secondary_text_color_light +010601cd=color/perms_dangerous_grp_color +010601ce=color/perms_dangerous_perm_color +010601cf=color/personal_apps_suspension_notification_color +010601d0=color/primary_dark_device_default_dark +010601d1=color/primary_dark_device_default_light +010601d2=color/primary_dark_device_default_settings +010601d3=color/primary_dark_device_default_settings_light +010601d4=color/primary_dark_material_dark +010601d5=color/primary_dark_material_light +010601d6=color/primary_dark_material_light_light_status_bar +010601d7=color/primary_dark_material_settings +010601d8=color/primary_dark_material_settings_light +010601d9=color/primary_device_default_dark +010601da=color/primary_device_default_light +010601db=color/primary_device_default_settings +010601dc=color/primary_device_default_settings_light +010601dd=color/primary_material_dark +010601de=color/primary_material_light +010601df=color/primary_material_settings +010601e0=color/primary_material_settings_light +010601e1=color/primary_text_dark_disable_only +010601e2=color/primary_text_dark_focused +010601e3=color/primary_text_default_material_dark +010601e4=color/primary_text_default_material_light +010601e5=color/primary_text_disable_only_holo_dark +010601e6=color/primary_text_disable_only_holo_light +010601e7=color/primary_text_disable_only_material_dark +010601e8=color/primary_text_disable_only_material_light +010601e9=color/primary_text_focused_holo_dark +010601ea=color/primary_text_holo_dark +010601eb=color/primary_text_holo_light +010601ec=color/primary_text_inverse_when_activated_material +010601ed=color/primary_text_leanback_dark +010601ee=color/primary_text_leanback_formwizard_dark +010601ef=color/primary_text_leanback_formwizard_default_dark +010601f0=color/primary_text_leanback_light +010601f1=color/primary_text_light_disable_only +010601f2=color/primary_text_material_dark +010601f3=color/primary_text_material_light +010601f4=color/primary_text_nodisable_holo_dark +010601f5=color/primary_text_nodisable_holo_light +010601f6=color/primary_text_secondary_when_activated_material +010601f7=color/primary_text_secondary_when_activated_material_inverse +010601f8=color/profile_badge_1 +010601f9=color/profile_badge_1_dark +010601fa=color/profile_badge_2 +010601fb=color/profile_badge_2_dark +010601fc=color/profile_badge_3 +010601fd=color/profile_badge_3_dark +010601fe=color/quaternary_device_default_settings +010601ff=color/quaternary_material_settings +01060200=color/ratingbar_background_material +01060201=color/red +01060202=color/resize_shadow_end_color +01060203=color/resize_shadow_start_color +01060204=color/resolver_empty_state_icon +01060205=color/resolver_empty_state_text +01060206=color/resolver_text_color_secondary_dark +01060207=color/ripple_material_dark +01060208=color/ripple_material_light +01060209=color/safe_mode_text +0106020a=color/search_url_text +0106020b=color/search_url_text_holo +0106020c=color/search_url_text_material_dark +0106020d=color/search_url_text_material_light +0106020e=color/search_url_text_normal +0106020f=color/search_url_text_pressed +01060210=color/search_url_text_selected +01060211=color/search_widget_corpus_item_background +01060212=color/secondary_device_default_settings +01060213=color/secondary_device_default_settings_light +01060214=color/secondary_material_settings +01060215=color/secondary_material_settings_light +01060216=color/secondary_text_default_material_dark +01060217=color/secondary_text_default_material_light +01060218=color/secondary_text_holo_dark +01060219=color/secondary_text_holo_light +0106021a=color/secondary_text_inverse_when_activated_material +0106021b=color/secondary_text_leanback_dark +0106021c=color/secondary_text_leanback_light +0106021d=color/secondary_text_material_dark +0106021e=color/secondary_text_material_light +0106021f=color/secondary_text_nodisable_holo_dark +01060220=color/secondary_text_nodisable_holo_light +01060221=color/secondary_text_nofocus +01060222=color/seekbar_track_progress_material +01060223=color/shadow +01060224=color/sliding_tab_text_color_active +01060225=color/sliding_tab_text_color_shadow +01060226=color/suggestion_highlight_text +01060227=color/switch_thumb_disabled_material_dark +01060228=color/switch_thumb_disabled_material_light +01060229=color/switch_thumb_material_dark +0106022a=color/switch_thumb_material_light +0106022b=color/switch_thumb_normal_material_dark +0106022c=color/switch_thumb_normal_material_light +0106022d=color/switch_thumb_watch_default_dark +0106022e=color/switch_track_material +0106022f=color/switch_track_watch_default_dark +01060230=color/system_bar_background_semi_transparent +01060231=color/tab_highlight_material +01060232=color/tab_indicator_material +01060233=color/tab_indicator_text_material +01060234=color/tab_indicator_text_v4 +01060235=color/tertiary_device_default_settings +01060236=color/tertiary_material_settings +01060237=color/tertiary_text_holo_dark +01060238=color/tertiary_text_holo_light +01060239=color/text_color_primary +0106023a=color/text_color_secondary +0106023b=color/timepicker_default_ampm_selected_background_color_material +0106023c=color/timepicker_default_ampm_unselected_background_color_material +0106023d=color/timepicker_default_background_material +0106023e=color/timepicker_default_numbers_background_color_material +0106023f=color/timepicker_default_selector_color_material +01060240=color/timepicker_default_text_color_material +01060241=color/tooltip_background_dark +01060242=color/tooltip_background_light +01060243=color/user_icon_1 +01060244=color/user_icon_2 +01060245=color/user_icon_3 +01060246=color/user_icon_4 +01060247=color/user_icon_5 +01060248=color/user_icon_6 +01060249=color/user_icon_7 +0106024a=color/user_icon_8 +0106024b=color/user_icon_default_gray +0106024c=color/user_icon_default_white +0106024d=color/white_disabled_material +01070000=array/emailAddressTypes +01070001=array/imProtocols +01070002=array/organizationTypes +01070003=array/phoneTypes +01070004=array/postalAddressTypes +01070005=array/config_keySystemUuidMapping +01070006=array/carrier_properties +01070007=array/common_nicknames +01070008=array/config_allowedGlobalInstantAppSettings +01070009=array/config_allowedSecureInstantAppSettings +0107000a=array/config_allowedSystemInstantAppSettings +0107000b=array/config_ambientBrighteningThresholds +0107000c=array/config_ambientDarkeningThresholds +0107000d=array/config_ambientThresholdLevels +0107000e=array/config_ambientThresholdsOfPeakRefreshRate +0107000f=array/config_apfEthTypeBlackList +01070010=array/config_autoBrightnessButtonBacklightValues +01070011=array/config_autoBrightnessDisplayValuesNits +01070012=array/config_autoBrightnessKeyboardBacklightValues +01070013=array/config_autoBrightnessLcdBacklightValues +01070014=array/config_autoBrightnessLevels +01070015=array/config_autoRotationTiltTolerance +01070016=array/config_availableColorModes +01070017=array/config_backGestureInsetScales +01070018=array/config_batteryPackageTypeService +01070019=array/config_batteryPackageTypeSystem +0107001a=array/config_biometric_sensors +0107001b=array/config_brightnessThresholdsOfPeakRefreshRate +0107001c=array/config_calendarDateVibePattern +0107001d=array/config_callBarringMMI +0107001e=array/config_callBarringMMI_for_ims +0107001f=array/config_cdma_dun_supported_types +01070020=array/config_cdma_home_system +01070021=array/config_cdma_international_roaming_indicators +01070022=array/config_cell_retries_per_error_code +01070023=array/config_clockTickVibePattern +01070024=array/config_convert_to_emergency_number_map +01070025=array/config_defaultFirstUserRestrictions +01070026=array/config_defaultImperceptibleKillingExemptionPkgs +01070027=array/config_defaultImperceptibleKillingExemptionProcStates +01070028=array/config_defaultNotificationVibePattern +01070029=array/config_defaultPinnerServiceFiles +0107002a=array/config_default_vm_number +0107002b=array/config_deviceSpecificSystemServices +0107002c=array/config_disableApkUnlessMatchedSku_skus_list +0107002d=array/config_disableApksUnlessMatchedSku_apk_list +0107002e=array/config_disabledUntilUsedPreinstalledImes +0107002f=array/config_displayCompositionColorModes +01070030=array/config_displayCompositionColorSpaces +01070031=array/config_displayWhiteBalanceAmbientColorTemperatures +01070032=array/config_displayWhiteBalanceBaseThresholds +01070033=array/config_displayWhiteBalanceDecreaseThresholds +01070034=array/config_displayWhiteBalanceDisplayColorTemperatures +01070035=array/config_displayWhiteBalanceDisplayNominalWhite +01070036=array/config_displayWhiteBalanceDisplayPrimaries +01070037=array/config_displayWhiteBalanceHighLightAmbientBiases +01070038=array/config_displayWhiteBalanceHighLightAmbientBrightnesses +01070039=array/config_displayWhiteBalanceIncreaseThresholds +0107003a=array/config_displayWhiteBalanceLowLightAmbientBiases +0107003b=array/config_displayWhiteBalanceLowLightAmbientBrightnesses +0107003c=array/config_display_no_service_when_sim_unready +0107003d=array/config_dropboxLowPriorityTags +0107003e=array/config_emergency_iso_country_codes +0107003f=array/config_ephemeralResolverPackage +01070040=array/config_ethernet_interfaces +01070041=array/config_face_acquire_biometricprompt_ignorelist +01070042=array/config_face_acquire_enroll_ignorelist +01070043=array/config_face_acquire_keyguard_ignorelist +01070044=array/config_face_acquire_vendor_biometricprompt_ignorelist +01070045=array/config_face_acquire_vendor_enroll_ignorelist +01070046=array/config_face_acquire_vendor_keyguard_ignorelist +01070047=array/config_forceQueryablePackages +01070048=array/config_globalActionsList +01070049=array/config_hideWhenDisabled_packageNames +0107004a=array/config_highRefreshRateBlacklist +0107004b=array/config_integrityRuleProviderPackages +0107004c=array/config_jitzygoteBootImagePinnerServiceFiles +0107004d=array/config_keyboardTapVibePattern +0107004e=array/config_localPrivateDisplayPorts +0107004f=array/config_locationExtraPackageNames +01070050=array/config_locationProviderPackageNames +01070051=array/config_longPressVibePattern +01070052=array/config_lteDbmThresholds +01070053=array/config_minimumBrightnessCurveLux +01070054=array/config_minimumBrightnessCurveNits +01070055=array/config_mobile_hotspot_provision_app +01070056=array/config_mobile_tcp_buffers +01070057=array/config_networkNotifySwitches +01070058=array/config_networkSupportedKeepaliveCount +01070059=array/config_nightDisplayColorTemperatureCoefficients +0107005a=array/config_nightDisplayColorTemperatureCoefficientsNative +0107005b=array/config_nonBlockableNotificationPackages +0107005c=array/config_notificationFallbackVibePattern +0107005d=array/config_notificationMsgPkgsAllowedAsConvos +0107005e=array/config_notificationSignalExtractors +0107005f=array/config_oemUsbModeOverride +01070060=array/config_packagesExemptFromSuspension +01070061=array/config_priorityOnlyDndExemptPackages +01070062=array/config_protectedNetworks +01070063=array/config_restrictedImagesServices +01070064=array/config_ringtoneEffectUris +01070065=array/config_safeModeEnabledVibePattern +01070066=array/config_screenBrighteningThresholds +01070067=array/config_screenBrightnessBacklight +01070068=array/config_screenBrightnessNits +01070069=array/config_screenDarkeningThresholds +0107006a=array/config_screenThresholdLevels +0107006b=array/config_scrollBarrierVibePattern +0107006c=array/config_serialPorts +0107006d=array/config_sms_enabled_locking_shift_tables +0107006e=array/config_sms_enabled_single_shift_tables +0107006f=array/config_statusBarIcons +01070070=array/config_system_condition_providers +01070071=array/config_telephonyEuiccDeviceCapabilities +01070072=array/config_telephonyHardware +01070073=array/config_testLocationProviders +01070074=array/config_tether_bluetooth_regexs +01070075=array/config_tether_dhcp_range +01070076=array/config_tether_upstream_types +01070077=array/config_tether_usb_regexs +01070078=array/config_tether_wifi_p2p_regexs +01070079=array/config_tether_wifi_regexs +0107007a=array/config_tether_wimax_regexs +0107007b=array/config_toastCrossUserPackages +0107007c=array/config_twoDigitNumberPattern +0107007d=array/config_usbHostBlacklist +0107007e=array/config_virtualKeyVibePattern +0107007f=array/config_vvmSmsFilterRegexes +01070080=array/config_wakeonlan_supported_interfaces +01070081=array/config_wearActivityModeRadios +01070082=array/cross_profile_apps +01070083=array/dial_string_replace +01070084=array/disallowed_apps_managed_device +01070085=array/disallowed_apps_managed_profile +01070086=array/disallowed_apps_managed_user +01070087=array/face_acquired_vendor +01070088=array/face_error_vendor +01070089=array/fingerprint_acquired_vendor +0107008a=array/fingerprint_error_vendor +0107008b=array/imAddressTypes +0107008c=array/maps_starting_lat_lng +0107008d=array/maps_starting_zoom +0107008e=array/networkAttributes +0107008f=array/network_switch_type_name +01070090=array/networks_not_clear_data +01070091=array/no_ems_support_sim_operators +01070092=array/non_removable_euicc_slots +01070093=array/preloaded_color_state_lists +01070094=array/preloaded_drawables +01070095=array/preloaded_freeform_multi_window_drawables +01070096=array/radioAttributes +01070097=array/required_apps_managed_device +01070098=array/required_apps_managed_profile +01070099=array/required_apps_managed_user +0107009a=array/resolver_target_actions_pin +0107009b=array/resolver_target_actions_unpin +0107009c=array/sim_colors +0107009d=array/special_locale_codes +0107009e=array/special_locale_names +0107009f=array/supported_locales +010700a0=array/unloggable_phone_numbers +010700a1=array/vendor_allowed_personal_apps_org_owned_device +010700a2=array/vendor_cross_profile_apps +010700a3=array/vendor_disallowed_apps_managed_device +010700a4=array/vendor_disallowed_apps_managed_profile +010700a5=array/vendor_disallowed_apps_managed_user +010700a6=array/vendor_required_apps_managed_device +010700a7=array/vendor_required_apps_managed_profile +010700a8=array/vendor_required_apps_managed_user +010700a9=array/wfcOperatorErrorAlertMessages +010700aa=array/wfcOperatorErrorNotificationMessages +010700ab=array/wfcSpnFormats +01080000=drawable/alert_dark_frame +01080001=drawable/alert_light_frame +01080002=drawable/arrow_down_float +01080003=drawable/arrow_up_float +01080004=drawable/btn_default +01080005=drawable/btn_default_small +01080006=drawable/btn_dropdown +01080007=drawable/btn_minus +01080008=drawable/btn_plus +01080009=drawable/btn_radio +0108000a=drawable/btn_star +0108000b=drawable/btn_star_big_off +0108000c=drawable/btn_star_big_on +0108000d=drawable/button_onoff_indicator_on +0108000e=drawable/button_onoff_indicator_off +0108000f=drawable/checkbox_off_background +01080010=drawable/checkbox_on_background +01080011=drawable/dialog_frame +01080012=drawable/divider_horizontal_bright +01080013=drawable/divider_horizontal_textfield +01080014=drawable/divider_horizontal_dark +01080015=drawable/divider_horizontal_dim_dark +01080016=drawable/edit_text +01080017=drawable/btn_dialog +01080018=drawable/editbox_background +01080019=drawable/editbox_background_normal +0108001a=drawable/editbox_dropdown_dark_frame +0108001b=drawable/editbox_dropdown_light_frame +0108001c=drawable/gallery_thumb +0108001d=drawable/ic_delete +0108001e=drawable/ic_lock_idle_charging +0108001f=drawable/ic_lock_idle_lock +01080020=drawable/ic_lock_idle_low_battery +01080021=drawable/ic_media_ff +01080022=drawable/ic_media_next +01080023=drawable/ic_media_pause +01080024=drawable/ic_media_play +01080025=drawable/ic_media_previous +01080026=drawable/ic_media_rew +01080027=drawable/ic_dialog_alert +01080028=drawable/ic_dialog_dialer +01080029=drawable/ic_dialog_email +0108002a=drawable/ic_dialog_map +0108002b=drawable/ic_input_add +0108002c=drawable/ic_input_delete +0108002d=drawable/ic_input_get +0108002e=drawable/ic_lock_idle_alarm +0108002f=drawable/ic_lock_lock +01080030=drawable/ic_lock_power_off +01080031=drawable/ic_lock_silent_mode +01080032=drawable/ic_lock_silent_mode_off +01080033=drawable/ic_menu_add +01080034=drawable/ic_menu_agenda +01080035=drawable/ic_menu_always_landscape_portrait +01080036=drawable/ic_menu_call +01080037=drawable/ic_menu_camera +01080038=drawable/ic_menu_close_clear_cancel +01080039=drawable/ic_menu_compass +0108003a=drawable/ic_menu_crop +0108003b=drawable/ic_menu_day +0108003c=drawable/ic_menu_delete +0108003d=drawable/ic_menu_directions +0108003e=drawable/ic_menu_edit +0108003f=drawable/ic_menu_gallery +01080040=drawable/ic_menu_help +01080041=drawable/ic_menu_info_details +01080042=drawable/ic_menu_manage +01080043=drawable/ic_menu_mapmode +01080044=drawable/ic_menu_month +01080045=drawable/ic_menu_more +01080046=drawable/ic_menu_my_calendar +01080047=drawable/ic_menu_mylocation +01080048=drawable/ic_menu_myplaces +01080049=drawable/ic_menu_preferences +0108004a=drawable/ic_menu_recent_history +0108004b=drawable/ic_menu_report_image +0108004c=drawable/ic_menu_revert +0108004d=drawable/ic_menu_rotate +0108004e=drawable/ic_menu_save +0108004f=drawable/ic_menu_search +01080050=drawable/ic_menu_send +01080051=drawable/ic_menu_set_as +01080052=drawable/ic_menu_share +01080053=drawable/ic_menu_slideshow +01080054=drawable/ic_menu_today +01080055=drawable/ic_menu_upload +01080056=drawable/ic_menu_upload_you_tube +01080057=drawable/ic_menu_view +01080058=drawable/ic_menu_week +01080059=drawable/ic_menu_zoom +0108005a=drawable/ic_notification_clear_all +0108005b=drawable/ic_notification_overlay +0108005c=drawable/ic_partial_secure +0108005d=drawable/ic_popup_disk_full +0108005e=drawable/ic_popup_reminder +0108005f=drawable/ic_popup_sync +01080060=drawable/ic_search_category_default +01080061=drawable/ic_secure +01080062=drawable/list_selector_background +01080063=drawable/menu_frame +01080064=drawable/menu_full_frame +01080065=drawable/menuitem_background +01080066=drawable/picture_frame +01080067=drawable/presence_away +01080068=drawable/presence_busy +01080069=drawable/presence_invisible +0108006a=drawable/presence_offline +0108006b=drawable/presence_online +0108006c=drawable/progress_horizontal +0108006d=drawable/progress_indeterminate_horizontal +0108006e=drawable/radiobutton_off_background +0108006f=drawable/radiobutton_on_background +01080070=drawable/spinner_background +01080071=drawable/spinner_dropdown_background +01080072=drawable/star_big_on +01080073=drawable/star_big_off +01080074=drawable/star_on +01080075=drawable/star_off +01080076=drawable/stat_notify_call_mute +01080077=drawable/stat_notify_chat +01080078=drawable/stat_notify_error +01080079=drawable/stat_notify_more +0108007a=drawable/stat_notify_sdcard +0108007b=drawable/stat_notify_sdcard_usb +0108007c=drawable/stat_notify_sync +0108007d=drawable/stat_notify_sync_noanim +0108007e=drawable/stat_notify_voicemail +0108007f=drawable/stat_notify_missed_call +01080080=drawable/stat_sys_data_bluetooth +01080081=drawable/stat_sys_download +01080082=drawable/stat_sys_download_done +01080083=drawable/stat_sys_headset +01080084=drawable/stat_sys_phone_call +01080085=drawable/stat_sys_phone_call_forward +01080086=drawable/stat_sys_phone_call_on_hold +01080087=drawable/stat_sys_speakerphone +01080088=drawable/stat_sys_upload +01080089=drawable/stat_sys_upload_done +0108008a=drawable/stat_sys_warning +0108008b=drawable/status_bar_item_app_background +0108008c=drawable/status_bar_item_background +0108008d=drawable/sym_action_call +0108008e=drawable/sym_action_chat +0108008f=drawable/sym_action_email +01080090=drawable/sym_call_incoming +01080091=drawable/sym_call_missed +01080092=drawable/sym_call_outgoing +01080093=drawable/sym_def_app_icon +01080094=drawable/sym_contact_card +01080095=drawable/title_bar +01080096=drawable/toast_frame +01080097=drawable/zoom_plate +01080098=drawable/screen_background_dark +01080099=drawable/screen_background_light +0108009a=drawable/bottom_bar +0108009b=drawable/ic_dialog_info +0108009c=drawable/ic_menu_sort_alphabetically +0108009d=drawable/ic_menu_sort_by_size +0108009e=drawable/$$chooser_direct_share_icon_placeholder__0__0 +0108009f=drawable/$$chooser_direct_share_icon_placeholder__1__0 +010800a0=drawable/$chooser_direct_share_icon_placeholder__0 +010800a1=drawable/$chooser_direct_share_icon_placeholder__1 +010800a2=drawable/$ic_accessibility_color_correction__0 +010800a3=drawable/$ic_accessibility_color_correction__1 +010800a4=drawable/ic_btn_speak_now +010800a5=drawable/dark_header +010800a6=drawable/title_bar_tall +010800a7=drawable/stat_sys_vp_phone_call +010800a8=drawable/stat_sys_vp_phone_call_on_hold +010800a9=drawable/screen_background_dark_transparent +010800aa=drawable/screen_background_light_transparent +010800ab=drawable/stat_notify_sdcard_prepare +010800ac=drawable/presence_video_away +010800ad=drawable/presence_video_busy +010800ae=drawable/presence_video_online +010800af=drawable/presence_audio_away +010800b0=drawable/presence_audio_busy +010800b1=drawable/presence_audio_online +010800b2=drawable/dialog_holo_dark_frame +010800b3=drawable/dialog_holo_light_frame +010800b4=drawable/ic_info +010800b5=drawable/$ic_accessibility_color_inversion__0 +010800b6=drawable/$ic_accessibility_color_inversion__1 +010800b7=drawable/$ic_accessibility_color_inversion__2 +010800b8=drawable/$ic_accessibility_magnification__0 +010800b9=drawable/$ic_accessibility_magnification__1 +010800ba=drawable/$ic_accessibility_magnification__2 +010800bb=drawable/ab_bottom_solid_dark_holo +010800bc=drawable/ab_bottom_solid_inverse_holo +010800bd=drawable/ab_bottom_solid_light_holo +010800be=drawable/ab_bottom_transparent_dark_holo +010800bf=drawable/ab_bottom_transparent_light_holo +010800c0=drawable/ab_share_pack_holo_dark +010800c1=drawable/ab_share_pack_holo_light +010800c2=drawable/ab_share_pack_material +010800c3=drawable/ab_share_pack_mtrl_alpha +010800c4=drawable/ab_solid_dark_holo +010800c5=drawable/ab_solid_light_holo +010800c6=drawable/ab_solid_shadow_holo +010800c7=drawable/ab_solid_shadow_material +010800c8=drawable/ab_solid_shadow_mtrl_alpha +010800c9=drawable/ab_stacked_solid_dark_holo +010800ca=drawable/ab_stacked_solid_inverse_holo +010800cb=drawable/ab_stacked_solid_light_holo +010800cc=drawable/ab_stacked_transparent_dark_holo +010800cd=drawable/ab_stacked_transparent_light_holo +010800ce=drawable/ab_transparent_dark_holo +010800cf=drawable/ab_transparent_light_holo +010800d0=drawable/action_bar_background +010800d1=drawable/action_bar_divider +010800d2=drawable/action_bar_item_background_material +010800d3=drawable/activated_background +010800d4=drawable/activated_background_holo_dark +010800d5=drawable/activated_background_holo_light +010800d6=drawable/activated_background_light +010800d7=drawable/activated_background_material +010800d8=drawable/activity_title_bar +010800d9=drawable/alert_window_layer +010800da=drawable/android_logotype +010800db=drawable/app_icon_background +010800dc=drawable/autofill_dataset_picker_background +010800dd=drawable/autofilled_highlight +010800de=drawable/background_holo_dark +010800df=drawable/background_holo_light +010800e0=drawable/background_leanback_setup +010800e1=drawable/battery_charge_background +010800e2=drawable/blank_tile +010800e3=drawable/bottomsheet_background +010800e4=drawable/box +010800e5=drawable/btn_borderless_material +010800e6=drawable/btn_borderless_rect +010800e7=drawable/btn_browser_zoom_fit_page +010800e8=drawable/btn_browser_zoom_page_overview +010800e9=drawable/btn_cab_done_default_holo_dark +010800ea=drawable/btn_cab_done_default_holo_light +010800eb=drawable/btn_cab_done_focused_holo_dark +010800ec=drawable/btn_cab_done_focused_holo_light +010800ed=drawable/btn_cab_done_holo_dark +010800ee=drawable/btn_cab_done_holo_light +010800ef=drawable/btn_cab_done_pressed_holo_dark +010800f0=drawable/btn_cab_done_pressed_holo_light +010800f1=drawable/btn_check +010800f2=drawable/btn_check_buttonless_off +010800f3=drawable/btn_check_buttonless_on +010800f4=drawable/btn_check_holo_dark +010800f5=drawable/btn_check_holo_light +010800f6=drawable/btn_check_label_background +010800f7=drawable/btn_check_material_anim +010800f8=drawable/btn_check_off +010800f9=drawable/btn_check_off_disable +010800fa=drawable/btn_check_off_disable_focused +010800fb=drawable/btn_check_off_disable_focused_holo_dark +010800fc=drawable/btn_check_off_disable_focused_holo_light +010800fd=drawable/btn_check_off_disable_holo_dark +010800fe=drawable/btn_check_off_disable_holo_light +010800ff=drawable/btn_check_off_disabled_focused_holo_dark +01080100=drawable/btn_check_off_disabled_focused_holo_light +01080101=drawable/btn_check_off_disabled_holo_dark +01080102=drawable/btn_check_off_disabled_holo_light +01080103=drawable/btn_check_off_focused_holo_dark +01080104=drawable/btn_check_off_focused_holo_light +01080105=drawable/btn_check_off_holo +01080106=drawable/btn_check_off_holo_dark +01080107=drawable/btn_check_off_holo_light +01080108=drawable/btn_check_off_normal_holo_dark +01080109=drawable/btn_check_off_normal_holo_light +0108010a=drawable/btn_check_off_pressed +0108010b=drawable/btn_check_off_pressed_holo_dark +0108010c=drawable/btn_check_off_pressed_holo_light +0108010d=drawable/btn_check_off_selected +0108010e=drawable/btn_check_on +0108010f=drawable/btn_check_on_disable +01080110=drawable/btn_check_on_disable_focused +01080111=drawable/btn_check_on_disable_focused_holo_light +01080112=drawable/btn_check_on_disable_holo_dark +01080113=drawable/btn_check_on_disable_holo_light +01080114=drawable/btn_check_on_disabled_focused_holo_dark +01080115=drawable/btn_check_on_disabled_focused_holo_light +01080116=drawable/btn_check_on_disabled_holo_dark +01080117=drawable/btn_check_on_disabled_holo_light +01080118=drawable/btn_check_on_focused_holo_dark +01080119=drawable/btn_check_on_focused_holo_light +0108011a=drawable/btn_check_on_holo +0108011b=drawable/btn_check_on_holo_dark +0108011c=drawable/btn_check_on_holo_light +0108011d=drawable/btn_check_on_pressed +0108011e=drawable/btn_check_on_pressed_holo_dark +0108011f=drawable/btn_check_on_pressed_holo_light +01080120=drawable/btn_check_on_selected +01080121=drawable/btn_checkbox_checked_mtrl +01080122=drawable/btn_checkbox_checked_to_unchecked_mtrl_animation +01080123=drawable/btn_checkbox_unchecked_mtrl +01080124=drawable/btn_checkbox_unchecked_to_checked_mtrl_animation +01080125=drawable/btn_circle +01080126=drawable/btn_circle_disable +01080127=drawable/btn_circle_disable_focused +01080128=drawable/btn_circle_normal +01080129=drawable/btn_circle_pressed +0108012a=drawable/btn_circle_selected +0108012b=drawable/btn_clock_material +0108012c=drawable/btn_close +0108012d=drawable/btn_close_normal +0108012e=drawable/btn_close_pressed +0108012f=drawable/btn_close_selected +01080130=drawable/btn_colored_material +01080131=drawable/btn_default_disabled_focused_holo_dark +01080132=drawable/btn_default_disabled_focused_holo_light +01080133=drawable/btn_default_disabled_holo +01080134=drawable/btn_default_disabled_holo_dark +01080135=drawable/btn_default_disabled_holo_light +01080136=drawable/btn_default_focused_holo +01080137=drawable/btn_default_focused_holo_dark +01080138=drawable/btn_default_focused_holo_light +01080139=drawable/btn_default_holo_dark +0108013a=drawable/btn_default_holo_light +0108013b=drawable/btn_default_material +0108013c=drawable/btn_default_mtrl_shape +0108013d=drawable/btn_default_normal +0108013e=drawable/btn_default_normal_disable +0108013f=drawable/btn_default_normal_disable_focused +01080140=drawable/btn_default_normal_holo +01080141=drawable/btn_default_normal_holo_dark +01080142=drawable/btn_default_normal_holo_light +01080143=drawable/btn_default_pressed +01080144=drawable/btn_default_pressed_holo +01080145=drawable/btn_default_pressed_holo_dark +01080146=drawable/btn_default_pressed_holo_light +01080147=drawable/btn_default_selected +01080148=drawable/btn_default_small_normal +01080149=drawable/btn_default_small_normal_disable +0108014a=drawable/btn_default_small_normal_disable_focused +0108014b=drawable/btn_default_small_pressed +0108014c=drawable/btn_default_small_selected +0108014d=drawable/btn_default_transparent +0108014e=drawable/btn_default_transparent_normal +0108014f=drawable/btn_dialog_disable +01080150=drawable/btn_dialog_normal +01080151=drawable/btn_dialog_pressed +01080152=drawable/btn_dialog_selected +01080153=drawable/btn_dropdown_disabled +01080154=drawable/btn_dropdown_disabled_focused +01080155=drawable/btn_dropdown_normal +01080156=drawable/btn_dropdown_pressed +01080157=drawable/btn_dropdown_selected +01080158=drawable/btn_erase_default +01080159=drawable/btn_erase_pressed +0108015a=drawable/btn_erase_selected +0108015b=drawable/btn_global_search +0108015c=drawable/btn_global_search_normal +0108015d=drawable/btn_group_disabled_holo_dark +0108015e=drawable/btn_group_disabled_holo_light +0108015f=drawable/btn_group_focused_holo_dark +01080160=drawable/btn_group_focused_holo_light +01080161=drawable/btn_group_holo_dark +01080162=drawable/btn_group_holo_light +01080163=drawable/btn_group_normal_holo_dark +01080164=drawable/btn_group_normal_holo_light +01080165=drawable/btn_group_pressed_holo_dark +01080166=drawable/btn_group_pressed_holo_light +01080167=drawable/btn_keyboard_key +01080168=drawable/btn_keyboard_key_dark_normal_holo +01080169=drawable/btn_keyboard_key_dark_normal_off_holo +0108016a=drawable/btn_keyboard_key_dark_normal_on_holo +0108016b=drawable/btn_keyboard_key_dark_pressed_holo +0108016c=drawable/btn_keyboard_key_dark_pressed_off_holo +0108016d=drawable/btn_keyboard_key_dark_pressed_on_holo +0108016e=drawable/btn_keyboard_key_fulltrans +0108016f=drawable/btn_keyboard_key_fulltrans_normal +01080170=drawable/btn_keyboard_key_fulltrans_normal_off +01080171=drawable/btn_keyboard_key_fulltrans_normal_on +01080172=drawable/btn_keyboard_key_fulltrans_pressed +01080173=drawable/btn_keyboard_key_fulltrans_pressed_off +01080174=drawable/btn_keyboard_key_fulltrans_pressed_on +01080175=drawable/btn_keyboard_key_ics +01080176=drawable/btn_keyboard_key_light_normal_holo +01080177=drawable/btn_keyboard_key_light_pressed_holo +01080178=drawable/btn_keyboard_key_material +01080179=drawable/btn_keyboard_key_normal +0108017a=drawable/btn_keyboard_key_normal_off +0108017b=drawable/btn_keyboard_key_normal_on +0108017c=drawable/btn_keyboard_key_pressed +0108017d=drawable/btn_keyboard_key_pressed_off +0108017e=drawable/btn_keyboard_key_pressed_on +0108017f=drawable/btn_keyboard_key_trans +01080180=drawable/btn_keyboard_key_trans_normal +01080181=drawable/btn_keyboard_key_trans_normal_off +01080182=drawable/btn_keyboard_key_trans_normal_on +01080183=drawable/btn_keyboard_key_trans_pressed +01080184=drawable/btn_keyboard_key_trans_pressed_off +01080185=drawable/btn_keyboard_key_trans_pressed_on +01080186=drawable/btn_keyboard_key_trans_selected +01080187=drawable/btn_lock_normal +01080188=drawable/btn_media_player +01080189=drawable/btn_media_player_disabled +0108018a=drawable/btn_media_player_disabled_selected +0108018b=drawable/btn_media_player_pressed +0108018c=drawable/btn_media_player_selected +0108018d=drawable/btn_minus_default +0108018e=drawable/btn_minus_disable +0108018f=drawable/btn_minus_disable_focused +01080190=drawable/btn_minus_pressed +01080191=drawable/btn_minus_selected +01080192=drawable/btn_notification_emphasized +01080193=drawable/btn_plus_default +01080194=drawable/btn_plus_disable +01080195=drawable/btn_plus_disable_focused +01080196=drawable/btn_plus_pressed +01080197=drawable/btn_plus_selected +01080198=drawable/btn_radio_holo_dark +01080199=drawable/btn_radio_holo_light +0108019a=drawable/btn_radio_label_background +0108019b=drawable/btn_radio_material_anim +0108019c=drawable/btn_radio_off +0108019d=drawable/btn_radio_off_disabled_focused_holo_dark +0108019e=drawable/btn_radio_off_disabled_focused_holo_light +0108019f=drawable/btn_radio_off_disabled_holo_dark +010801a0=drawable/btn_radio_off_disabled_holo_light +010801a1=drawable/btn_radio_off_focused_holo_dark +010801a2=drawable/btn_radio_off_focused_holo_light +010801a3=drawable/btn_radio_off_holo +010801a4=drawable/btn_radio_off_holo_dark +010801a5=drawable/btn_radio_off_holo_light +010801a6=drawable/btn_radio_off_mtrl +010801a7=drawable/btn_radio_off_pressed +010801a8=drawable/btn_radio_off_pressed_holo_dark +010801a9=drawable/btn_radio_off_pressed_holo_light +010801aa=drawable/btn_radio_off_selected +010801ab=drawable/btn_radio_off_to_on_mtrl_animation +010801ac=drawable/btn_radio_on +010801ad=drawable/btn_radio_on_disabled_focused_holo_dark +010801ae=drawable/btn_radio_on_disabled_focused_holo_light +010801af=drawable/btn_radio_on_disabled_holo_dark +010801b0=drawable/btn_radio_on_disabled_holo_light +010801b1=drawable/btn_radio_on_focused_holo_dark +010801b2=drawable/btn_radio_on_focused_holo_light +010801b3=drawable/btn_radio_on_holo +010801b4=drawable/btn_radio_on_holo_dark +010801b5=drawable/btn_radio_on_holo_light +010801b6=drawable/btn_radio_on_mtrl +010801b7=drawable/btn_radio_on_mtrl_alpha +010801b8=drawable/btn_radio_on_pressed +010801b9=drawable/btn_radio_on_pressed_holo_dark +010801ba=drawable/btn_radio_on_pressed_holo_light +010801bb=drawable/btn_radio_on_pressed_mtrl_alpha +010801bc=drawable/btn_radio_on_selected +010801bd=drawable/btn_radio_on_to_off_mtrl_animation +010801be=drawable/btn_rating_star_off_disabled_focused_holo_dark +010801bf=drawable/btn_rating_star_off_disabled_focused_holo_light +010801c0=drawable/btn_rating_star_off_disabled_holo_dark +010801c1=drawable/btn_rating_star_off_disabled_holo_light +010801c2=drawable/btn_rating_star_off_focused_holo_dark +010801c3=drawable/btn_rating_star_off_focused_holo_light +010801c4=drawable/btn_rating_star_off_mtrl_alpha +010801c5=drawable/btn_rating_star_off_normal +010801c6=drawable/btn_rating_star_off_normal_holo_dark +010801c7=drawable/btn_rating_star_off_normal_holo_light +010801c8=drawable/btn_rating_star_off_pressed +010801c9=drawable/btn_rating_star_off_pressed_holo_dark +010801ca=drawable/btn_rating_star_off_pressed_holo_light +010801cb=drawable/btn_rating_star_off_selected +010801cc=drawable/btn_rating_star_on_disabled_focused_holo_dark +010801cd=drawable/btn_rating_star_on_disabled_focused_holo_light +010801ce=drawable/btn_rating_star_on_disabled_holo_dark +010801cf=drawable/btn_rating_star_on_disabled_holo_light +010801d0=drawable/btn_rating_star_on_focused_holo_dark +010801d1=drawable/btn_rating_star_on_focused_holo_light +010801d2=drawable/btn_rating_star_on_mtrl_alpha +010801d3=drawable/btn_rating_star_on_normal +010801d4=drawable/btn_rating_star_on_normal_holo_dark +010801d5=drawable/btn_rating_star_on_normal_holo_light +010801d6=drawable/btn_rating_star_on_pressed +010801d7=drawable/btn_rating_star_on_pressed_holo_dark +010801d8=drawable/btn_rating_star_on_pressed_holo_light +010801d9=drawable/btn_rating_star_on_selected +010801da=drawable/btn_search_dialog +010801db=drawable/btn_search_dialog_default +010801dc=drawable/btn_search_dialog_pressed +010801dd=drawable/btn_search_dialog_selected +010801de=drawable/btn_search_dialog_voice +010801df=drawable/btn_search_dialog_voice_default +010801e0=drawable/btn_search_dialog_voice_pressed +010801e1=drawable/btn_search_dialog_voice_selected +010801e2=drawable/btn_square_overlay +010801e3=drawable/btn_square_overlay_disabled +010801e4=drawable/btn_square_overlay_disabled_focused +010801e5=drawable/btn_square_overlay_normal +010801e6=drawable/btn_square_overlay_pressed +010801e7=drawable/btn_square_overlay_selected +010801e8=drawable/btn_star_big_off_disable +010801e9=drawable/btn_star_big_off_disable_focused +010801ea=drawable/btn_star_big_off_pressed +010801eb=drawable/btn_star_big_off_selected +010801ec=drawable/btn_star_big_on_disable +010801ed=drawable/btn_star_big_on_disable_focused +010801ee=drawable/btn_star_big_on_pressed +010801ef=drawable/btn_star_big_on_selected +010801f0=drawable/btn_star_holo_dark +010801f1=drawable/btn_star_holo_light +010801f2=drawable/btn_star_label_background +010801f3=drawable/btn_star_material +010801f4=drawable/btn_star_mtrl_alpha +010801f5=drawable/btn_star_off_disabled_focused_holo_dark +010801f6=drawable/btn_star_off_disabled_focused_holo_light +010801f7=drawable/btn_star_off_disabled_holo_dark +010801f8=drawable/btn_star_off_disabled_holo_light +010801f9=drawable/btn_star_off_focused_holo_dark +010801fa=drawable/btn_star_off_focused_holo_light +010801fb=drawable/btn_star_off_normal_holo_dark +010801fc=drawable/btn_star_off_normal_holo_light +010801fd=drawable/btn_star_off_pressed_holo_dark +010801fe=drawable/btn_star_off_pressed_holo_light +010801ff=drawable/btn_star_on_disabled_focused_holo_dark +01080200=drawable/btn_star_on_disabled_focused_holo_light +01080201=drawable/btn_star_on_disabled_holo_dark +01080202=drawable/btn_star_on_disabled_holo_light +01080203=drawable/btn_star_on_focused_holo_dark +01080204=drawable/btn_star_on_focused_holo_light +01080205=drawable/btn_star_on_normal_holo_dark +01080206=drawable/btn_star_on_normal_holo_light +01080207=drawable/btn_star_on_pressed_holo_dark +01080208=drawable/btn_star_on_pressed_holo_light +01080209=drawable/btn_switch_to_off_mtrl_00001 +0108020a=drawable/btn_switch_to_off_mtrl_00002 +0108020b=drawable/btn_switch_to_off_mtrl_00003 +0108020c=drawable/btn_switch_to_off_mtrl_00004 +0108020d=drawable/btn_switch_to_off_mtrl_00005 +0108020e=drawable/btn_switch_to_off_mtrl_00006 +0108020f=drawable/btn_switch_to_off_mtrl_00007 +01080210=drawable/btn_switch_to_off_mtrl_00008 +01080211=drawable/btn_switch_to_off_mtrl_00009 +01080212=drawable/btn_switch_to_off_mtrl_00010 +01080213=drawable/btn_switch_to_off_mtrl_00011 +01080214=drawable/btn_switch_to_off_mtrl_00012 +01080215=drawable/btn_switch_to_on_mtrl_00001 +01080216=drawable/btn_switch_to_on_mtrl_00002 +01080217=drawable/btn_switch_to_on_mtrl_00003 +01080218=drawable/btn_switch_to_on_mtrl_00004 +01080219=drawable/btn_switch_to_on_mtrl_00005 +0108021a=drawable/btn_switch_to_on_mtrl_00006 +0108021b=drawable/btn_switch_to_on_mtrl_00007 +0108021c=drawable/btn_switch_to_on_mtrl_00008 +0108021d=drawable/btn_switch_to_on_mtrl_00009 +0108021e=drawable/btn_switch_to_on_mtrl_00010 +0108021f=drawable/btn_switch_to_on_mtrl_00011 +01080220=drawable/btn_switch_to_on_mtrl_00012 +01080221=drawable/btn_toggle +01080222=drawable/btn_toggle_bg +01080223=drawable/btn_toggle_holo_dark +01080224=drawable/btn_toggle_holo_light +01080225=drawable/btn_toggle_material +01080226=drawable/btn_toggle_off +01080227=drawable/btn_toggle_off_disabled_focused_holo_dark +01080228=drawable/btn_toggle_off_disabled_focused_holo_light +01080229=drawable/btn_toggle_off_disabled_holo_dark +0108022a=drawable/btn_toggle_off_disabled_holo_light +0108022b=drawable/btn_toggle_off_focused_holo_dark +0108022c=drawable/btn_toggle_off_focused_holo_light +0108022d=drawable/btn_toggle_off_normal_holo_dark +0108022e=drawable/btn_toggle_off_normal_holo_light +0108022f=drawable/btn_toggle_off_pressed_holo_dark +01080230=drawable/btn_toggle_off_pressed_holo_light +01080231=drawable/btn_toggle_on +01080232=drawable/btn_toggle_on_disabled_focused_holo_dark +01080233=drawable/btn_toggle_on_disabled_focused_holo_light +01080234=drawable/btn_toggle_on_disabled_holo_dark +01080235=drawable/btn_toggle_on_disabled_holo_light +01080236=drawable/btn_toggle_on_focused_holo_dark +01080237=drawable/btn_toggle_on_focused_holo_light +01080238=drawable/btn_toggle_on_normal_holo_dark +01080239=drawable/btn_toggle_on_normal_holo_light +0108023a=drawable/btn_toggle_on_pressed_holo_dark +0108023b=drawable/btn_toggle_on_pressed_holo_light +0108023c=drawable/btn_zoom_down +0108023d=drawable/btn_zoom_down_disabled +0108023e=drawable/btn_zoom_down_disabled_focused +0108023f=drawable/btn_zoom_down_normal +01080240=drawable/btn_zoom_down_pressed +01080241=drawable/btn_zoom_down_selected +01080242=drawable/btn_zoom_page +01080243=drawable/btn_zoom_page_normal +01080244=drawable/btn_zoom_page_press +01080245=drawable/btn_zoom_up +01080246=drawable/btn_zoom_up_disabled +01080247=drawable/btn_zoom_up_disabled_focused +01080248=drawable/btn_zoom_up_normal +01080249=drawable/btn_zoom_up_pressed +0108024a=drawable/btn_zoom_up_selected +0108024b=drawable/button_inset +0108024c=drawable/cab_background_bottom_holo_dark +0108024d=drawable/cab_background_bottom_holo_light +0108024e=drawable/cab_background_bottom_material +0108024f=drawable/cab_background_bottom_mtrl_alpha +01080250=drawable/cab_background_top_holo_dark +01080251=drawable/cab_background_top_holo_light +01080252=drawable/cab_background_top_material +01080253=drawable/cab_background_top_mtrl_alpha +01080254=drawable/call_contact +01080255=drawable/car_button_background +01080256=drawable/car_checkbox +01080257=drawable/car_dialog_button_background +01080258=drawable/car_seekbar_thumb +01080259=drawable/car_seekbar_thumb_dark +0108025a=drawable/car_seekbar_thumb_light +0108025b=drawable/car_seekbar_track +0108025c=drawable/car_seekbar_track_dark +0108025d=drawable/car_seekbar_track_light +0108025e=drawable/car_switch_thumb +0108025f=drawable/chooser_action_button_bg +01080260=drawable/chooser_content_preview_rounded +01080261=drawable/chooser_dialog_background +01080262=drawable/chooser_direct_share_icon_placeholder +01080263=drawable/chooser_direct_share_label_placeholder +01080264=drawable/chooser_file_generic +01080265=drawable/chooser_group_background +01080266=drawable/chooser_pinned_background +01080267=drawable/chooser_row_layer_list +01080268=drawable/cling_arrow_up +01080269=drawable/cling_bg +0108026a=drawable/cling_button +0108026b=drawable/cling_button_normal +0108026c=drawable/cling_button_pressed +0108026d=drawable/clock_dial +0108026e=drawable/clock_hand_hour +0108026f=drawable/clock_hand_minute +01080270=drawable/code_lock_bottom +01080271=drawable/code_lock_left +01080272=drawable/code_lock_top +01080273=drawable/combobox_disabled +01080274=drawable/combobox_nohighlight +01080275=drawable/compass_arrow +01080276=drawable/compass_base +01080277=drawable/config_scrollbarThumbVertical +01080278=drawable/config_scrollbarTrackVertical +01080279=drawable/contact_header_bg +0108027a=drawable/control_background_32dp_material +0108027b=drawable/control_background_40dp_material +0108027c=drawable/conversation_badge_background +0108027d=drawable/conversation_badge_ring +0108027e=drawable/conversation_unread_bg +0108027f=drawable/create_contact +01080280=drawable/dark_header_dither +01080281=drawable/day_picker_week_view_dayline_holo +01080282=drawable/decor_caption_title +01080283=drawable/decor_caption_title_focused +01080284=drawable/decor_caption_title_unfocused +01080285=drawable/decor_close_button_dark +01080286=drawable/decor_close_button_light +01080287=drawable/decor_maximize_button_dark +01080288=drawable/decor_maximize_button_light +01080289=drawable/default_lock_wallpaper +0108028a=drawable/default_wallpaper +0108028b=drawable/dialog_background_material +0108028c=drawable/dialog_bottom_holo_dark +0108028d=drawable/dialog_bottom_holo_light +0108028e=drawable/dialog_divider_horizontal_holo_dark +0108028f=drawable/dialog_divider_horizontal_holo_light +01080290=drawable/dialog_divider_horizontal_light +01080291=drawable/dialog_full_holo_dark +01080292=drawable/dialog_full_holo_light +01080293=drawable/dialog_ic_close_focused_holo_dark +01080294=drawable/dialog_ic_close_focused_holo_light +01080295=drawable/dialog_ic_close_normal_holo_dark +01080296=drawable/dialog_ic_close_normal_holo_light +01080297=drawable/dialog_ic_close_pressed_holo_dark +01080298=drawable/dialog_ic_close_pressed_holo_light +01080299=drawable/dialog_middle_holo +0108029a=drawable/dialog_middle_holo_dark +0108029b=drawable/dialog_middle_holo_light +0108029c=drawable/dialog_top_holo_dark +0108029d=drawable/dialog_top_holo_light +0108029e=drawable/divider_horizontal_bright_opaque +0108029f=drawable/divider_horizontal_dark_opaque +010802a0=drawable/divider_horizontal_holo_dark +010802a1=drawable/divider_horizontal_holo_light +010802a2=drawable/divider_strong_holo +010802a3=drawable/divider_vertical_bright +010802a4=drawable/divider_vertical_bright_opaque +010802a5=drawable/divider_vertical_dark +010802a6=drawable/divider_vertical_dark_opaque +010802a7=drawable/divider_vertical_holo_dark +010802a8=drawable/divider_vertical_holo_light +010802a9=drawable/dropdown_disabled_focused_holo_dark +010802aa=drawable/dropdown_disabled_focused_holo_light +010802ab=drawable/dropdown_disabled_holo_dark +010802ac=drawable/dropdown_disabled_holo_light +010802ad=drawable/dropdown_focused_holo_dark +010802ae=drawable/dropdown_focused_holo_light +010802af=drawable/dropdown_ic_arrow_disabled_focused_holo_dark +010802b0=drawable/dropdown_ic_arrow_disabled_focused_holo_light +010802b1=drawable/dropdown_ic_arrow_disabled_holo_dark +010802b2=drawable/dropdown_ic_arrow_disabled_holo_light +010802b3=drawable/dropdown_ic_arrow_focused_holo_dark +010802b4=drawable/dropdown_ic_arrow_focused_holo_light +010802b5=drawable/dropdown_ic_arrow_normal_holo_dark +010802b6=drawable/dropdown_ic_arrow_normal_holo_light +010802b7=drawable/dropdown_ic_arrow_pressed_holo_dark +010802b8=drawable/dropdown_ic_arrow_pressed_holo_light +010802b9=drawable/dropdown_normal_holo_dark +010802ba=drawable/dropdown_normal_holo_light +010802bb=drawable/dropdown_pressed_holo_dark +010802bc=drawable/dropdown_pressed_holo_light +010802bd=drawable/edit_query +010802be=drawable/edit_query_background +010802bf=drawable/edit_query_background_normal +010802c0=drawable/edit_query_background_pressed +010802c1=drawable/edit_query_background_selected +010802c2=drawable/edit_text_holo_dark +010802c3=drawable/edit_text_holo_light +010802c4=drawable/edit_text_material +010802c5=drawable/editbox_background_focus_yellow +010802c6=drawable/editbox_dropdown_background +010802c7=drawable/editbox_dropdown_background_dark +010802c8=drawable/emergency_icon +010802c9=drawable/emo_im_angel +010802ca=drawable/emo_im_cool +010802cb=drawable/emo_im_crying +010802cc=drawable/emo_im_embarrassed +010802cd=drawable/emo_im_foot_in_mouth +010802ce=drawable/emo_im_happy +010802cf=drawable/emo_im_kissing +010802d0=drawable/emo_im_laughing +010802d1=drawable/emo_im_lips_are_sealed +010802d2=drawable/emo_im_money_mouth +010802d3=drawable/emo_im_sad +010802d4=drawable/emo_im_surprised +010802d5=drawable/emo_im_tongue_sticking_out +010802d6=drawable/emo_im_undecided +010802d7=drawable/emo_im_winking +010802d8=drawable/emo_im_wtf +010802d9=drawable/emo_im_yelling +010802da=drawable/emulator_circular_window_overlay +010802db=drawable/expander_close_holo_dark +010802dc=drawable/expander_close_holo_light +010802dd=drawable/expander_close_mtrl_alpha +010802de=drawable/expander_group +010802df=drawable/expander_group_holo_dark +010802e0=drawable/expander_group_holo_light +010802e1=drawable/expander_group_material +010802e2=drawable/expander_ic_maximized +010802e3=drawable/expander_ic_minimized +010802e4=drawable/expander_open_holo_dark +010802e5=drawable/expander_open_holo_light +010802e6=drawable/expander_open_mtrl_alpha +010802e7=drawable/fastscroll_label_left_holo_dark +010802e8=drawable/fastscroll_label_left_holo_light +010802e9=drawable/fastscroll_label_left_material +010802ea=drawable/fastscroll_label_right_holo_dark +010802eb=drawable/fastscroll_label_right_holo_light +010802ec=drawable/fastscroll_label_right_material +010802ed=drawable/fastscroll_thumb_default_holo +010802ee=drawable/fastscroll_thumb_holo +010802ef=drawable/fastscroll_thumb_material +010802f0=drawable/fastscroll_thumb_pressed_holo +010802f1=drawable/fastscroll_track_default_holo_dark +010802f2=drawable/fastscroll_track_default_holo_light +010802f3=drawable/fastscroll_track_holo_dark +010802f4=drawable/fastscroll_track_holo_light +010802f5=drawable/fastscroll_track_material +010802f6=drawable/fastscroll_track_pressed_holo_dark +010802f7=drawable/fastscroll_track_pressed_holo_light +010802f8=drawable/floating_popup_background_dark +010802f9=drawable/floating_popup_background_light +010802fa=drawable/focused_application_background_static +010802fb=drawable/frame_gallery_thumb +010802fc=drawable/frame_gallery_thumb_pressed +010802fd=drawable/frame_gallery_thumb_selected +010802fe=drawable/ft_avd_toarrow +010802ff=drawable/ft_avd_toarrow_animation +01080300=drawable/ft_avd_tooverflow +01080301=drawable/ft_avd_tooverflow_animation +01080302=drawable/gallery_item_background +01080303=drawable/gallery_selected_default +01080304=drawable/gallery_selected_focused +01080305=drawable/gallery_selected_pressed +01080306=drawable/gallery_unselected_default +01080307=drawable/gallery_unselected_pressed +01080308=drawable/global_action_icon_background +01080309=drawable/grid_selector_background +0108030a=drawable/grid_selector_background_focus +0108030b=drawable/grid_selector_background_pressed +0108030c=drawable/highlight_disabled +0108030d=drawable/highlight_pressed +0108030e=drawable/highlight_selected +0108030f=drawable/ic_ab_back_holo_dark +01080310=drawable/ic_ab_back_holo_dark_am +01080311=drawable/ic_ab_back_holo_light +01080312=drawable/ic_ab_back_holo_light_am +01080313=drawable/ic_ab_back_material +01080314=drawable/ic_ab_back_material_dark +01080315=drawable/ic_ab_back_material_light +01080316=drawable/ic_ab_back_material_settings +01080317=drawable/ic_accessibility_color_correction +01080318=drawable/ic_accessibility_color_inversion +01080319=drawable/ic_accessibility_magnification +0108031a=drawable/ic_account_circle +0108031b=drawable/ic_action_assist_focused +0108031c=drawable/ic_action_open +0108031d=drawable/ic_aggregated +0108031e=drawable/ic_alert_window_layer +0108031f=drawable/ic_arrow_drop_right_black_24dp +01080320=drawable/ic_arrow_forward +01080321=drawable/ic_audio_alarm +01080322=drawable/ic_audio_alarm_mute +01080323=drawable/ic_audio_media +01080324=drawable/ic_audio_media_mute +01080325=drawable/ic_audio_notification +01080326=drawable/ic_audio_notification_am_alpha +01080327=drawable/ic_audio_notification_mute +01080328=drawable/ic_audio_notification_mute_am_alpha +01080329=drawable/ic_audio_ring_notif +0108032a=drawable/ic_audio_ring_notif_mute +0108032b=drawable/ic_audio_ring_notif_vibrate +0108032c=drawable/ic_audio_vol +0108032d=drawable/ic_audio_vol_mute +0108032e=drawable/ic_battery +0108032f=drawable/ic_battery_80_24dp +01080330=drawable/ic_bluetooth_share_icon +01080331=drawable/ic_bluetooth_transient_animation +01080332=drawable/ic_bluetooth_transient_animation_drawable +01080333=drawable/ic_bt_headphones_a2dp +01080334=drawable/ic_bt_headset_hfp +01080335=drawable/ic_bt_hearing_aid +01080336=drawable/ic_bt_laptop +01080337=drawable/ic_bt_misc_hid +01080338=drawable/ic_bt_network_pan +01080339=drawable/ic_bt_pointing_hid +0108033a=drawable/ic_btn_round_more +0108033b=drawable/ic_btn_round_more_disabled +0108033c=drawable/ic_btn_round_more_normal +0108033d=drawable/ic_btn_search_go +0108033e=drawable/ic_btn_square_browser_zoom_fit_page +0108033f=drawable/ic_btn_square_browser_zoom_fit_page_disabled +01080340=drawable/ic_btn_square_browser_zoom_fit_page_normal +01080341=drawable/ic_btn_square_browser_zoom_page_overview +01080342=drawable/ic_btn_square_browser_zoom_page_overview_disabled +01080343=drawable/ic_btn_square_browser_zoom_page_overview_normal +01080344=drawable/ic_bullet_key_permission +01080345=drawable/ic_cab_done_holo +01080346=drawable/ic_cab_done_holo_dark +01080347=drawable/ic_cab_done_holo_light +01080348=drawable/ic_cab_done_mtrl_alpha +01080349=drawable/ic_camera +0108034a=drawable/ic_check_circle_24px +0108034b=drawable/ic_checkmark_holo_light +0108034c=drawable/ic_chevron_end +0108034d=drawable/ic_chevron_start +0108034e=drawable/ic_chooser_group_arrow +0108034f=drawable/ic_chooser_pin +01080350=drawable/ic_chooser_pin_dialog +01080351=drawable/ic_clear +01080352=drawable/ic_clear_disabled +01080353=drawable/ic_clear_holo_dark +01080354=drawable/ic_clear_holo_light +01080355=drawable/ic_clear_material +01080356=drawable/ic_clear_mtrl_alpha +01080357=drawable/ic_clear_normal +01080358=drawable/ic_clear_search_api_disabled_holo_dark +01080359=drawable/ic_clear_search_api_disabled_holo_light +0108035a=drawable/ic_clear_search_api_holo_dark +0108035b=drawable/ic_clear_search_api_holo_light +0108035c=drawable/ic_close +0108035d=drawable/ic_coins_l +0108035e=drawable/ic_coins_s +0108035f=drawable/ic_collapse_bundle +01080360=drawable/ic_collapse_notification +01080361=drawable/ic_commit +01080362=drawable/ic_commit_search_api_holo_dark +01080363=drawable/ic_commit_search_api_holo_light +01080364=drawable/ic_commit_search_api_material +01080365=drawable/ic_commit_search_api_mtrl_alpha +01080366=drawable/ic_contact_picture +01080367=drawable/ic_contact_picture_180_holo_dark +01080368=drawable/ic_contact_picture_180_holo_light +01080369=drawable/ic_contact_picture_2 +0108036a=drawable/ic_contact_picture_3 +0108036b=drawable/ic_contact_picture_holo_dark +0108036c=drawable/ic_contact_picture_holo_light +0108036d=drawable/ic_corp_badge +0108036e=drawable/ic_corp_badge_case +0108036f=drawable/ic_corp_badge_color +01080370=drawable/ic_corp_badge_no_background +01080371=drawable/ic_corp_badge_off +01080372=drawable/ic_corp_icon +01080373=drawable/ic_corp_icon_badge_case +01080374=drawable/ic_corp_icon_badge_color +01080375=drawable/ic_corp_icon_badge_shadow +01080376=drawable/ic_corp_statusbar_icon +01080377=drawable/ic_corp_user_badge +01080378=drawable/ic_dialog_alert_holo_dark +01080379=drawable/ic_dialog_alert_holo_light +0108037a=drawable/ic_dialog_alert_material +0108037b=drawable/ic_dialog_close_normal_holo +0108037c=drawable/ic_dialog_close_pressed_holo +0108037d=drawable/ic_dialog_focused_holo +0108037e=drawable/ic_dialog_time +0108037f=drawable/ic_dialog_usb +01080380=drawable/ic_dnd_block_notifications +01080381=drawable/ic_doc_apk +01080382=drawable/ic_doc_audio +01080383=drawable/ic_doc_certificate +01080384=drawable/ic_doc_codes +01080385=drawable/ic_doc_compressed +01080386=drawable/ic_doc_contact +01080387=drawable/ic_doc_document +01080388=drawable/ic_doc_event +01080389=drawable/ic_doc_excel +0108038a=drawable/ic_doc_folder +0108038b=drawable/ic_doc_font +0108038c=drawable/ic_doc_generic +0108038d=drawable/ic_doc_image +0108038e=drawable/ic_doc_pdf +0108038f=drawable/ic_doc_powerpoint +01080390=drawable/ic_doc_presentation +01080391=drawable/ic_doc_spreadsheet +01080392=drawable/ic_doc_text +01080393=drawable/ic_doc_video +01080394=drawable/ic_doc_word +01080395=drawable/ic_drag_handle +01080396=drawable/ic_eject_24dp +01080397=drawable/ic_emergency +01080398=drawable/ic_expand_bundle +01080399=drawable/ic_expand_more +0108039a=drawable/ic_expand_more_48dp +0108039b=drawable/ic_expand_notification +0108039c=drawable/ic_faster_emergency +0108039d=drawable/ic_feedback +0108039e=drawable/ic_file_copy +0108039f=drawable/ic_find_next_holo_dark +010803a0=drawable/ic_find_next_holo_light +010803a1=drawable/ic_find_next_material +010803a2=drawable/ic_find_next_mtrl_alpha +010803a3=drawable/ic_find_previous_holo_dark +010803a4=drawable/ic_find_previous_holo_light +010803a5=drawable/ic_find_previous_material +010803a6=drawable/ic_find_previous_mtrl_alpha +010803a7=drawable/ic_fingerprint +010803a8=drawable/ic_folder_24dp +010803a9=drawable/ic_go +010803aa=drawable/ic_go_search_api_holo_dark +010803ab=drawable/ic_go_search_api_holo_light +010803ac=drawable/ic_go_search_api_material +010803ad=drawable/ic_hotspot_transient_animation +010803ae=drawable/ic_hotspot_transient_animation_drawable +010803af=drawable/ic_info_outline +010803b0=drawable/ic_info_outline_24 +010803b1=drawable/ic_input_extract_action_done +010803b2=drawable/ic_input_extract_action_go +010803b3=drawable/ic_input_extract_action_next +010803b4=drawable/ic_input_extract_action_previous +010803b5=drawable/ic_input_extract_action_return +010803b6=drawable/ic_input_extract_action_search +010803b7=drawable/ic_input_extract_action_send +010803b8=drawable/ic_instant_icon_badge_bolt +010803b9=drawable/ic_jog_dial_answer +010803ba=drawable/ic_jog_dial_answer_and_end +010803bb=drawable/ic_jog_dial_answer_and_hold +010803bc=drawable/ic_jog_dial_decline +010803bd=drawable/ic_jog_dial_sound_off +010803be=drawable/ic_jog_dial_sound_on +010803bf=drawable/ic_jog_dial_unlock +010803c0=drawable/ic_jog_dial_vibrate_on +010803c1=drawable/ic_launcher_android +010803c2=drawable/ic_lock +010803c3=drawable/ic_lock_airplane_mode +010803c4=drawable/ic_lock_airplane_mode_alpha +010803c5=drawable/ic_lock_airplane_mode_off +010803c6=drawable/ic_lock_airplane_mode_off_am_alpha +010803c7=drawable/ic_lock_bugreport +010803c8=drawable/ic_lock_idle_alarm_alpha +010803c9=drawable/ic_lock_lock_alpha +010803ca=drawable/ic_lock_lockdown +010803cb=drawable/ic_lock_open +010803cc=drawable/ic_lock_open_wht_24dp +010803cd=drawable/ic_lock_outline_wht_24dp +010803ce=drawable/ic_lock_power_off_alpha +010803cf=drawable/ic_lock_ringer_off_alpha +010803d0=drawable/ic_lock_ringer_on_alpha +010803d1=drawable/ic_lock_silent_mode_vibrate +010803d2=drawable/ic_lockscreen_alarm +010803d3=drawable/ic_lockscreen_answer_active +010803d4=drawable/ic_lockscreen_answer_focused +010803d5=drawable/ic_lockscreen_answer_normal +010803d6=drawable/ic_lockscreen_camera_activated +010803d7=drawable/ic_lockscreen_camera_normal +010803d8=drawable/ic_lockscreen_chevron_down +010803d9=drawable/ic_lockscreen_chevron_left +010803da=drawable/ic_lockscreen_chevron_right +010803db=drawable/ic_lockscreen_chevron_up +010803dc=drawable/ic_lockscreen_decline_activated +010803dd=drawable/ic_lockscreen_decline_focused +010803de=drawable/ic_lockscreen_decline_normal +010803df=drawable/ic_lockscreen_emergencycall_normal +010803e0=drawable/ic_lockscreen_emergencycall_pressed +010803e1=drawable/ic_lockscreen_forgotpassword_normal +010803e2=drawable/ic_lockscreen_forgotpassword_pressed +010803e3=drawable/ic_lockscreen_google_activated +010803e4=drawable/ic_lockscreen_google_focused +010803e5=drawable/ic_lockscreen_google_normal +010803e6=drawable/ic_lockscreen_handle_normal +010803e7=drawable/ic_lockscreen_handle_pressed +010803e8=drawable/ic_lockscreen_ime +010803e9=drawable/ic_lockscreen_outerring +010803ea=drawable/ic_lockscreen_player_background +010803eb=drawable/ic_lockscreen_puk +010803ec=drawable/ic_lockscreen_silent_activated +010803ed=drawable/ic_lockscreen_silent_focused +010803ee=drawable/ic_lockscreen_silent_normal +010803ef=drawable/ic_lockscreen_sim +010803f0=drawable/ic_lockscreen_soundon_activated +010803f1=drawable/ic_lockscreen_soundon_focused +010803f2=drawable/ic_lockscreen_soundon_normal +010803f3=drawable/ic_lockscreen_text_activated +010803f4=drawable/ic_lockscreen_text_focusde +010803f5=drawable/ic_lockscreen_text_normal +010803f6=drawable/ic_lockscreen_unlock_activated +010803f7=drawable/ic_lockscreen_unlock_normal +010803f8=drawable/ic_lockscreens_now_button +010803f9=drawable/ic_logout +010803fa=drawable/ic_maps_indicator_current_position +010803fb=drawable/ic_maps_indicator_current_position_anim +010803fc=drawable/ic_maps_indicator_current_position_anim1 +010803fd=drawable/ic_maps_indicator_current_position_anim2 +010803fe=drawable/ic_maps_indicator_current_position_anim3 +010803ff=drawable/ic_media_embed_play +01080400=drawable/ic_media_fullscreen +01080401=drawable/ic_media_route_connected_dark_00_mtrl +01080402=drawable/ic_media_route_connected_dark_01_mtrl +01080403=drawable/ic_media_route_connected_dark_02_mtrl +01080404=drawable/ic_media_route_connected_dark_03_mtrl +01080405=drawable/ic_media_route_connected_dark_04_mtrl +01080406=drawable/ic_media_route_connected_dark_05_mtrl +01080407=drawable/ic_media_route_connected_dark_06_mtrl +01080408=drawable/ic_media_route_connected_dark_07_mtrl +01080409=drawable/ic_media_route_connected_dark_08_mtrl +0108040a=drawable/ic_media_route_connected_dark_09_mtrl +0108040b=drawable/ic_media_route_connected_dark_10_mtrl +0108040c=drawable/ic_media_route_connected_dark_11_mtrl +0108040d=drawable/ic_media_route_connected_dark_12_mtrl +0108040e=drawable/ic_media_route_connected_dark_13_mtrl +0108040f=drawable/ic_media_route_connected_dark_14_mtrl +01080410=drawable/ic_media_route_connected_dark_15_mtrl +01080411=drawable/ic_media_route_connected_dark_16_mtrl +01080412=drawable/ic_media_route_connected_dark_17_mtrl +01080413=drawable/ic_media_route_connected_dark_18_mtrl +01080414=drawable/ic_media_route_connected_dark_19_mtrl +01080415=drawable/ic_media_route_connected_dark_20_mtrl +01080416=drawable/ic_media_route_connected_dark_21_mtrl +01080417=drawable/ic_media_route_connected_dark_22_mtrl +01080418=drawable/ic_media_route_connected_dark_23_mtrl +01080419=drawable/ic_media_route_connected_dark_24_mtrl +0108041a=drawable/ic_media_route_connected_dark_25_mtrl +0108041b=drawable/ic_media_route_connected_dark_26_mtrl +0108041c=drawable/ic_media_route_connected_dark_27_mtrl +0108041d=drawable/ic_media_route_connected_dark_28_mtrl +0108041e=drawable/ic_media_route_connected_dark_29_mtrl +0108041f=drawable/ic_media_route_connected_dark_30_mtrl +01080420=drawable/ic_media_route_connected_dark_material +01080421=drawable/ic_media_route_connected_light_00_mtrl +01080422=drawable/ic_media_route_connected_light_01_mtrl +01080423=drawable/ic_media_route_connected_light_02_mtrl +01080424=drawable/ic_media_route_connected_light_03_mtrl +01080425=drawable/ic_media_route_connected_light_04_mtrl +01080426=drawable/ic_media_route_connected_light_05_mtrl +01080427=drawable/ic_media_route_connected_light_06_mtrl +01080428=drawable/ic_media_route_connected_light_07_mtrl +01080429=drawable/ic_media_route_connected_light_08_mtrl +0108042a=drawable/ic_media_route_connected_light_09_mtrl +0108042b=drawable/ic_media_route_connected_light_10_mtrl +0108042c=drawable/ic_media_route_connected_light_11_mtrl +0108042d=drawable/ic_media_route_connected_light_12_mtrl +0108042e=drawable/ic_media_route_connected_light_13_mtrl +0108042f=drawable/ic_media_route_connected_light_14_mtrl +01080430=drawable/ic_media_route_connected_light_15_mtrl +01080431=drawable/ic_media_route_connected_light_16_mtrl +01080432=drawable/ic_media_route_connected_light_17_mtrl +01080433=drawable/ic_media_route_connected_light_18_mtrl +01080434=drawable/ic_media_route_connected_light_19_mtrl +01080435=drawable/ic_media_route_connected_light_20_mtrl +01080436=drawable/ic_media_route_connected_light_21_mtrl +01080437=drawable/ic_media_route_connected_light_22_mtrl +01080438=drawable/ic_media_route_connected_light_23_mtrl +01080439=drawable/ic_media_route_connected_light_24_mtrl +0108043a=drawable/ic_media_route_connected_light_25_mtrl +0108043b=drawable/ic_media_route_connected_light_26_mtrl +0108043c=drawable/ic_media_route_connected_light_27_mtrl +0108043d=drawable/ic_media_route_connected_light_28_mtrl +0108043e=drawable/ic_media_route_connected_light_29_mtrl +0108043f=drawable/ic_media_route_connected_light_30_mtrl +01080440=drawable/ic_media_route_connected_light_material +01080441=drawable/ic_media_route_connecting_dark_00_mtrl +01080442=drawable/ic_media_route_connecting_dark_01_mtrl +01080443=drawable/ic_media_route_connecting_dark_02_mtrl +01080444=drawable/ic_media_route_connecting_dark_03_mtrl +01080445=drawable/ic_media_route_connecting_dark_04_mtrl +01080446=drawable/ic_media_route_connecting_dark_05_mtrl +01080447=drawable/ic_media_route_connecting_dark_06_mtrl +01080448=drawable/ic_media_route_connecting_dark_07_mtrl +01080449=drawable/ic_media_route_connecting_dark_08_mtrl +0108044a=drawable/ic_media_route_connecting_dark_09_mtrl +0108044b=drawable/ic_media_route_connecting_dark_10_mtrl +0108044c=drawable/ic_media_route_connecting_dark_11_mtrl +0108044d=drawable/ic_media_route_connecting_dark_12_mtrl +0108044e=drawable/ic_media_route_connecting_dark_13_mtrl +0108044f=drawable/ic_media_route_connecting_dark_14_mtrl +01080450=drawable/ic_media_route_connecting_dark_15_mtrl +01080451=drawable/ic_media_route_connecting_dark_16_mtrl +01080452=drawable/ic_media_route_connecting_dark_17_mtrl +01080453=drawable/ic_media_route_connecting_dark_18_mtrl +01080454=drawable/ic_media_route_connecting_dark_19_mtrl +01080455=drawable/ic_media_route_connecting_dark_20_mtrl +01080456=drawable/ic_media_route_connecting_dark_21_mtrl +01080457=drawable/ic_media_route_connecting_dark_22_mtrl +01080458=drawable/ic_media_route_connecting_dark_23_mtrl +01080459=drawable/ic_media_route_connecting_dark_24_mtrl +0108045a=drawable/ic_media_route_connecting_dark_25_mtrl +0108045b=drawable/ic_media_route_connecting_dark_26_mtrl +0108045c=drawable/ic_media_route_connecting_dark_27_mtrl +0108045d=drawable/ic_media_route_connecting_dark_28_mtrl +0108045e=drawable/ic_media_route_connecting_dark_29_mtrl +0108045f=drawable/ic_media_route_connecting_dark_30_mtrl +01080460=drawable/ic_media_route_connecting_dark_material +01080461=drawable/ic_media_route_connecting_holo_dark +01080462=drawable/ic_media_route_connecting_holo_light +01080463=drawable/ic_media_route_connecting_light_00_mtrl +01080464=drawable/ic_media_route_connecting_light_01_mtrl +01080465=drawable/ic_media_route_connecting_light_02_mtrl +01080466=drawable/ic_media_route_connecting_light_03_mtrl +01080467=drawable/ic_media_route_connecting_light_04_mtrl +01080468=drawable/ic_media_route_connecting_light_05_mtrl +01080469=drawable/ic_media_route_connecting_light_06_mtrl +0108046a=drawable/ic_media_route_connecting_light_07_mtrl +0108046b=drawable/ic_media_route_connecting_light_08_mtrl +0108046c=drawable/ic_media_route_connecting_light_09_mtrl +0108046d=drawable/ic_media_route_connecting_light_10_mtrl +0108046e=drawable/ic_media_route_connecting_light_11_mtrl +0108046f=drawable/ic_media_route_connecting_light_12_mtrl +01080470=drawable/ic_media_route_connecting_light_13_mtrl +01080471=drawable/ic_media_route_connecting_light_14_mtrl +01080472=drawable/ic_media_route_connecting_light_15_mtrl +01080473=drawable/ic_media_route_connecting_light_16_mtrl +01080474=drawable/ic_media_route_connecting_light_17_mtrl +01080475=drawable/ic_media_route_connecting_light_18_mtrl +01080476=drawable/ic_media_route_connecting_light_19_mtrl +01080477=drawable/ic_media_route_connecting_light_20_mtrl +01080478=drawable/ic_media_route_connecting_light_21_mtrl +01080479=drawable/ic_media_route_connecting_light_22_mtrl +0108047a=drawable/ic_media_route_connecting_light_23_mtrl +0108047b=drawable/ic_media_route_connecting_light_24_mtrl +0108047c=drawable/ic_media_route_connecting_light_25_mtrl +0108047d=drawable/ic_media_route_connecting_light_26_mtrl +0108047e=drawable/ic_media_route_connecting_light_27_mtrl +0108047f=drawable/ic_media_route_connecting_light_28_mtrl +01080480=drawable/ic_media_route_connecting_light_29_mtrl +01080481=drawable/ic_media_route_connecting_light_30_mtrl +01080482=drawable/ic_media_route_connecting_light_material +01080483=drawable/ic_media_route_dark_material +01080484=drawable/ic_media_route_disabled_holo_dark +01080485=drawable/ic_media_route_disabled_holo_light +01080486=drawable/ic_media_route_disabled_mtrl_alpha +01080487=drawable/ic_media_route_holo_dark +01080488=drawable/ic_media_route_holo_light +01080489=drawable/ic_media_route_light_material +0108048a=drawable/ic_media_route_off_dark_mtrl +0108048b=drawable/ic_media_route_off_holo_dark +0108048c=drawable/ic_media_route_off_holo_light +0108048d=drawable/ic_media_route_off_light_mtrl +0108048e=drawable/ic_media_route_on_0_holo_dark +0108048f=drawable/ic_media_route_on_0_holo_light +01080490=drawable/ic_media_route_on_1_holo_dark +01080491=drawable/ic_media_route_on_1_holo_light +01080492=drawable/ic_media_route_on_2_holo_dark +01080493=drawable/ic_media_route_on_2_holo_light +01080494=drawable/ic_media_route_on_holo_dark +01080495=drawable/ic_media_route_on_holo_light +01080496=drawable/ic_media_seamless +01080497=drawable/ic_media_stop +01080498=drawable/ic_media_video_poster +01080499=drawable/ic_menu +0108049a=drawable/ic_menu_account_list +0108049b=drawable/ic_menu_allfriends +0108049c=drawable/ic_menu_archive +0108049d=drawable/ic_menu_attachment +0108049e=drawable/ic_menu_back +0108049f=drawable/ic_menu_block +010804a0=drawable/ic_menu_blocked_user +010804a1=drawable/ic_menu_btn_add +010804a2=drawable/ic_menu_cc +010804a3=drawable/ic_menu_cc_am +010804a4=drawable/ic_menu_chat_dashboard +010804a5=drawable/ic_menu_clear_playlist +010804a6=drawable/ic_menu_compose +010804a7=drawable/ic_menu_copy +010804a8=drawable/ic_menu_copy_holo_dark +010804a9=drawable/ic_menu_copy_holo_light +010804aa=drawable/ic_menu_copy_material +010804ab=drawable/ic_menu_cut +010804ac=drawable/ic_menu_cut_holo_dark +010804ad=drawable/ic_menu_cut_holo_light +010804ae=drawable/ic_menu_cut_material +010804af=drawable/ic_menu_emoticons +010804b0=drawable/ic_menu_end_conversation +010804b1=drawable/ic_menu_find +010804b2=drawable/ic_menu_find_holo_dark +010804b3=drawable/ic_menu_find_holo_light +010804b4=drawable/ic_menu_find_material +010804b5=drawable/ic_menu_find_mtrl_alpha +010804b6=drawable/ic_menu_forward +010804b7=drawable/ic_menu_friendslist +010804b8=drawable/ic_menu_goto +010804b9=drawable/ic_menu_help_holo_light +010804ba=drawable/ic_menu_home +010804bb=drawable/ic_menu_invite +010804bc=drawable/ic_menu_login +010804bd=drawable/ic_menu_mark +010804be=drawable/ic_menu_moreoverflow +010804bf=drawable/ic_menu_moreoverflow_focused_holo_dark +010804c0=drawable/ic_menu_moreoverflow_focused_holo_light +010804c1=drawable/ic_menu_moreoverflow_holo_dark +010804c2=drawable/ic_menu_moreoverflow_holo_light +010804c3=drawable/ic_menu_moreoverflow_material +010804c4=drawable/ic_menu_moreoverflow_material_dark +010804c5=drawable/ic_menu_moreoverflow_material_light +010804c6=drawable/ic_menu_moreoverflow_normal_holo_dark +010804c7=drawable/ic_menu_moreoverflow_normal_holo_light +010804c8=drawable/ic_menu_notifications +010804c9=drawable/ic_menu_paste +010804ca=drawable/ic_menu_paste_holo_dark +010804cb=drawable/ic_menu_paste_holo_light +010804cc=drawable/ic_menu_paste_material +010804cd=drawable/ic_menu_play_clip +010804ce=drawable/ic_menu_refresh +010804cf=drawable/ic_menu_search_holo_dark +010804d0=drawable/ic_menu_search_holo_light +010804d1=drawable/ic_menu_search_material +010804d2=drawable/ic_menu_search_mtrl_alpha +010804d3=drawable/ic_menu_selectall_holo_dark +010804d4=drawable/ic_menu_selectall_holo_light +010804d5=drawable/ic_menu_selectall_material +010804d6=drawable/ic_menu_settings_holo_light +010804d7=drawable/ic_menu_share_holo_dark +010804d8=drawable/ic_menu_share_holo_light +010804d9=drawable/ic_menu_share_material +010804da=drawable/ic_menu_star +010804db=drawable/ic_menu_start_conversation +010804dc=drawable/ic_menu_stop +010804dd=drawable/ic_mic +010804de=drawable/ic_minus +010804df=drawable/ic_mode_edit +010804e0=drawable/ic_more_items +010804e1=drawable/ic_no_apps +010804e2=drawable/ic_notification_alert +010804e3=drawable/ic_notification_block +010804e4=drawable/ic_notification_cast_0 +010804e5=drawable/ic_notification_cast_1 +010804e6=drawable/ic_notification_cast_2 +010804e7=drawable/ic_notification_ime_default +010804e8=drawable/ic_notification_media_route +010804e9=drawable/ic_notifications_alerted +010804ea=drawable/ic_pan_tool +010804eb=drawable/ic_perm_device_info +010804ec=drawable/ic_perm_group_app_info +010804ed=drawable/ic_perm_group_audio_settings +010804ee=drawable/ic_perm_group_bluetooth +010804ef=drawable/ic_perm_group_bookmarks +010804f0=drawable/ic_perm_group_calendar +010804f1=drawable/ic_perm_group_camera +010804f2=drawable/ic_perm_group_device_alarms +010804f3=drawable/ic_perm_group_display +010804f4=drawable/ic_perm_group_effects_battery +010804f5=drawable/ic_perm_group_location +010804f6=drawable/ic_perm_group_messages +010804f7=drawable/ic_perm_group_microphone +010804f8=drawable/ic_perm_group_network +010804f9=drawable/ic_perm_group_personal_info +010804fa=drawable/ic_perm_group_phone_calls +010804fb=drawable/ic_perm_group_screenlock +010804fc=drawable/ic_perm_group_shortrange_network +010804fd=drawable/ic_perm_group_social_info +010804fe=drawable/ic_perm_group_status_bar +010804ff=drawable/ic_perm_group_sync_settings +01080500=drawable/ic_perm_group_system_clock +01080501=drawable/ic_perm_group_system_tools +01080502=drawable/ic_perm_group_voicemail +01080503=drawable/ic_perm_group_wallpapewr +01080504=drawable/ic_permission +01080505=drawable/ic_phone +01080506=drawable/ic_plus +01080507=drawable/ic_popup_sync_1 +01080508=drawable/ic_popup_sync_2 +01080509=drawable/ic_popup_sync_3 +0108050a=drawable/ic_popup_sync_4 +0108050b=drawable/ic_popup_sync_5 +0108050c=drawable/ic_popup_sync_6 +0108050d=drawable/ic_print +0108050e=drawable/ic_print_error +0108050f=drawable/ic_qs_airplane +01080510=drawable/ic_qs_auto_rotate +01080511=drawable/ic_qs_battery_saver +01080512=drawable/ic_qs_bluetooth +01080513=drawable/ic_qs_dnd +01080514=drawable/ic_qs_flashlight +01080515=drawable/ic_qs_night_display_on +01080516=drawable/ic_qs_ui_mode_night +01080517=drawable/ic_refresh +01080518=drawable/ic_reply_notification +01080519=drawable/ic_restart +0108051a=drawable/ic_schedule +0108051b=drawable/ic_screenshot +0108051c=drawable/ic_sd_card_48dp +0108051d=drawable/ic_search +0108051e=drawable/ic_search_api_holo_dark +0108051f=drawable/ic_search_api_holo_light +01080520=drawable/ic_search_api_material +01080521=drawable/ic_settings +01080522=drawable/ic_settings_24dp +01080523=drawable/ic_settings_bluetooth +01080524=drawable/ic_settings_language +01080525=drawable/ic_settings_print +01080526=drawable/ic_sharing_disabled +01080527=drawable/ic_signal_cellular +01080528=drawable/ic_signal_cellular_0_4_bar +01080529=drawable/ic_signal_cellular_0_5_bar +0108052a=drawable/ic_signal_cellular_1_4_bar +0108052b=drawable/ic_signal_cellular_1_5_bar +0108052c=drawable/ic_signal_cellular_2_4_bar +0108052d=drawable/ic_signal_cellular_2_5_bar +0108052e=drawable/ic_signal_cellular_3_4_bar +0108052f=drawable/ic_signal_cellular_3_5_bar +01080530=drawable/ic_signal_cellular_4_4_bar +01080531=drawable/ic_signal_cellular_4_5_bar +01080532=drawable/ic_signal_cellular_5_5_bar +01080533=drawable/ic_signal_cellular_alt_24px +01080534=drawable/ic_signal_location +01080535=drawable/ic_signal_wifi_transient_animation +01080536=drawable/ic_signal_wifi_transient_animation_drawable +01080537=drawable/ic_sim_card_multi_24px_clr +01080538=drawable/ic_sim_card_multi_48px_clr +01080539=drawable/ic_slice_send +0108053a=drawable/ic_spinner_caret +0108053b=drawable/ic_star_black_16dp +0108053c=drawable/ic_star_black_36dp +0108053d=drawable/ic_star_black_48dp +0108053e=drawable/ic_star_half_black_16dp +0108053f=drawable/ic_star_half_black_36dp +01080540=drawable/ic_star_half_black_48dp +01080541=drawable/ic_storage_48dp +01080542=drawable/ic_suggestions_add +01080543=drawable/ic_suggestions_delete +01080544=drawable/ic_sysbar_quicksettings +01080545=drawable/ic_text_dot +01080546=drawable/ic_usb_48dp +01080547=drawable/ic_user_secure +01080548=drawable/ic_vibrate +01080549=drawable/ic_vibrate_small +0108054a=drawable/ic_visibility +0108054b=drawable/ic_voice_search +0108054c=drawable/ic_voice_search_api_holo_dark +0108054d=drawable/ic_voice_search_api_holo_light +0108054e=drawable/ic_voice_search_api_material +0108054f=drawable/ic_volume +01080550=drawable/ic_volume_bluetooth_ad2p +01080551=drawable/ic_volume_bluetooth_in_call +01080552=drawable/ic_volume_off +01080553=drawable/ic_volume_off_small +01080554=drawable/ic_volume_small +01080555=drawable/ic_wifi_signal_0 +01080556=drawable/ic_wifi_signal_1 +01080557=drawable/ic_wifi_signal_2 +01080558=drawable/ic_wifi_signal_3 +01080559=drawable/ic_wifi_signal_4 +0108055a=drawable/ic_work_apps_off +0108055b=drawable/ic_zen_24dp +0108055c=drawable/icon_highlight_rectangle +0108055d=drawable/icon_highlight_square +0108055e=drawable/iconfactory_adaptive_icon_drawable_wrapper +0108055f=drawable/ime_qwerty +01080560=drawable/immersive_cling_bg_circ +01080561=drawable/immersive_cling_light_bg_circ +01080562=drawable/indicator_check_mark_dark +01080563=drawable/indicator_check_mark_light +01080564=drawable/indicator_input_error +01080565=drawable/input_extract_action_bg_material_dark +01080566=drawable/input_extract_action_bg_normal_material_dark +01080567=drawable/input_extract_action_bg_pressed_material_dark +01080568=drawable/input_method_fullscreen_background +01080569=drawable/input_method_fullscreen_background_holo +0108056a=drawable/item_background +0108056b=drawable/item_background_activated_holo_dark +0108056c=drawable/item_background_borderless_material +0108056d=drawable/item_background_borderless_material_dark +0108056e=drawable/item_background_borderless_material_light +0108056f=drawable/item_background_holo_dark +01080570=drawable/item_background_holo_light +01080571=drawable/item_background_material +01080572=drawable/item_background_material_dark +01080573=drawable/item_background_material_light +01080574=drawable/jog_dial_arrow_long_left_green +01080575=drawable/jog_dial_arrow_long_left_yellow +01080576=drawable/jog_dial_arrow_long_middle_yellow +01080577=drawable/jog_dial_arrow_long_right_red +01080578=drawable/jog_dial_arrow_long_right_yellow +01080579=drawable/jog_dial_arrow_short_left +0108057a=drawable/jog_dial_arrow_short_left_and_right +0108057b=drawable/jog_dial_arrow_short_right +0108057c=drawable/jog_dial_bg +0108057d=drawable/jog_dial_dimple +0108057e=drawable/jog_dial_dimple_dim +0108057f=drawable/jog_tab_bar_left_answer +01080580=drawable/jog_tab_bar_left_end_confirm_gray +01080581=drawable/jog_tab_bar_left_end_confirm_green +01080582=drawable/jog_tab_bar_left_end_confirm_red +01080583=drawable/jog_tab_bar_left_end_confirm_yellow +01080584=drawable/jog_tab_bar_left_end_normal +01080585=drawable/jog_tab_bar_left_end_pressed +01080586=drawable/jog_tab_bar_left_generic +01080587=drawable/jog_tab_bar_left_unlock +01080588=drawable/jog_tab_bar_right_decline +01080589=drawable/jog_tab_bar_right_end_confirm_gray +0108058a=drawable/jog_tab_bar_right_end_confirm_green +0108058b=drawable/jog_tab_bar_right_end_confirm_red +0108058c=drawable/jog_tab_bar_right_end_confirm_yellow +0108058d=drawable/jog_tab_bar_right_end_normal +0108058e=drawable/jog_tab_bar_right_end_pressed +0108058f=drawable/jog_tab_bar_right_generic +01080590=drawable/jog_tab_bar_right_sound_off +01080591=drawable/jog_tab_bar_right_sound_on +01080592=drawable/jog_tab_left_answer +01080593=drawable/jog_tab_left_confirm_gray +01080594=drawable/jog_tab_left_confirm_green +01080595=drawable/jog_tab_left_confirm_red +01080596=drawable/jog_tab_left_confirm_yellow +01080597=drawable/jog_tab_left_generic +01080598=drawable/jog_tab_left_normal +01080599=drawable/jog_tab_left_pressed +0108059a=drawable/jog_tab_left_unlock +0108059b=drawable/jog_tab_right_confirm_gray +0108059c=drawable/jog_tab_right_confirm_green +0108059d=drawable/jog_tab_right_confirm_red +0108059e=drawable/jog_tab_right_confirm_yellow +0108059f=drawable/jog_tab_right_decline +010805a0=drawable/jog_tab_right_generic +010805a1=drawable/jog_tab_right_normal +010805a2=drawable/jog_tab_right_pressed +010805a3=drawable/jog_tab_right_sound_off +010805a4=drawable/jog_tab_right_sound_on +010805a5=drawable/jog_tab_target_gray +010805a6=drawable/jog_tab_target_green +010805a7=drawable/jog_tab_target_red +010805a8=drawable/jog_tab_target_yellow +010805a9=drawable/keyboard_accessory_bg_landscape +010805aa=drawable/keyboard_background +010805ab=drawable/keyboard_key_feedback +010805ac=drawable/keyboard_key_feedback_background +010805ad=drawable/keyboard_key_feedback_more_background +010805ae=drawable/keyboard_popup_panel_background +010805af=drawable/keyboard_popup_panel_trans_background +010805b0=drawable/light_header +010805b1=drawable/light_header_dither +010805b2=drawable/list_activated_holo +010805b3=drawable/list_choice_background_material +010805b4=drawable/list_divider_holo_dark +010805b5=drawable/list_divider_holo_light +010805b6=drawable/list_divider_horizontal_holo_dark +010805b7=drawable/list_divider_material +010805b8=drawable/list_focused_holo +010805b9=drawable/list_highlight +010805ba=drawable/list_highlight_active +010805bb=drawable/list_highlight_inactive +010805bc=drawable/list_longpressed_holo +010805bd=drawable/list_longpressed_holo_dark +010805be=drawable/list_longpressed_holo_light +010805bf=drawable/list_pressed_holo_dark +010805c0=drawable/list_pressed_holo_light +010805c1=drawable/list_section_divider_holo_dark +010805c2=drawable/list_section_divider_holo_light +010805c3=drawable/list_section_divider_material +010805c4=drawable/list_section_divider_mtrl_alpha +010805c5=drawable/list_section_header_holo_dark +010805c6=drawable/list_section_header_holo_light +010805c7=drawable/list_selected_background +010805c8=drawable/list_selected_background_light +010805c9=drawable/list_selected_holo_dark +010805ca=drawable/list_selected_holo_light +010805cb=drawable/list_selector_activated_holo_dark +010805cc=drawable/list_selector_activated_holo_light +010805cd=drawable/list_selector_background_default +010805ce=drawable/list_selector_background_default_light +010805cf=drawable/list_selector_background_disabled +010805d0=drawable/list_selector_background_disabled_light +010805d1=drawable/list_selector_background_focus +010805d2=drawable/list_selector_background_focused +010805d3=drawable/list_selector_background_focused_light +010805d4=drawable/list_selector_background_focused_selected +010805d5=drawable/list_selector_background_light +010805d6=drawable/list_selector_background_longpress +010805d7=drawable/list_selector_background_longpress_light +010805d8=drawable/list_selector_background_pressed +010805d9=drawable/list_selector_background_pressed_light +010805da=drawable/list_selector_background_selected +010805db=drawable/list_selector_background_selected_light +010805dc=drawable/list_selector_background_transition +010805dd=drawable/list_selector_background_transition_holo_dark +010805de=drawable/list_selector_background_transition_holo_light +010805df=drawable/list_selector_background_transition_light +010805e0=drawable/list_selector_disabled_holo_dark +010805e1=drawable/list_selector_disabled_holo_light +010805e2=drawable/list_selector_focused_holo_dark +010805e3=drawable/list_selector_focused_holo_light +010805e4=drawable/list_selector_holo_dark +010805e5=drawable/list_selector_holo_light +010805e6=drawable/list_selector_multiselect_holo_dark +010805e7=drawable/list_selector_multiselect_holo_light +010805e8=drawable/list_selector_pressed_holo_dark +010805e9=drawable/list_selector_pressed_holo_light +010805ea=drawable/load_average_background +010805eb=drawable/loading_tile +010805ec=drawable/loading_tile_android +010805ed=drawable/lockscreen_notselected +010805ee=drawable/lockscreen_protection_pattern +010805ef=drawable/lockscreen_selected +010805f0=drawable/magnified_region_frame +010805f1=drawable/maps_google_logo +010805f2=drawable/media_button_background +010805f3=drawable/media_seamless_background +010805f4=drawable/menu_background +010805f5=drawable/menu_background_fill_parent_width +010805f6=drawable/menu_dropdown_panel_holo_dark +010805f7=drawable/menu_dropdown_panel_holo_light +010805f8=drawable/menu_hardkey_panel_holo_dark +010805f9=drawable/menu_hardkey_panel_holo_light +010805fa=drawable/menu_panel_holo_dark +010805fb=drawable/menu_panel_holo_light +010805fc=drawable/menu_popup_panel_holo_dark +010805fd=drawable/menu_popup_panel_holo_light +010805fe=drawable/menu_selector +010805ff=drawable/menu_separator +01080600=drawable/menu_submenu_background +01080601=drawable/menuitem_background_focus +01080602=drawable/menuitem_background_pressed +01080603=drawable/menuitem_background_solid +01080604=drawable/menuitem_background_solid_focused +01080605=drawable/menuitem_background_solid_pressed +01080606=drawable/menuitem_checkbox +01080607=drawable/menuitem_checkbox_on +01080608=drawable/messaging_user +01080609=drawable/minitab_lt +0108060a=drawable/minitab_lt_focus +0108060b=drawable/minitab_lt_press +0108060c=drawable/minitab_lt_selected +0108060d=drawable/minitab_lt_unselected +0108060e=drawable/minitab_lt_unselected_press +0108060f=drawable/no_tile_128 +01080610=drawable/no_tile_256 +01080611=drawable/notification_material_action_background +01080612=drawable/notification_material_media_action_background +01080613=drawable/notification_template_divider +01080614=drawable/notification_template_divider_media +01080615=drawable/notification_template_icon_bg +01080616=drawable/notification_template_icon_low_bg +01080617=drawable/number_picker_divider_material +01080618=drawable/numberpicker_down_btn +01080619=drawable/numberpicker_down_disabled +0108061a=drawable/numberpicker_down_disabled_focused +0108061b=drawable/numberpicker_down_disabled_focused_holo_dark +0108061c=drawable/numberpicker_down_disabled_focused_holo_light +0108061d=drawable/numberpicker_down_disabled_holo_dark +0108061e=drawable/numberpicker_down_disabled_holo_light +0108061f=drawable/numberpicker_down_focused_holo_dark +01080620=drawable/numberpicker_down_focused_holo_light +01080621=drawable/numberpicker_down_longpressed_holo_dark +01080622=drawable/numberpicker_down_longpressed_holo_light +01080623=drawable/numberpicker_down_normal +01080624=drawable/numberpicker_down_normal_holo_dark +01080625=drawable/numberpicker_down_normal_holo_light +01080626=drawable/numberpicker_down_pressed +01080627=drawable/numberpicker_down_pressed_holo_dark +01080628=drawable/numberpicker_down_pressed_holo_light +01080629=drawable/numberpicker_down_selected +0108062a=drawable/numberpicker_input +0108062b=drawable/numberpicker_input_disabled +0108062c=drawable/numberpicker_input_normal +0108062d=drawable/numberpicker_input_pressed +0108062e=drawable/numberpicker_input_selected +0108062f=drawable/numberpicker_selection_divider +01080630=drawable/numberpicker_up_btn +01080631=drawable/numberpicker_up_disabled +01080632=drawable/numberpicker_up_disabled_focused +01080633=drawable/numberpicker_up_disabled_focused_holo_dark +01080634=drawable/numberpicker_up_disabled_focused_holo_light +01080635=drawable/numberpicker_up_disabled_holo_dark +01080636=drawable/numberpicker_up_disabled_holo_light +01080637=drawable/numberpicker_up_focused_holo_dark +01080638=drawable/numberpicker_up_focused_holo_light +01080639=drawable/numberpicker_up_longpressed_holo_dark +0108063a=drawable/numberpicker_up_longpressed_holo_light +0108063b=drawable/numberpicker_up_normal +0108063c=drawable/numberpicker_up_normal_holo_dark +0108063d=drawable/numberpicker_up_normal_holo_light +0108063e=drawable/numberpicker_up_pressed +0108063f=drawable/numberpicker_up_pressed_holo_dark +01080640=drawable/numberpicker_up_pressed_holo_light +01080641=drawable/numberpicker_up_selected +01080642=drawable/panel_background +01080643=drawable/panel_bg_holo_dark +01080644=drawable/panel_bg_holo_light +01080645=drawable/panel_picture_frame_background +01080646=drawable/panel_picture_frame_bg_focus_blue +01080647=drawable/panel_picture_frame_bg_normal +01080648=drawable/panel_picture_frame_bg_pressed_blue +01080649=drawable/password_field_default +0108064a=drawable/password_keyboard_background_holo +0108064b=drawable/perm_group_accessibility_features +0108064c=drawable/perm_group_activity_recognition +0108064d=drawable/perm_group_affects_battery +0108064e=drawable/perm_group_app_info +0108064f=drawable/perm_group_audio_settings +01080650=drawable/perm_group_aural +01080651=drawable/perm_group_bluetooth +01080652=drawable/perm_group_bookmarks +01080653=drawable/perm_group_calendar +01080654=drawable/perm_group_call_log +01080655=drawable/perm_group_camera +01080656=drawable/perm_group_contacts +01080657=drawable/perm_group_device_alarms +01080658=drawable/perm_group_display +01080659=drawable/perm_group_location +0108065a=drawable/perm_group_microphone +0108065b=drawable/perm_group_network +0108065c=drawable/perm_group_personal_info +0108065d=drawable/perm_group_phone_calls +0108065e=drawable/perm_group_screenlock +0108065f=drawable/perm_group_sensors +01080660=drawable/perm_group_shortrange_network +01080661=drawable/perm_group_sms +01080662=drawable/perm_group_status_bar +01080663=drawable/perm_group_storage +01080664=drawable/perm_group_sync_settings +01080665=drawable/perm_group_system_clock +01080666=drawable/perm_group_system_tools +01080667=drawable/perm_group_visual +01080668=drawable/perm_group_voicemail +01080669=drawable/perm_group_wallpaper +0108066a=drawable/picture_emergency +0108066b=drawable/platlogo +0108066c=drawable/platlogo_m +0108066d=drawable/pointer_alias +0108066e=drawable/pointer_alias_icon +0108066f=drawable/pointer_alias_large +01080670=drawable/pointer_alias_large_icon +01080671=drawable/pointer_all_scroll +01080672=drawable/pointer_all_scroll_icon +01080673=drawable/pointer_all_scroll_large +01080674=drawable/pointer_all_scroll_large_icon +01080675=drawable/pointer_arrow +01080676=drawable/pointer_arrow_icon +01080677=drawable/pointer_arrow_large +01080678=drawable/pointer_arrow_large_icon +01080679=drawable/pointer_cell +0108067a=drawable/pointer_cell_icon +0108067b=drawable/pointer_cell_large +0108067c=drawable/pointer_cell_large_icon +0108067d=drawable/pointer_context_menu +0108067e=drawable/pointer_context_menu_icon +0108067f=drawable/pointer_context_menu_large +01080680=drawable/pointer_context_menu_large_icon +01080681=drawable/pointer_copy +01080682=drawable/pointer_copy_icon +01080683=drawable/pointer_copy_large +01080684=drawable/pointer_copy_large_icon +01080685=drawable/pointer_crosshair +01080686=drawable/pointer_crosshair_icon +01080687=drawable/pointer_crosshair_large +01080688=drawable/pointer_crosshair_large_icon +01080689=drawable/pointer_grab +0108068a=drawable/pointer_grab_icon +0108068b=drawable/pointer_grab_large +0108068c=drawable/pointer_grab_large_icon +0108068d=drawable/pointer_grabbing +0108068e=drawable/pointer_grabbing_icon +0108068f=drawable/pointer_grabbing_large +01080690=drawable/pointer_grabbing_large_icon +01080691=drawable/pointer_hand +01080692=drawable/pointer_hand_icon +01080693=drawable/pointer_hand_large +01080694=drawable/pointer_hand_large_icon +01080695=drawable/pointer_help +01080696=drawable/pointer_help_icon +01080697=drawable/pointer_help_large +01080698=drawable/pointer_help_large_icon +01080699=drawable/pointer_horizontal_double_arrow +0108069a=drawable/pointer_horizontal_double_arrow_icon +0108069b=drawable/pointer_horizontal_double_arrow_large +0108069c=drawable/pointer_horizontal_double_arrow_large_icon +0108069d=drawable/pointer_nodrop +0108069e=drawable/pointer_nodrop_icon +0108069f=drawable/pointer_nodrop_large +010806a0=drawable/pointer_nodrop_large_icon +010806a1=drawable/pointer_spot_anchor +010806a2=drawable/pointer_spot_anchor_icon +010806a3=drawable/pointer_spot_hover +010806a4=drawable/pointer_spot_hover_icon +010806a5=drawable/pointer_spot_touch +010806a6=drawable/pointer_spot_touch_icon +010806a7=drawable/pointer_text +010806a8=drawable/pointer_text_icon +010806a9=drawable/pointer_text_large +010806aa=drawable/pointer_text_large_icon +010806ab=drawable/pointer_top_left_diagonal_double_arrow +010806ac=drawable/pointer_top_left_diagonal_double_arrow_icon +010806ad=drawable/pointer_top_left_diagonal_double_arrow_large +010806ae=drawable/pointer_top_left_diagonal_double_arrow_large_icon +010806af=drawable/pointer_top_right_diagonal_double_arrow +010806b0=drawable/pointer_top_right_diagonal_double_arrow_icon +010806b1=drawable/pointer_top_right_diagonal_double_arrow_large +010806b2=drawable/pointer_top_right_diagonal_double_arrow_large_icon +010806b3=drawable/pointer_vertical_double_arrow +010806b4=drawable/pointer_vertical_double_arrow_icon +010806b5=drawable/pointer_vertical_double_arrow_large +010806b6=drawable/pointer_vertical_double_arrow_large_icon +010806b7=drawable/pointer_vertical_text +010806b8=drawable/pointer_vertical_text_icon +010806b9=drawable/pointer_vertical_text_large +010806ba=drawable/pointer_vertical_text_large_icon +010806bb=drawable/pointer_wait +010806bc=drawable/pointer_wait_0 +010806bd=drawable/pointer_wait_1 +010806be=drawable/pointer_wait_10 +010806bf=drawable/pointer_wait_11 +010806c0=drawable/pointer_wait_12 +010806c1=drawable/pointer_wait_13 +010806c2=drawable/pointer_wait_14 +010806c3=drawable/pointer_wait_15 +010806c4=drawable/pointer_wait_16 +010806c5=drawable/pointer_wait_17 +010806c6=drawable/pointer_wait_18 +010806c7=drawable/pointer_wait_19 +010806c8=drawable/pointer_wait_2 +010806c9=drawable/pointer_wait_20 +010806ca=drawable/pointer_wait_21 +010806cb=drawable/pointer_wait_22 +010806cc=drawable/pointer_wait_23 +010806cd=drawable/pointer_wait_24 +010806ce=drawable/pointer_wait_25 +010806cf=drawable/pointer_wait_26 +010806d0=drawable/pointer_wait_27 +010806d1=drawable/pointer_wait_28 +010806d2=drawable/pointer_wait_29 +010806d3=drawable/pointer_wait_3 +010806d4=drawable/pointer_wait_30 +010806d5=drawable/pointer_wait_31 +010806d6=drawable/pointer_wait_32 +010806d7=drawable/pointer_wait_33 +010806d8=drawable/pointer_wait_34 +010806d9=drawable/pointer_wait_35 +010806da=drawable/pointer_wait_4 +010806db=drawable/pointer_wait_5 +010806dc=drawable/pointer_wait_6 +010806dd=drawable/pointer_wait_7 +010806de=drawable/pointer_wait_8 +010806df=drawable/pointer_wait_9 +010806e0=drawable/pointer_wait_icon +010806e1=drawable/pointer_zoom_in +010806e2=drawable/pointer_zoom_in_icon +010806e3=drawable/pointer_zoom_in_large +010806e4=drawable/pointer_zoom_in_large_icon +010806e5=drawable/pointer_zoom_out +010806e6=drawable/pointer_zoom_out_icon +010806e7=drawable/pointer_zoom_out_large +010806e8=drawable/pointer_zoom_out_large_icon +010806e9=drawable/popup_background_material +010806ea=drawable/popup_background_mtrl_mult +010806eb=drawable/popup_bottom_bright +010806ec=drawable/popup_bottom_dark +010806ed=drawable/popup_bottom_medium +010806ee=drawable/popup_center_bright +010806ef=drawable/popup_center_dark +010806f0=drawable/popup_center_medium +010806f1=drawable/popup_full_bright +010806f2=drawable/popup_full_dark +010806f3=drawable/popup_inline_error +010806f4=drawable/popup_inline_error_above +010806f5=drawable/popup_inline_error_above_am +010806f6=drawable/popup_inline_error_above_holo_dark +010806f7=drawable/popup_inline_error_above_holo_dark_am +010806f8=drawable/popup_inline_error_above_holo_light +010806f9=drawable/popup_inline_error_above_holo_light_am +010806fa=drawable/popup_inline_error_am +010806fb=drawable/popup_inline_error_holo_dark +010806fc=drawable/popup_inline_error_holo_dark_am +010806fd=drawable/popup_inline_error_holo_light +010806fe=drawable/popup_inline_error_holo_light_am +010806ff=drawable/popup_top_bright +01080700=drawable/popup_top_dark +01080701=drawable/pressed_application_background_static +01080702=drawable/progress_bg_holo_dark +01080703=drawable/progress_bg_holo_light +01080704=drawable/progress_horizontal_holo_dark +01080705=drawable/progress_horizontal_holo_light +01080706=drawable/progress_horizontal_material +01080707=drawable/progress_indeterminate_anim_large_material +01080708=drawable/progress_indeterminate_anim_medium_material +01080709=drawable/progress_indeterminate_horizontal_holo +0108070a=drawable/progress_indeterminate_horizontal_material +0108070b=drawable/progress_large +0108070c=drawable/progress_large_holo +0108070d=drawable/progress_large_material +0108070e=drawable/progress_large_white +0108070f=drawable/progress_medium +01080710=drawable/progress_medium_holo +01080711=drawable/progress_medium_material +01080712=drawable/progress_medium_white +01080713=drawable/progress_primary_holo_dark +01080714=drawable/progress_primary_holo_light +01080715=drawable/progress_secondary_holo_dark +01080716=drawable/progress_secondary_holo_light +01080717=drawable/progress_small +01080718=drawable/progress_small_holo +01080719=drawable/progress_small_material +0108071a=drawable/progress_small_titlebar +0108071b=drawable/progress_small_white +0108071c=drawable/progress_static_material +0108071d=drawable/progressbar_indeterminate1 +0108071e=drawable/progressbar_indeterminate2 +0108071f=drawable/progressbar_indeterminate3 +01080720=drawable/progressbar_indeterminate_holo1 +01080721=drawable/progressbar_indeterminate_holo2 +01080722=drawable/progressbar_indeterminate_holo3 +01080723=drawable/progressbar_indeterminate_holo4 +01080724=drawable/progressbar_indeterminate_holo5 +01080725=drawable/progressbar_indeterminate_holo6 +01080726=drawable/progressbar_indeterminate_holo7 +01080727=drawable/progressbar_indeterminate_holo8 +01080728=drawable/quickactions_arrowdown_left_holo_dark +01080729=drawable/quickactions_arrowdown_left_holo_light +0108072a=drawable/quickactions_arrowdown_right_holo_dark +0108072b=drawable/quickactions_arrowdown_right_holo_light +0108072c=drawable/quickactions_arrowup_left_holo_dark +0108072d=drawable/quickactions_arrowup_left_holo_light +0108072e=drawable/quickactions_arrowup_left_right_holo_dark +0108072f=drawable/quickactions_arrowup_right_holo_light +01080730=drawable/quickcontact_badge_overlay_dark +01080731=drawable/quickcontact_badge_overlay_focused_dark +01080732=drawable/quickcontact_badge_overlay_focused_dark_am +01080733=drawable/quickcontact_badge_overlay_focused_light +01080734=drawable/quickcontact_badge_overlay_focused_light_am +01080735=drawable/quickcontact_badge_overlay_light +01080736=drawable/quickcontact_badge_overlay_normal_dark +01080737=drawable/quickcontact_badge_overlay_normal_dark_am +01080738=drawable/quickcontact_badge_overlay_normal_light +01080739=drawable/quickcontact_badge_overlay_normal_light_am +0108073a=drawable/quickcontact_badge_overlay_pressed_dark +0108073b=drawable/quickcontact_badge_overlay_pressed_dark_am +0108073c=drawable/quickcontact_badge_overlay_pressed_light +0108073d=drawable/quickcontact_badge_overlay_pressed_light_am +0108073e=drawable/rate_star_big_half +0108073f=drawable/rate_star_big_half_holo_dark +01080740=drawable/rate_star_big_half_holo_light +01080741=drawable/rate_star_big_off +01080742=drawable/rate_star_big_off_holo_dark +01080743=drawable/rate_star_big_off_holo_light +01080744=drawable/rate_star_big_on +01080745=drawable/rate_star_big_on_holo_dark +01080746=drawable/rate_star_big_on_holo_light +01080747=drawable/rate_star_med_half +01080748=drawable/rate_star_med_half_holo_dark +01080749=drawable/rate_star_med_half_holo_light +0108074a=drawable/rate_star_med_off +0108074b=drawable/rate_star_med_off_holo_dark +0108074c=drawable/rate_star_med_off_holo_light +0108074d=drawable/rate_star_med_on +0108074e=drawable/rate_star_med_on_holo_dark +0108074f=drawable/rate_star_med_on_holo_light +01080750=drawable/rate_star_small_half +01080751=drawable/rate_star_small_half_holo_dark +01080752=drawable/rate_star_small_half_holo_light +01080753=drawable/rate_star_small_off +01080754=drawable/rate_star_small_off_holo_dark +01080755=drawable/rate_star_small_off_holo_light +01080756=drawable/rate_star_small_on +01080757=drawable/rate_star_small_on_holo_dark +01080758=drawable/rate_star_small_on_holo_light +01080759=drawable/ratingbar +0108075a=drawable/ratingbar_full +0108075b=drawable/ratingbar_full_empty +0108075c=drawable/ratingbar_full_empty_holo_dark +0108075d=drawable/ratingbar_full_empty_holo_light +0108075e=drawable/ratingbar_full_empty_material +0108075f=drawable/ratingbar_full_filled +01080760=drawable/ratingbar_full_filled_holo_dark +01080761=drawable/ratingbar_full_filled_holo_light +01080762=drawable/ratingbar_full_filled_material +01080763=drawable/ratingbar_full_half_material +01080764=drawable/ratingbar_full_holo_dark +01080765=drawable/ratingbar_full_holo_light +01080766=drawable/ratingbar_holo_dark +01080767=drawable/ratingbar_holo_light +01080768=drawable/ratingbar_indicator_material +01080769=drawable/ratingbar_material +0108076a=drawable/ratingbar_small +0108076b=drawable/ratingbar_small_holo_dark +0108076c=drawable/ratingbar_small_holo_light +0108076d=drawable/ratingbar_small_material +0108076e=drawable/recent_dialog_background +0108076f=drawable/red_shield +01080770=drawable/resolver_icon_placeholder +01080771=drawable/resolver_turn_on_work_button_ripple_background +01080772=drawable/reticle +01080773=drawable/safe_mode_background +01080774=drawable/screen_background_holo_dark +01080775=drawable/screen_background_holo_light +01080776=drawable/screen_background_selector_dark +01080777=drawable/screen_background_selector_light +01080778=drawable/scroll_indicator_material +01080779=drawable/scrollbar_handle_accelerated_anim2 +0108077a=drawable/scrollbar_handle_holo_dark +0108077b=drawable/scrollbar_handle_holo_light +0108077c=drawable/scrollbar_handle_horizontal +0108077d=drawable/scrollbar_handle_material +0108077e=drawable/scrollbar_handle_vertical +0108077f=drawable/scrollbar_vertical_thumb +01080780=drawable/scrollbar_vertical_track +01080781=drawable/scrubber_control_disabled_holo +01080782=drawable/scrubber_control_focused_holo +01080783=drawable/scrubber_control_normal_holo +01080784=drawable/scrubber_control_on_mtrl_alpha +01080785=drawable/scrubber_control_on_pressed_mtrl_alpha +01080786=drawable/scrubber_control_pressed_holo +01080787=drawable/scrubber_control_selector_holo +01080788=drawable/scrubber_primary_holo +01080789=drawable/scrubber_primary_mtrl_alpha +0108078a=drawable/scrubber_progress_horizontal_holo_dark +0108078b=drawable/scrubber_progress_horizontal_holo_light +0108078c=drawable/scrubber_secondary_holo +0108078d=drawable/scrubber_track_holo_dark +0108078e=drawable/scrubber_track_holo_light +0108078f=drawable/scrubber_track_mtrl_alpha +01080790=drawable/search_bar_default_color +01080791=drawable/search_dropdown_background +01080792=drawable/search_dropdown_dark +01080793=drawable/search_dropdown_light +01080794=drawable/search_plate +01080795=drawable/search_plate_global +01080796=drawable/search_spinner +01080797=drawable/seek_thumb +01080798=drawable/seek_thumb_normal +01080799=drawable/seek_thumb_pressed +0108079a=drawable/seek_thumb_selected +0108079b=drawable/seekbar_thumb_material_anim +0108079c=drawable/seekbar_thumb_pressed_to_unpressed +0108079d=drawable/seekbar_thumb_pressed_to_unpressed_animation +0108079e=drawable/seekbar_thumb_unpressed_to_pressed +0108079f=drawable/seekbar_thumb_unpressed_to_pressed_animation +010807a0=drawable/seekbar_tick_mark_material +010807a1=drawable/seekbar_track_material +010807a2=drawable/selected_day_background +010807a3=drawable/settings_header +010807a4=drawable/settings_header_raw +010807a5=drawable/silent_mode_indicator +010807a6=drawable/sim_dark_blue +010807a7=drawable/sim_dark_green +010807a8=drawable/sim_dark_orange +010807a9=drawable/sim_dark_purple +010807aa=drawable/sim_light_blue +010807ab=drawable/sim_light_green +010807ac=drawable/sim_light_orange +010807ad=drawable/sim_light_purple +010807ae=drawable/slice_remote_input_bg +010807af=drawable/slice_ripple_drawable +010807b0=drawable/spinner_16_inner_holo +010807b1=drawable/spinner_16_outer_holo +010807b2=drawable/spinner_48_inner_holo +010807b3=drawable/spinner_48_outer_holo +010807b4=drawable/spinner_76_inner_holo +010807b5=drawable/spinner_76_outer_holo +010807b6=drawable/spinner_ab_activated_holo_dark +010807b7=drawable/spinner_ab_activated_holo_light +010807b8=drawable/spinner_ab_default_holo_dark +010807b9=drawable/spinner_ab_default_holo_dark_am +010807ba=drawable/spinner_ab_default_holo_light +010807bb=drawable/spinner_ab_default_holo_light_am +010807bc=drawable/spinner_ab_disabled_holo_dark +010807bd=drawable/spinner_ab_disabled_holo_dark_am +010807be=drawable/spinner_ab_disabled_holo_light +010807bf=drawable/spinner_ab_disabled_holo_light_am +010807c0=drawable/spinner_ab_focused_holo_dark +010807c1=drawable/spinner_ab_focused_holo_dark_am +010807c2=drawable/spinner_ab_focused_holo_light +010807c3=drawable/spinner_ab_focused_holo_light_am +010807c4=drawable/spinner_ab_holo_dark +010807c5=drawable/spinner_ab_holo_light +010807c6=drawable/spinner_ab_pressed_holo_dark +010807c7=drawable/spinner_ab_pressed_holo_dark_am +010807c8=drawable/spinner_ab_pressed_holo_light +010807c9=drawable/spinner_ab_pressed_holo_light_am +010807ca=drawable/spinner_activated_holo_dark +010807cb=drawable/spinner_activated_holo_light +010807cc=drawable/spinner_background_holo_dark +010807cd=drawable/spinner_background_holo_light +010807ce=drawable/spinner_background_material +010807cf=drawable/spinner_black_16 +010807d0=drawable/spinner_black_20 +010807d1=drawable/spinner_black_48 +010807d2=drawable/spinner_black_76 +010807d3=drawable/spinner_default_holo_dark +010807d4=drawable/spinner_default_holo_dark_am +010807d5=drawable/spinner_default_holo_light +010807d6=drawable/spinner_default_holo_light_am +010807d7=drawable/spinner_disabled_holo +010807d8=drawable/spinner_disabled_holo_dark +010807d9=drawable/spinner_disabled_holo_dark_am +010807da=drawable/spinner_disabled_holo_light +010807db=drawable/spinner_disabled_holo_light_am +010807dc=drawable/spinner_dropdown_background_down +010807dd=drawable/spinner_dropdown_background_up +010807de=drawable/spinner_focused_holo_dark +010807df=drawable/spinner_focused_holo_dark_am +010807e0=drawable/spinner_focused_holo_light +010807e1=drawable/spinner_focused_holo_light_am +010807e2=drawable/spinner_normal +010807e3=drawable/spinner_normal_holo +010807e4=drawable/spinner_press +010807e5=drawable/spinner_pressed_holo_dark +010807e6=drawable/spinner_pressed_holo_dark_am +010807e7=drawable/spinner_pressed_holo_light +010807e8=drawable/spinner_pressed_holo_light_am +010807e9=drawable/spinner_select +010807ea=drawable/spinner_textfield_background_material +010807eb=drawable/spinner_white_16 +010807ec=drawable/spinner_white_48 +010807ed=drawable/spinner_white_76 +010807ee=drawable/stat_ecb_mode +010807ef=drawable/stat_notify_car_mode +010807f0=drawable/stat_notify_disabled_data +010807f1=drawable/stat_notify_disk_full +010807f2=drawable/stat_notify_email_generic +010807f3=drawable/stat_notify_gmail +010807f4=drawable/stat_notify_mmcc_indication_icn +010807f5=drawable/stat_notify_rssi_in_range +010807f6=drawable/stat_notify_sim_toolkit +010807f7=drawable/stat_notify_sync_anim0 +010807f8=drawable/stat_notify_sync_error +010807f9=drawable/stat_notify_wifi_in_range +010807fa=drawable/stat_sys_adb +010807fb=drawable/stat_sys_battery +010807fc=drawable/stat_sys_battery_0 +010807fd=drawable/stat_sys_battery_10 +010807fe=drawable/stat_sys_battery_100 +010807ff=drawable/stat_sys_battery_15 +01080800=drawable/stat_sys_battery_20 +01080801=drawable/stat_sys_battery_28 +01080802=drawable/stat_sys_battery_40 +01080803=drawable/stat_sys_battery_43 +01080804=drawable/stat_sys_battery_57 +01080805=drawable/stat_sys_battery_60 +01080806=drawable/stat_sys_battery_71 +01080807=drawable/stat_sys_battery_80 +01080808=drawable/stat_sys_battery_85 +01080809=drawable/stat_sys_battery_charge +0108080a=drawable/stat_sys_battery_charge_anim0 +0108080b=drawable/stat_sys_battery_charge_anim1 +0108080c=drawable/stat_sys_battery_charge_anim100 +0108080d=drawable/stat_sys_battery_charge_anim15 +0108080e=drawable/stat_sys_battery_charge_anim2 +0108080f=drawable/stat_sys_battery_charge_anim28 +01080810=drawable/stat_sys_battery_charge_anim3 +01080811=drawable/stat_sys_battery_charge_anim4 +01080812=drawable/stat_sys_battery_charge_anim43 +01080813=drawable/stat_sys_battery_charge_anim5 +01080814=drawable/stat_sys_battery_charge_anim57 +01080815=drawable/stat_sys_battery_charge_anim71 +01080816=drawable/stat_sys_battery_charge_anim85 +01080817=drawable/stat_sys_battery_unknown +01080818=drawable/stat_sys_certificate_info +01080819=drawable/stat_sys_data_usb +0108081a=drawable/stat_sys_data_wimax_signal_3_fully +0108081b=drawable/stat_sys_data_wimax_signal_disconnected +0108081c=drawable/stat_sys_download_anim0 +0108081d=drawable/stat_sys_download_anim1 +0108081e=drawable/stat_sys_download_anim2 +0108081f=drawable/stat_sys_download_anim3 +01080820=drawable/stat_sys_download_anim4 +01080821=drawable/stat_sys_download_anim5 +01080822=drawable/stat_sys_download_done_static +01080823=drawable/stat_sys_gps_on +01080824=drawable/stat_sys_r_signal_0_cdma +01080825=drawable/stat_sys_r_signal_1_cdma +01080826=drawable/stat_sys_r_signal_2_cdma +01080827=drawable/stat_sys_r_signal_3_cdma +01080828=drawable/stat_sys_r_signal_4_cdma +01080829=drawable/stat_sys_ra_signal_0_cdma +0108082a=drawable/stat_sys_ra_signal_1_cdma +0108082b=drawable/stat_sys_ra_signal_2_cdma +0108082c=drawable/stat_sys_ra_signal_3_cdma +0108082d=drawable/stat_sys_ra_signal_4_cdma +0108082e=drawable/stat_sys_signal_0_cdma +0108082f=drawable/stat_sys_signal_1_cdma +01080830=drawable/stat_sys_signal_2_cdma +01080831=drawable/stat_sys_signal_3_cdma +01080832=drawable/stat_sys_signal_4_cdma +01080833=drawable/stat_sys_signal_evdo_0 +01080834=drawable/stat_sys_signal_evdo_1 +01080835=drawable/stat_sys_signal_evdo_2 +01080836=drawable/stat_sys_signal_evdo_3 +01080837=drawable/stat_sys_signal_evdo_4 +01080838=drawable/stat_sys_tether_wifi +01080839=drawable/stat_sys_throttled +0108083a=drawable/stat_sys_upload_anim0 +0108083b=drawable/stat_sys_upload_anim1 +0108083c=drawable/stat_sys_upload_anim2 +0108083d=drawable/stat_sys_upload_anim3 +0108083e=drawable/stat_sys_upload_anim4 +0108083f=drawable/stat_sys_upload_anim5 +01080840=drawable/stat_sys_vitals +01080841=drawable/status_bar_background +01080842=drawable/status_bar_closed_default_background +01080843=drawable/status_bar_header_background +01080844=drawable/status_bar_item_app_background_normal +01080845=drawable/status_bar_item_background_focus +01080846=drawable/status_bar_item_background_normal +01080847=drawable/status_bar_item_background_pressed +01080848=drawable/status_bar_opened_default_background +01080849=drawable/statusbar_background +0108084a=drawable/submenu_arrow +0108084b=drawable/submenu_arrow_nofocus +0108084c=drawable/switch_bg_disabled_holo_dark +0108084d=drawable/switch_bg_disabled_holo_light +0108084e=drawable/switch_bg_focused_holo_dark +0108084f=drawable/switch_bg_focused_holo_light +01080850=drawable/switch_bg_holo_dark +01080851=drawable/switch_bg_holo_light +01080852=drawable/switch_inner_holo_dark +01080853=drawable/switch_inner_holo_light +01080854=drawable/switch_thumb_activated_holo_dark +01080855=drawable/switch_thumb_activated_holo_light +01080856=drawable/switch_thumb_disabled_holo_dark +01080857=drawable/switch_thumb_disabled_holo_light +01080858=drawable/switch_thumb_holo_dark +01080859=drawable/switch_thumb_holo_light +0108085a=drawable/switch_thumb_holo_light_v2 +0108085b=drawable/switch_thumb_material_anim +0108085c=drawable/switch_thumb_pressed_holo_dark +0108085d=drawable/switch_thumb_pressed_holo_light +0108085e=drawable/switch_thumb_watch_default_dark_anim +0108085f=drawable/switch_track_holo_dark +01080860=drawable/switch_track_holo_light +01080861=drawable/switch_track_material +01080862=drawable/sym_action_add +01080863=drawable/sym_app_on_sd_unavailable_icon +01080864=drawable/sym_def_app_icon_background +01080865=drawable/sym_keyboard_delete +01080866=drawable/sym_keyboard_delete_dim +01080867=drawable/sym_keyboard_delete_holo +01080868=drawable/sym_keyboard_enter +01080869=drawable/sym_keyboard_feedback_delete +0108086a=drawable/sym_keyboard_feedback_ok +0108086b=drawable/sym_keyboard_feedback_return +0108086c=drawable/sym_keyboard_feedback_shift +0108086d=drawable/sym_keyboard_feedback_shift_locked +0108086e=drawable/sym_keyboard_feedback_space +0108086f=drawable/sym_keyboard_num0_no_plus +01080870=drawable/sym_keyboard_num1 +01080871=drawable/sym_keyboard_num2 +01080872=drawable/sym_keyboard_num3 +01080873=drawable/sym_keyboard_num4 +01080874=drawable/sym_keyboard_num5 +01080875=drawable/sym_keyboard_num6 +01080876=drawable/sym_keyboard_num7 +01080877=drawable/sym_keyboard_num8 +01080878=drawable/sym_keyboard_num9 +01080879=drawable/sym_keyboard_ok +0108087a=drawable/sym_keyboard_ok_dim +0108087b=drawable/sym_keyboard_return +0108087c=drawable/sym_keyboard_return_holo +0108087d=drawable/sym_keyboard_shift +0108087e=drawable/sym_keyboard_shift_locked +0108087f=drawable/sym_keyboard_space +01080880=drawable/tab_bottom_holo +01080881=drawable/tab_bottom_left +01080882=drawable/tab_bottom_left_v4 +01080883=drawable/tab_bottom_right +01080884=drawable/tab_bottom_right_v4 +01080885=drawable/tab_focus +01080886=drawable/tab_focus_bar_left +01080887=drawable/tab_focus_bar_right +01080888=drawable/tab_indicator +01080889=drawable/tab_indicator_ab_holo +0108088a=drawable/tab_indicator_holo +0108088b=drawable/tab_indicator_material +0108088c=drawable/tab_indicator_mtrl_alpha +0108088d=drawable/tab_indicator_resolver +0108088e=drawable/tab_indicator_v4 +0108088f=drawable/tab_press +01080890=drawable/tab_press_bar_left +01080891=drawable/tab_press_bar_right +01080892=drawable/tab_pressed_holo +01080893=drawable/tab_selected +01080894=drawable/tab_selected_bar_left +01080895=drawable/tab_selected_bar_left_v4 +01080896=drawable/tab_selected_bar_right +01080897=drawable/tab_selected_bar_right_v4 +01080898=drawable/tab_selected_focused_holo +01080899=drawable/tab_selected_holo +0108089a=drawable/tab_selected_pressed_holo +0108089b=drawable/tab_selected_v4 +0108089c=drawable/tab_unselected +0108089d=drawable/tab_unselected_focused_holo +0108089e=drawable/tab_unselected_holo +0108089f=drawable/tab_unselected_pressed_holo +010808a0=drawable/tab_unselected_v4 +010808a1=drawable/text_cursor_holo_dark +010808a2=drawable/text_cursor_holo_light +010808a3=drawable/text_cursor_material +010808a4=drawable/text_edit_paste_window +010808a5=drawable/text_edit_side_paste_window +010808a6=drawable/text_edit_suggestions_window +010808a7=drawable/text_select_handle_left_material +010808a8=drawable/text_select_handle_left_mtrl_alpha +010808a9=drawable/text_select_handle_middle_material +010808aa=drawable/text_select_handle_middle_mtrl_alpha +010808ab=drawable/text_select_handle_right_material +010808ac=drawable/text_select_handle_right_mtrl_alpha +010808ad=drawable/textfield_activated_holo_dark +010808ae=drawable/textfield_activated_holo_light +010808af=drawable/textfield_activated_mtrl_alpha +010808b0=drawable/textfield_bg_activated_holo_dark +010808b1=drawable/textfield_bg_default_holo_dark +010808b2=drawable/textfield_bg_disabled_focused_holo_dark +010808b3=drawable/textfield_bg_disabled_holo_dark +010808b4=drawable/textfield_bg_focused_holo_dark +010808b5=drawable/textfield_default +010808b6=drawable/textfield_default_holo_dark +010808b7=drawable/textfield_default_holo_light +010808b8=drawable/textfield_default_mtrl_alpha +010808b9=drawable/textfield_disabled +010808ba=drawable/textfield_disabled_focused_holo_dark +010808bb=drawable/textfield_disabled_focused_holo_light +010808bc=drawable/textfield_disabled_holo_dark +010808bd=drawable/textfield_disabled_holo_light +010808be=drawable/textfield_disabled_selected +010808bf=drawable/textfield_focused_holo_dark +010808c0=drawable/textfield_focused_holo_light +010808c1=drawable/textfield_longpress_holo +010808c2=drawable/textfield_multiline_activated_holo_dark +010808c3=drawable/textfield_multiline_activated_holo_light +010808c4=drawable/textfield_multiline_default_holo_dark +010808c5=drawable/textfield_multiline_default_holo_light +010808c6=drawable/textfield_multiline_disabled_focused_holo_dark +010808c7=drawable/textfield_multiline_disabled_focused_holo_light +010808c8=drawable/textfield_multiline_disabled_holo_dark +010808c9=drawable/textfield_multiline_disabled_holo_light +010808ca=drawable/textfield_multiline_focused_holo_dark +010808cb=drawable/textfield_multiline_focused_holo_light +010808cc=drawable/textfield_pressed_holo +010808cd=drawable/textfield_search +010808ce=drawable/textfield_search_activated_mtrl_alpha +010808cf=drawable/textfield_search_default +010808d0=drawable/textfield_search_default_holo_dark +010808d1=drawable/textfield_search_default_holo_light +010808d2=drawable/textfield_search_default_mtrl_alpha +010808d3=drawable/textfield_search_empty +010808d4=drawable/textfield_search_empty_default +010808d5=drawable/textfield_search_empty_pressed +010808d6=drawable/textfield_search_empty_selected +010808d7=drawable/textfield_search_material +010808d8=drawable/textfield_search_pressed +010808d9=drawable/textfield_search_right_default_holo_dark +010808da=drawable/textfield_search_right_default_holo_light +010808db=drawable/textfield_search_right_selected_holo_dark +010808dc=drawable/textfield_search_right_selected_holo_light +010808dd=drawable/textfield_search_selected +010808de=drawable/textfield_search_selected_holo_dark +010808df=drawable/textfield_search_selected_holo_light +010808e0=drawable/textfield_searchview_holo_dark +010808e1=drawable/textfield_searchview_holo_light +010808e2=drawable/textfield_searchview_right_holo_dark +010808e3=drawable/textfield_searchview_right_holo_light +010808e4=drawable/textfield_selected +010808e5=drawable/time_picker_editable_background +010808e6=drawable/title_bar_medium +010808e7=drawable/title_bar_portrait +010808e8=drawable/title_bar_shadow +010808e9=drawable/tooltip_frame +010808ea=drawable/transportcontrol_bg +010808eb=drawable/unknown_image +010808ec=drawable/unlock_default +010808ed=drawable/unlock_halo +010808ee=drawable/unlock_ring +010808ef=drawable/unlock_wave +010808f0=drawable/vector_drawable_progress_bar_large +010808f1=drawable/vector_drawable_progress_bar_medium +010808f2=drawable/vector_drawable_progress_bar_small +010808f3=drawable/vector_drawable_progress_indeterminate_horizontal +010808f4=drawable/view_accessibility_focused +010808f5=drawable/vpn_connected +010808f6=drawable/vpn_disconnected +010808f7=drawable/watch_switch_thumb_mtrl_14w +010808f8=drawable/watch_switch_thumb_mtrl_15w +010808f9=drawable/watch_switch_thumb_mtrl_16w +010808fa=drawable/watch_switch_thumb_mtrl_17w +010808fb=drawable/watch_switch_thumb_mtrl_18w +010808fc=drawable/watch_switch_track_mtrl +01090000=layout/activity_list_item +01090001=layout/expandable_list_content +01090002=layout/preference_category +01090003=layout/simple_list_item_1 +01090004=layout/simple_list_item_2 +01090005=layout/simple_list_item_checked +01090006=layout/simple_expandable_list_item_1 +01090007=layout/simple_expandable_list_item_2 +01090008=layout/simple_spinner_item +01090009=layout/simple_spinner_dropdown_item +0109000a=layout/simple_dropdown_item_1line +0109000b=layout/simple_gallery_item +0109000c=layout/test_list_item +0109000d=layout/two_line_list_item +0109000e=layout/browser_link_context_header +0109000f=layout/simple_list_item_single_choice +01090010=layout/simple_list_item_multiple_choice +01090011=layout/select_dialog_item +01090012=layout/select_dialog_singlechoice +01090013=layout/select_dialog_multichoice +01090014=layout/list_content +01090015=layout/simple_selectable_list_item +01090016=layout/simple_list_item_activated_1 +01090017=layout/simple_list_item_activated_2 +01090018=layout/accessibility_button_chooser +01090019=layout/accessibility_button_chooser_item +0109001a=layout/accessibility_enable_service_encryption_warning +0109001b=layout/accessibility_shortcut_chooser_item +0109001c=layout/action_bar_home +0109001d=layout/action_bar_home_material +0109001e=layout/action_bar_title_item +0109001f=layout/action_bar_up_container +01090020=layout/action_menu_item_layout +01090021=layout/action_menu_layout +01090022=layout/action_mode_bar +01090023=layout/action_mode_close_item +01090024=layout/action_mode_close_item_material +01090025=layout/activity_chooser_view +01090026=layout/activity_chooser_view_list_item +01090027=layout/activity_list +01090028=layout/activity_list_item_2 +01090029=layout/adaptive_notification_wrapper +0109002a=layout/alert_dialog +0109002b=layout/alert_dialog_button_bar_material +0109002c=layout/alert_dialog_holo +0109002d=layout/alert_dialog_leanback +0109002e=layout/alert_dialog_leanback_button_panel_side +0109002f=layout/alert_dialog_material +01090030=layout/alert_dialog_progress +01090031=layout/alert_dialog_progress_holo +01090032=layout/alert_dialog_progress_material +01090033=layout/alert_dialog_title_material +01090034=layout/always_use_checkbox +01090035=layout/am_compat_mode_dialog +01090036=layout/app_anr_dialog +01090037=layout/app_error_dialog +01090038=layout/app_not_authorized +01090039=layout/app_permission_item +0109003a=layout/app_permission_item_money +0109003b=layout/app_permission_item_old +0109003c=layout/app_perms_summary +0109003d=layout/auto_complete_list +0109003e=layout/autofill_dataset_picker +0109003f=layout/autofill_dataset_picker_fullscreen +01090040=layout/autofill_dataset_picker_header_footer +01090041=layout/autofill_save +01090042=layout/breadcrumbs_in_fragment +01090043=layout/breadcrumbs_in_fragment_material +01090044=layout/calendar_view +01090045=layout/car_preference +01090046=layout/car_preference_category +01090047=layout/car_resolver_list +01090048=layout/car_resolver_list_with_default +01090049=layout/cascading_menu_item_layout +0109004a=layout/character_picker +0109004b=layout/character_picker_button +0109004c=layout/choose_account +0109004d=layout/choose_account_row +0109004e=layout/choose_account_type +0109004f=layout/choose_type_and_account +01090050=layout/chooser_action_button +01090051=layout/chooser_action_row +01090052=layout/chooser_az_label_row +01090053=layout/chooser_dialog +01090054=layout/chooser_dialog_item +01090055=layout/chooser_grid +01090056=layout/chooser_grid_preview_file +01090057=layout/chooser_grid_preview_image +01090058=layout/chooser_grid_preview_text +01090059=layout/chooser_list_per_profile +0109005a=layout/chooser_profile_row +0109005b=layout/chooser_row +0109005c=layout/chooser_row_direct_share +0109005d=layout/common_tab_settings +0109005e=layout/conversation_face_pile_layout +0109005f=layout/date_picker_dialog +01090060=layout/date_picker_header_material +01090061=layout/date_picker_legacy +01090062=layout/date_picker_legacy_holo +01090063=layout/date_picker_material +01090064=layout/date_picker_month_item_material +01090065=layout/date_picker_view_animator_material +01090066=layout/day_picker_content_material +01090067=layout/decor_caption +01090068=layout/default_navigation +01090069=layout/dialog_custom_title +0109006a=layout/dialog_custom_title_holo +0109006b=layout/dialog_custom_title_material +0109006c=layout/dialog_title +0109006d=layout/dialog_title_holo +0109006e=layout/dialog_title_icons +0109006f=layout/dialog_title_icons_holo +01090070=layout/dialog_title_icons_material +01090071=layout/dialog_title_material +01090072=layout/expanded_menu_layout +01090073=layout/floating_popup_close_overflow_button +01090074=layout/floating_popup_container +01090075=layout/floating_popup_menu_button +01090076=layout/floating_popup_open_overflow_button +01090077=layout/floating_popup_overflow_button +01090078=layout/fragment_bread_crumb_item +01090079=layout/fragment_bread_crumb_item_material +0109007a=layout/fragment_bread_crumbs +0109007b=layout/global_actions +0109007c=layout/global_actions_item +0109007d=layout/global_actions_silent_mode +0109007e=layout/grant_credentials_permission +0109007f=layout/harmful_app_warning_dialog +01090080=layout/heavy_weight_switcher +01090081=layout/icon_menu_item_layout +01090082=layout/icon_menu_layout +01090083=layout/immersive_mode_cling +01090084=layout/input_method +01090085=layout/input_method_extract_view +01090086=layout/input_method_switch_dialog_title +01090087=layout/input_method_switch_item +01090088=layout/js_prompt +01090089=layout/keyboard_key_preview +0109008a=layout/keyboard_popup_keyboard +0109008b=layout/keyguard +0109008c=layout/language_picker_item +0109008d=layout/language_picker_section_header +0109008e=layout/launch_warning +0109008f=layout/list_content_simple +01090090=layout/list_gestures_overlay +01090091=layout/list_menu_item_checkbox +01090092=layout/list_menu_item_icon +01090093=layout/list_menu_item_layout +01090094=layout/list_menu_item_radio +01090095=layout/locale_picker_item +01090096=layout/media_controller +01090097=layout/media_route_chooser_dialog +01090098=layout/media_route_controller_dialog +01090099=layout/media_route_list_item +0109009a=layout/menu_item +0109009b=layout/notification_intruder_content +0109009c=layout/notification_material_action +0109009d=layout/notification_material_action_emphasized +0109009e=layout/notification_material_action_list +0109009f=layout/notification_material_action_tombstone +010900a0=layout/notification_material_media_action +010900a1=layout/notification_material_media_seekbar +010900a2=layout/notification_material_media_transfer_action +010900a3=layout/notification_material_reply_text +010900a4=layout/notification_template_header +010900a5=layout/notification_template_material_base +010900a6=layout/notification_template_material_big_base +010900a7=layout/notification_template_material_big_media +010900a8=layout/notification_template_material_big_picture +010900a9=layout/notification_template_material_big_text +010900aa=layout/notification_template_material_conversation +010900ab=layout/notification_template_material_inbox +010900ac=layout/notification_template_material_media +010900ad=layout/notification_template_material_messaging +010900ae=layout/notification_template_messaging_group +010900af=layout/notification_template_messaging_image_message +010900b0=layout/notification_template_messaging_text_message +010900b1=layout/notification_template_part_chronometer +010900b2=layout/notification_template_part_line1 +010900b3=layout/notification_template_progress +010900b4=layout/notification_template_progressbar +010900b5=layout/notification_template_right_icon +010900b6=layout/notification_template_smart_reply_container +010900b7=layout/notification_template_text +010900b8=layout/number_picker +010900b9=layout/number_picker_material +010900ba=layout/number_picker_with_selector_wheel +010900bb=layout/overlay_display_window +010900bc=layout/permissions_account_and_authtokentype +010900bd=layout/permissions_package_list_item +010900be=layout/platlogo_layout +010900bf=layout/popup_menu_header_item_layout +010900c0=layout/popup_menu_item_layout +010900c1=layout/power_dialog +010900c2=layout/preference +010900c3=layout/preference_category_holo +010900c4=layout/preference_category_material +010900c5=layout/preference_child +010900c6=layout/preference_child_holo +010900c7=layout/preference_child_material +010900c8=layout/preference_dialog_edittext +010900c9=layout/preference_dialog_edittext_material +010900ca=layout/preference_dialog_seekbar +010900cb=layout/preference_dialog_seekbar_material +010900cc=layout/preference_header_item +010900cd=layout/preference_header_item_material +010900ce=layout/preference_holo +010900cf=layout/preference_information +010900d0=layout/preference_information_holo +010900d1=layout/preference_information_material +010900d2=layout/preference_list_content +010900d3=layout/preference_list_content_material +010900d4=layout/preference_list_content_single +010900d5=layout/preference_list_fragment +010900d6=layout/preference_list_fragment_material +010900d7=layout/preference_material +010900d8=layout/preference_widget_checkbox +010900d9=layout/preference_widget_seekbar +010900da=layout/preference_widget_seekbar_material +010900db=layout/preference_widget_switch +010900dc=layout/preferences +010900dd=layout/progress_dialog +010900de=layout/progress_dialog_holo +010900df=layout/progress_dialog_material +010900e0=layout/recent_apps_dialog +010900e1=layout/recent_apps_icon +010900e2=layout/remote_views_adapter_default_loading_view +010900e3=layout/resolve_grid_item +010900e4=layout/resolve_list_item +010900e5=layout/resolver_different_item_header +010900e6=layout/resolver_empty_states +010900e7=layout/resolver_list +010900e8=layout/resolver_list_per_profile +010900e9=layout/resolver_list_with_default +010900ea=layout/restrictions_pin_challenge +010900eb=layout/restrictions_pin_setup +010900ec=layout/safe_mode +010900ed=layout/screen +010900ee=layout/screen_action_bar +010900ef=layout/screen_custom_title +010900f0=layout/screen_progress +010900f1=layout/screen_simple +010900f2=layout/screen_simple_overlay_action_mode +010900f3=layout/screen_title +010900f4=layout/screen_title_icons +010900f5=layout/screen_toolbar +010900f6=layout/search_bar +010900f7=layout/search_dropdown_item_icons_2line +010900f8=layout/search_view +010900f9=layout/select_dialog +010900fa=layout/select_dialog_holo +010900fb=layout/select_dialog_item_holo +010900fc=layout/select_dialog_item_material +010900fd=layout/select_dialog_material +010900fe=layout/select_dialog_multichoice_holo +010900ff=layout/select_dialog_multichoice_material +01090100=layout/select_dialog_singlechoice_holo +01090101=layout/select_dialog_singlechoice_material +01090102=layout/shutdown_dialog +01090103=layout/simple_account_item +01090104=layout/simple_dropdown_hint +01090105=layout/simple_dropdown_item_2line +01090106=layout/simple_list_item_2_single_choice +01090107=layout/slice_grid +01090108=layout/slice_message +01090109=layout/slice_message_local +0109010a=layout/slice_remote_input +0109010b=layout/slice_secondary_text +0109010c=layout/slice_small_template +0109010d=layout/slice_title +0109010e=layout/sms_short_code_confirmation_dialog +0109010f=layout/ssl_certificate +01090110=layout/status_bar_latest_event_content +01090111=layout/subscription_item_layout +01090112=layout/system_user_home +01090113=layout/tab_content +01090114=layout/tab_indicator +01090115=layout/tab_indicator_holo +01090116=layout/tab_indicator_material +01090117=layout/tab_indicator_resolver +01090118=layout/text_drag_thumbnail +01090119=layout/text_edit_action_popup_text +0109011a=layout/text_edit_no_paste_window +0109011b=layout/text_edit_paste_window +0109011c=layout/text_edit_side_no_paste_window +0109011d=layout/text_edit_side_paste_window +0109011e=layout/text_edit_suggestion_container +0109011f=layout/text_edit_suggestion_container_material +01090120=layout/text_edit_suggestion_item +01090121=layout/text_edit_suggestion_item_material +01090122=layout/text_edit_suggestions_window +01090123=layout/textview_hint +01090124=layout/time_picker_dialog +01090125=layout/time_picker_header_material +01090126=layout/time_picker_legacy +01090127=layout/time_picker_legacy_material +01090128=layout/time_picker_material +01090129=layout/time_picker_text_input_material +0109012a=layout/tooltip +0109012b=layout/transient_notification +0109012c=layout/twelve_key_entry +0109012d=layout/typing_filter +0109012e=layout/unsupported_compile_sdk_dialog_content +0109012f=layout/unsupported_display_size_dialog_content +01090130=layout/user_switching_dialog +01090131=layout/voice_interaction_session +01090132=layout/web_runtime +01090133=layout/web_text_view_dropdown +01090134=layout/webview_find +01090135=layout/webview_select_singlechoice +01090136=layout/work_widget_mask_view +01090137=layout/year_label_text_view +01090138=layout/zoom_browser_accessory_buttons +01090139=layout/zoom_container +0109013a=layout/zoom_controls +0109013b=layout/zoom_magnify +010a0000=anim/fade_in +010a0001=anim/fade_out +010a0002=anim/slide_in_left +010a0003=anim/slide_out_right +010a0004=anim/accelerate_decelerate_interpolator +010a0005=anim/accelerate_interpolator +010a0006=anim/decelerate_interpolator +010a0007=anim/anticipate_interpolator +010a0008=anim/overshoot_interpolator +010a0009=anim/anticipate_overshoot_interpolator +010a000a=anim/bounce_interpolator +010a000b=anim/linear_interpolator +010a000c=anim/cycle_interpolator +010a000d=anim/activity_close_enter +010a000e=anim/activity_close_exit +010a000f=anim/activity_open_enter +010a0010=anim/activity_open_exit +010a0011=anim/activity_translucent_close_exit +010a0012=anim/activity_translucent_open_enter +010a0013=anim/app_starting_exit +010a0014=anim/btn_checkbox_to_checked_box_inner_merged_animation +010a0015=anim/btn_checkbox_to_checked_box_outer_merged_animation +010a0016=anim/btn_checkbox_to_checked_icon_null_animation +010a0017=anim/btn_checkbox_to_unchecked_box_inner_merged_animation +010a0018=anim/btn_checkbox_to_unchecked_check_path_merged_animation +010a0019=anim/btn_checkbox_to_unchecked_icon_null_animation +010a001a=anim/btn_radio_to_off_mtrl_dot_group_animation +010a001b=anim/btn_radio_to_off_mtrl_ring_outer_animation +010a001c=anim/btn_radio_to_off_mtrl_ring_outer_path_animation +010a001d=anim/btn_radio_to_on_mtrl_dot_group_animation +010a001e=anim/btn_radio_to_on_mtrl_ring_outer_animation +010a001f=anim/btn_radio_to_on_mtrl_ring_outer_path_animation +010a0020=anim/button_state_list_anim_material +010a0021=anim/cross_profile_apps_thumbnail_enter +010a0022=anim/date_picker_fade_in_material +010a0023=anim/date_picker_fade_out_material +010a0024=anim/dialog_enter +010a0025=anim/dialog_exit +010a0026=anim/dock_bottom_enter +010a0027=anim/dock_bottom_exit +010a0028=anim/dock_bottom_exit_keyguard +010a0029=anim/dock_left_enter +010a002a=anim/dock_left_exit +010a002b=anim/dock_right_enter +010a002c=anim/dock_right_exit +010a002d=anim/dock_top_enter +010a002e=anim/dock_top_exit +010a002f=anim/dream_activity_close_exit +010a0030=anim/dream_activity_open_enter +010a0031=anim/dream_activity_open_exit +010a0032=anim/fast_fade_in +010a0033=anim/fast_fade_out +010a0034=anim/flat_button_state_list_anim_material +010a0035=anim/ft_avd_toarrow_rectangle_1_animation +010a0036=anim/ft_avd_toarrow_rectangle_1_pivot_0_animation +010a0037=anim/ft_avd_toarrow_rectangle_1_pivot_animation +010a0038=anim/ft_avd_toarrow_rectangle_2_animation +010a0039=anim/ft_avd_toarrow_rectangle_2_pivot_0_animation +010a003a=anim/ft_avd_toarrow_rectangle_2_pivot_animation +010a003b=anim/ft_avd_toarrow_rectangle_3_animation +010a003c=anim/ft_avd_toarrow_rectangle_3_pivot_0_animation +010a003d=anim/ft_avd_toarrow_rectangle_3_pivot_animation +010a003e=anim/ft_avd_toarrow_rectangle_4_animation +010a003f=anim/ft_avd_toarrow_rectangle_5_animation +010a0040=anim/ft_avd_toarrow_rectangle_6_animation +010a0041=anim/ft_avd_toarrow_rectangle_path_1_animation +010a0042=anim/ft_avd_toarrow_rectangle_path_2_animation +010a0043=anim/ft_avd_toarrow_rectangle_path_3_animation +010a0044=anim/ft_avd_toarrow_rectangle_path_4_animation +010a0045=anim/ft_avd_toarrow_rectangle_path_5_animation +010a0046=anim/ft_avd_toarrow_rectangle_path_6_animation +010a0047=anim/ft_avd_tooverflow_rectangle_1_animation +010a0048=anim/ft_avd_tooverflow_rectangle_1_pivot_animation +010a0049=anim/ft_avd_tooverflow_rectangle_2_animation +010a004a=anim/ft_avd_tooverflow_rectangle_2_pivot_animation +010a004b=anim/ft_avd_tooverflow_rectangle_3_animation +010a004c=anim/ft_avd_tooverflow_rectangle_3_pivot_animation +010a004d=anim/ft_avd_tooverflow_rectangle_path_1_animation +010a004e=anim/ft_avd_tooverflow_rectangle_path_2_animation +010a004f=anim/ft_avd_tooverflow_rectangle_path_3_animation +010a0050=anim/grow_fade_in +010a0051=anim/grow_fade_in_center +010a0052=anim/grow_fade_in_from_bottom +010a0053=anim/ic_bluetooth_transient_animation_0 +010a0054=anim/ic_bluetooth_transient_animation_1 +010a0055=anim/ic_bluetooth_transient_animation_2 +010a0056=anim/ic_hotspot_transient_animation_0 +010a0057=anim/ic_hotspot_transient_animation_1 +010a0058=anim/ic_hotspot_transient_animation_2 +010a0059=anim/ic_hotspot_transient_animation_3 +010a005a=anim/ic_signal_wifi_transient_animation_0 +010a005b=anim/ic_signal_wifi_transient_animation_1 +010a005c=anim/ic_signal_wifi_transient_animation_2 +010a005d=anim/ic_signal_wifi_transient_animation_3 +010a005e=anim/ic_signal_wifi_transient_animation_4 +010a005f=anim/ic_signal_wifi_transient_animation_5 +010a0060=anim/ic_signal_wifi_transient_animation_6 +010a0061=anim/ic_signal_wifi_transient_animation_7 +010a0062=anim/ic_signal_wifi_transient_animation_8 +010a0063=anim/input_method_enter +010a0064=anim/input_method_exit +010a0065=anim/input_method_extract_enter +010a0066=anim/input_method_extract_exit +010a0067=anim/input_method_fancy_enter +010a0068=anim/input_method_fancy_exit +010a0069=anim/launch_task_behind_source +010a006a=anim/launch_task_behind_target +010a006b=anim/lock_screen_behind_enter +010a006c=anim/lock_screen_behind_enter_fade_in +010a006d=anim/lock_screen_behind_enter_subtle +010a006e=anim/lock_screen_behind_enter_wallpaper +010a006f=anim/lock_screen_enter +010a0070=anim/lock_screen_exit +010a0071=anim/lock_screen_wallpaper_exit +010a0072=anim/options_panel_enter +010a0073=anim/options_panel_exit +010a0074=anim/popup_enter_material +010a0075=anim/popup_exit_material +010a0076=anim/progress_indeterminate_horizontal_rect1 +010a0077=anim/progress_indeterminate_horizontal_rect2 +010a0078=anim/progress_indeterminate_material +010a0079=anim/progress_indeterminate_rotation_material +010a007a=anim/push_down_in +010a007b=anim/push_down_in_no_alpha +010a007c=anim/push_down_out +010a007d=anim/push_down_out_no_alpha +010a007e=anim/push_up_in +010a007f=anim/push_up_out +010a0080=anim/recent_enter +010a0081=anim/recent_exit +010a0082=anim/recents_fade_in +010a0083=anim/recents_fade_out +010a0084=anim/resolver_close_anim +010a0085=anim/resolver_launch_anim +010a0086=anim/rotation_animation_enter +010a0087=anim/rotation_animation_jump_exit +010a0088=anim/rotation_animation_xfade_exit +010a0089=anim/screen_rotate_0_enter +010a008a=anim/screen_rotate_0_exit +010a008b=anim/screen_rotate_180_enter +010a008c=anim/screen_rotate_180_exit +010a008d=anim/screen_rotate_180_frame +010a008e=anim/screen_rotate_alpha +010a008f=anim/screen_rotate_finish_enter +010a0090=anim/screen_rotate_finish_exit +010a0091=anim/screen_rotate_finish_frame +010a0092=anim/screen_rotate_minus_90_enter +010a0093=anim/screen_rotate_minus_90_exit +010a0094=anim/screen_rotate_plus_90_enter +010a0095=anim/screen_rotate_plus_90_exit +010a0096=anim/screen_rotate_start_enter +010a0097=anim/screen_rotate_start_exit +010a0098=anim/screen_rotate_start_frame +010a0099=anim/screen_user_enter +010a009a=anim/screen_user_exit +010a009b=anim/search_bar_enter +010a009c=anim/search_bar_exit +010a009d=anim/seekbar_thumb_pressed_to_unpressed_thumb_animation +010a009e=anim/seekbar_thumb_unpressed_to_pressed_thumb_0_animation +010a009f=anim/shrink_fade_out +010a00a0=anim/shrink_fade_out_center +010a00a1=anim/shrink_fade_out_from_bottom +010a00a2=anim/slide_in_child_bottom +010a00a3=anim/slide_in_enter_micro +010a00a4=anim/slide_in_exit_micro +010a00a5=anim/slide_in_right +010a00a6=anim/slide_in_up +010a00a7=anim/slide_out_down +010a00a8=anim/slide_out_left +010a00a9=anim/slide_out_micro +010a00aa=anim/slow_fade_in +010a00ab=anim/submenu_enter +010a00ac=anim/submenu_exit +010a00ad=anim/swipe_window_enter +010a00ae=anim/swipe_window_exit +010a00af=anim/task_close_enter +010a00b0=anim/task_close_exit +010a00b1=anim/task_open_enter +010a00b2=anim/task_open_enter_cross_profile_apps +010a00b3=anim/task_open_exit +010a00b4=anim/toast_enter +010a00b5=anim/toast_exit +010a00b6=anim/tooltip_enter +010a00b7=anim/tooltip_exit +010a00b8=anim/translucent_enter +010a00b9=anim/translucent_exit +010a00ba=anim/voice_activity_close_enter +010a00bb=anim/voice_activity_close_exit +010a00bc=anim/voice_activity_open_enter +010a00bd=anim/voice_activity_open_exit +010a00be=anim/voice_layer_enter +010a00bf=anim/voice_layer_exit +010a00c0=anim/wallpaper_close_enter +010a00c1=anim/wallpaper_close_exit +010a00c2=anim/wallpaper_enter +010a00c3=anim/wallpaper_exit +010a00c4=anim/wallpaper_intra_close_enter +010a00c5=anim/wallpaper_intra_close_exit +010a00c6=anim/wallpaper_intra_open_enter +010a00c7=anim/wallpaper_intra_open_exit +010a00c8=anim/wallpaper_open_enter +010a00c9=anim/wallpaper_open_exit +010a00ca=anim/window_move_from_decor +010a00cb=anim/ft_avd_tooverflow_rectangle_1_animation +010a00cc=anim/ft_avd_tooverflow_rectangle_1_pivot_animation +010a00cd=anim/ft_avd_tooverflow_rectangle_2_animation +010a00ce=anim/ft_avd_tooverflow_rectangle_2_pivot_animation +010a00cf=anim/ft_avd_tooverflow_rectangle_3_animation +010a00d0=anim/ft_avd_tooverflow_rectangle_3_pivot_animation +010a00d1=anim/ft_avd_tooverflow_rectangle_path_1_animation +010a00d2=anim/ft_avd_tooverflow_rectangle_path_2_animation +010a00d3=anim/ft_avd_tooverflow_rectangle_path_3_animation +010a00d4=anim/grow_fade_in +010a00d5=anim/grow_fade_in_center +010a00d6=anim/grow_fade_in_from_bottom +010a00d7=anim/ic_bluetooth_transient_animation_0 +010a00d8=anim/ic_bluetooth_transient_animation_1 +010a00d9=anim/ic_bluetooth_transient_animation_2 +010a00da=anim/ic_hotspot_transient_animation_0 +010a00db=anim/ic_hotspot_transient_animation_1 +010a00dc=anim/ic_hotspot_transient_animation_2 +010a00dd=anim/ic_hotspot_transient_animation_3 +010a00de=anim/ic_signal_wifi_transient_animation_0 +010a00df=anim/ic_signal_wifi_transient_animation_1 +010a00e0=anim/ic_signal_wifi_transient_animation_2 +010a00e1=anim/ic_signal_wifi_transient_animation_3 +010a00e2=anim/ic_signal_wifi_transient_animation_4 +010a00e3=anim/ic_signal_wifi_transient_animation_5 +010a00e4=anim/ic_signal_wifi_transient_animation_6 +010a00e5=anim/ic_signal_wifi_transient_animation_7 +010a00e6=anim/ic_signal_wifi_transient_animation_8 +010a00e7=anim/input_method_enter +010a00e8=anim/input_method_exit +010a00e9=anim/input_method_extract_enter +010a00ea=anim/input_method_extract_exit +010a00eb=anim/input_method_fancy_enter +010a00ec=anim/input_method_fancy_exit +010a00ed=anim/launch_task_behind_source +010a00ee=anim/launch_task_behind_target +010a00ef=anim/lock_in +010a00f0=anim/lock_lock +010a00f1=anim/lock_scanning +010a00f2=anim/lock_screen_behind_enter +010a00f3=anim/lock_screen_behind_enter_fade_in +010a00f4=anim/lock_screen_behind_enter_wallpaper +010a00f5=anim/lock_screen_enter +010a00f6=anim/lock_screen_exit +010a00f7=anim/lock_screen_wallpaper_exit +010a00f8=anim/lock_to_error +010a00f9=anim/lock_unlock +010a00fa=anim/options_panel_enter +010a00fb=anim/options_panel_exit +010a00fc=anim/popup_enter_material +010a00fd=anim/popup_exit_material +010a00fe=anim/progress_indeterminate_horizontal_rect1 +010a00ff=anim/progress_indeterminate_horizontal_rect2 +010a0100=anim/progress_indeterminate_material +010a0101=anim/progress_indeterminate_rotation_material +010a0102=anim/push_down_in +010a0103=anim/push_down_in_no_alpha +010a0104=anim/push_down_out +010a0105=anim/push_down_out_no_alpha +010a0106=anim/push_up_in +010a0107=anim/push_up_out +010a0108=anim/recent_enter +010a0109=anim/recent_exit +010a010a=anim/recents_fade_in +010a010b=anim/recents_fade_out +010a010c=anim/resolver_close_anim +010a010d=anim/resolver_launch_anim +010a010e=anim/rotation_animation_enter +010a010f=anim/rotation_animation_jump_exit +010a0110=anim/rotation_animation_xfade_exit +010a0111=anim/screen_rotate_0_enter +010a0112=anim/screen_rotate_0_exit +010a0113=anim/screen_rotate_0_frame +010a0114=anim/screen_rotate_180_enter +010a0115=anim/screen_rotate_180_exit +010a0116=anim/screen_rotate_180_frame +010a0117=anim/screen_rotate_finish_enter +010a0118=anim/screen_rotate_finish_exit +010a0119=anim/screen_rotate_finish_frame +010a011a=anim/screen_rotate_minus_90_enter +010a011b=anim/screen_rotate_minus_90_exit +010a011c=anim/screen_rotate_minus_90_frame +010a011d=anim/screen_rotate_plus_90_enter +010a011e=anim/screen_rotate_plus_90_exit +010a011f=anim/screen_rotate_plus_90_frame +010a0120=anim/screen_rotate_start_enter +010a0121=anim/screen_rotate_start_exit +010a0122=anim/screen_rotate_start_frame +010a0123=anim/screen_user_enter +010a0124=anim/screen_user_exit +010a0125=anim/search_bar_enter +010a0126=anim/search_bar_exit +010a0127=anim/seekbar_thumb_pressed_to_unpressed_thumb_animation +010a0128=anim/seekbar_thumb_unpressed_to_pressed_thumb_0_animation +010a0129=anim/shrink_fade_out +010a012a=anim/shrink_fade_out_center +010a012b=anim/shrink_fade_out_from_bottom +010a012c=anim/slide_in_child_bottom +010a012d=anim/slide_in_enter_micro +010a012e=anim/slide_in_exit_micro +010a012f=anim/slide_in_right +010a0130=anim/slide_in_up +010a0131=anim/slide_out_down +010a0132=anim/slide_out_left +010a0133=anim/slide_out_micro +010a0134=anim/slow_fade_in +010a0135=anim/submenu_enter +010a0136=anim/submenu_exit +010a0137=anim/swipe_window_enter +010a0138=anim/swipe_window_exit +010a0139=anim/task_close_enter +010a013a=anim/task_close_exit +010a013b=anim/task_open_enter +010a013c=anim/task_open_enter_cross_profile_apps +010a013d=anim/task_open_exit +010a013e=anim/toast_enter +010a013f=anim/toast_exit +010a0140=anim/tooltip_enter +010a0141=anim/tooltip_exit +010a0142=anim/translucent_enter +010a0143=anim/translucent_exit +010a0144=anim/voice_activity_close_enter +010a0145=anim/voice_activity_close_exit +010a0146=anim/voice_activity_open_enter +010a0147=anim/voice_activity_open_exit +010a0148=anim/voice_layer_enter +010a0149=anim/voice_layer_exit +010a014a=anim/wallpaper_close_enter +010a014b=anim/wallpaper_close_exit +010a014c=anim/wallpaper_enter +010a014d=anim/wallpaper_exit +010a014e=anim/wallpaper_intra_close_enter +010a014f=anim/wallpaper_intra_close_exit +010a0150=anim/wallpaper_intra_open_enter +010a0151=anim/wallpaper_intra_open_exit +010a0152=anim/wallpaper_open_enter +010a0153=anim/wallpaper_open_exit +010a0154=anim/window_move_from_decor +010b0000=animator/fade_in +010b0001=animator/fade_out +010b0002=animator/fragment_close_enter +010b0003=animator/fragment_close_exit +010b0004=animator/fragment_fade_enter +010b0005=animator/fragment_fade_exit +010b0006=animator/fragment_open_enter +010b0007=animator/fragment_open_exit +010b0008=animator/leanback_setup_fragment_close_enter +010b0009=animator/leanback_setup_fragment_close_exit +010b000a=animator/leanback_setup_fragment_open_enter +010b000b=animator/leanback_setup_fragment_open_exit +010c0000=interpolator/accelerate_quad +010c0001=interpolator/decelerate_quad +010c0002=interpolator/accelerate_cubic +010c0003=interpolator/decelerate_cubic +010c0004=interpolator/accelerate_quint +010c0005=interpolator/decelerate_quint +010c0006=interpolator/accelerate_decelerate +010c0007=interpolator/anticipate +010c0008=interpolator/overshoot +010c0009=interpolator/anticipate_overshoot +010c000a=interpolator/bounce +010c000b=interpolator/linear +010c000c=interpolator/cycle +010c000d=interpolator/fast_out_slow_in +010c000e=interpolator/linear_out_slow_in +010c000f=interpolator/fast_out_linear_in +010c0010=interpolator/accelerate_quart +010c0011=interpolator/activity_close_dim +010c0012=interpolator/aggressive_ease +010c0013=interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 +010c0014=interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 +010c0015=interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 +010c0016=interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 +010c0017=interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 +010c0018=interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 +010c0019=interpolator/decelerate_quart +010c001a=interpolator/fast_out_extra_slow_in +010c001b=interpolator/ft_avd_toarrow_animation_interpolator_0 +010c001c=interpolator/ft_avd_toarrow_animation_interpolator_1 +010c001d=interpolator/ft_avd_toarrow_animation_interpolator_2 +010c001e=interpolator/ft_avd_toarrow_animation_interpolator_3 +010c001f=interpolator/ft_avd_toarrow_animation_interpolator_4 +010c0020=interpolator/ft_avd_toarrow_animation_interpolator_5 +010c0021=interpolator/ft_avd_toarrow_animation_interpolator_6 +010c0022=interpolator/launch_task_behind_source_scale_1 +010c0023=interpolator/launch_task_behind_source_scale_2 +010c0024=interpolator/launch_task_behind_target_ydelta +010c0025=interpolator/launch_task_micro_alpha +010c0026=interpolator/launch_task_micro_ydelta +010c0027=interpolator/progress_indeterminate_horizontal_rect1_scalex +010c0028=interpolator/progress_indeterminate_horizontal_rect1_translatex +010c0029=interpolator/progress_indeterminate_horizontal_rect2_scalex +010c002a=interpolator/progress_indeterminate_horizontal_rect2_translatex +010c002b=interpolator/progress_indeterminate_rotation_interpolator +010c002c=interpolator/screen_rotation_alpha_in +010c002d=interpolator/screen_rotation_alpha_out +010c002e=interpolator/transient_interpolator +010c002f=interpolator/trim_end_interpolator +010c0030=interpolator/trim_offset_interpolator +010c0031=interpolator/trim_start_interpolator +010d0000=mipmap/sym_def_app_icon +010d0001=mipmap/sym_def_app_icon_foreground +010d0002=mipmap/sym_def_app_icon_maskable +010d0003=mipmap/sym_def_app_icon_maskable +010e0000=integer/config_shortAnimTime +010e0001=integer/config_mediumAnimTime +010e0002=integer/config_longAnimTime +010e0003=integer/status_bar_notification_info_maxnum +010e0004=integer/autofill_max_visible_datasets +010e0005=integer/button_pressed_animation_delay +010e0006=integer/button_pressed_animation_duration +010e0007=integer/config_MaxConcurrentDownloadsAllowed +010e0008=integer/config_accessibilityColorMode +010e0009=integer/config_activeTaskDurationHours +010e000a=integer/config_activityDefaultDur +010e000b=integer/config_activityShortDur +010e000c=integer/config_alertDialogController +010e000d=integer/config_allowedUnprivilegedKeepalivePerUid +010e000e=integer/config_app_exit_info_history_list_size +010e000f=integer/config_attentionMaximumExtension +010e0010=integer/config_attentiveTimeout +010e0011=integer/config_attentiveWarningDuration +010e0012=integer/config_autoBrightnessBrighteningLightDebounce +010e0013=integer/config_autoBrightnessDarkeningLightDebounce +010e0014=integer/config_autoBrightnessInitialLightSensorRate +010e0015=integer/config_autoBrightnessLightSensorRate +010e0016=integer/config_autoBrightnessShortTermModelTimeout +010e0017=integer/config_autoGroupAtCount +010e0018=integer/config_autoPowerModeAnyMotionSensor +010e0019=integer/config_autoPowerModeThresholdAngle +010e001a=integer/config_bluetooth_idle_cur_ma +010e001b=integer/config_bluetooth_max_advertisers +010e001c=integer/config_bluetooth_max_connected_audio_devices +010e001d=integer/config_bluetooth_max_scan_filters +010e001e=integer/config_bluetooth_operating_voltage_mv +010e001f=integer/config_bluetooth_rx_cur_ma +010e0020=integer/config_bluetooth_tx_cur_ma +010e0021=integer/config_brightness_ramp_rate_fast +010e0022=integer/config_brightness_ramp_rate_slow +010e0023=integer/config_burnInProtectionMaxHorizontalOffset +010e0024=integer/config_burnInProtectionMaxRadius +010e0025=integer/config_burnInProtectionMaxVerticalOffset +010e0026=integer/config_burnInProtectionMinHorizontalOffset +010e0027=integer/config_burnInProtectionMinVerticalOffset +010e0028=integer/config_cameraLaunchGestureSensorType +010e0029=integer/config_cameraLiftTriggerSensorType +010e002a=integer/config_carDockKeepsScreenOn +010e002b=integer/config_carDockRotation +010e002c=integer/config_cdma_3waycall_flash_delay +010e002d=integer/config_criticalBatteryWarningLevel +010e002e=integer/config_cursorWindowSize +010e002f=integer/config_datause_notification_type +010e0030=integer/config_datause_polling_period_sec +010e0031=integer/config_datause_threshold_bytes +010e0032=integer/config_datause_throttle_kbitsps +010e0033=integer/config_debugSystemServerPssThresholdBytes +010e0034=integer/config_defaultDisplayDefaultColorMode +010e0035=integer/config_defaultHapticFeedbackIntensity +010e0036=integer/config_defaultNightDisplayAutoMode +010e0037=integer/config_defaultNightDisplayCustomEndTime +010e0038=integer/config_defaultNightDisplayCustomStartTime +010e0039=integer/config_defaultNightMode +010e003a=integer/config_defaultNotificationLedOff +010e003b=integer/config_defaultNotificationLedOn +010e003c=integer/config_defaultNotificationVibrationIntensity +010e003d=integer/config_defaultPeakRefreshRate +010e003e=integer/config_defaultPictureInPictureGravity +010e003f=integer/config_defaultRefreshRate +010e0040=integer/config_defaultRefreshRateInZone +010e0041=integer/config_defaultRingVibrationIntensity +010e0042=integer/config_defaultUiModeType +010e0043=integer/config_defaultVibrationAmplitude +010e0044=integer/config_deskDockKeepsScreenOn +010e0045=integer/config_deskDockRotation +010e0046=integer/config_displayWhiteBalanceBrightnessFilterHorizon +010e0047=integer/config_displayWhiteBalanceBrightnessSensorRate +010e0048=integer/config_displayWhiteBalanceColorTemperatureDefault +010e0049=integer/config_displayWhiteBalanceColorTemperatureFilterHorizon +010e004a=integer/config_displayWhiteBalanceColorTemperatureMax +010e004b=integer/config_displayWhiteBalanceColorTemperatureMin +010e004c=integer/config_displayWhiteBalanceColorTemperatureSensorRate +010e004d=integer/config_displayWhiteBalanceDecreaseDebounce +010e004e=integer/config_displayWhiteBalanceIncreaseDebounce +010e004f=integer/config_dockedStackDividerSnapMode +010e0050=integer/config_doublePressOnPowerBehavior +010e0051=integer/config_doubleTapOnHomeBehavior +010e0052=integer/config_downloadDataDirLowSpaceThreshold +010e0053=integer/config_downloadDataDirSize +010e0054=integer/config_dozeWakeLockScreenDebounce +010e0055=integer/config_drawLockTimeoutMillis +010e0056=integer/config_dreamsBatteryLevelDrainCutoff +010e0057=integer/config_dreamsBatteryLevelMinimumWhenNotPowered +010e0058=integer/config_dreamsBatteryLevelMinimumWhenPowered +010e0059=integer/config_dropboxLowPriorityBroadcastRateLimitPeriod +010e005a=integer/config_dynamicPowerSavingsDefaultDisableThreshold +010e005b=integer/config_extraFreeKbytesAbsolute +010e005c=integer/config_extraFreeKbytesAdjust +010e005d=integer/config_faceMaxTemplatesPerUser +010e005e=integer/config_fingerprintMaxTemplatesPerUser +010e005f=integer/config_globalActionsKeyTimeout +010e0060=integer/config_immersive_mode_confirmation_panic +010e0061=integer/config_jobSchedulerIdleWindowSlop +010e0062=integer/config_jobSchedulerInactivityIdleThreshold +010e0063=integer/config_keepPreloadsMinDays +010e0064=integer/config_lidKeyboardAccessibility +010e0065=integer/config_lidNavigationAccessibility +010e0066=integer/config_lidOpenRotation +010e0067=integer/config_lightSensorWarmupTime +010e0068=integer/config_lockSoundVolumeDb +010e0069=integer/config_longPressOnBackBehavior +010e006a=integer/config_longPressOnHomeBehavior +010e006b=integer/config_longPressOnPowerBehavior +010e006c=integer/config_lowBatteryAutoTriggerDefaultLevel +010e006d=integer/config_lowBatteryCloseWarningBump +010e006e=integer/config_lowBatteryWarningLevel +010e006f=integer/config_lowMemoryKillerMinFreeKbytesAbsolute +010e0070=integer/config_lowMemoryKillerMinFreeKbytesAdjust +010e0071=integer/config_maxNumVisibleRecentTasks +010e0072=integer/config_maxNumVisibleRecentTasks_grid +010e0073=integer/config_maxNumVisibleRecentTasks_lowRam +010e0074=integer/config_maxResolverActivityColumns +010e0075=integer/config_maxShortcutTargetsPerApp +010e0076=integer/config_maxUiWidth +010e0077=integer/config_max_pan_devices +010e0078=integer/config_maximumScreenDimDuration +010e0079=integer/config_mdc_initial_max_retry +010e007a=integer/config_minNumVisibleRecentTasks +010e007b=integer/config_minNumVisibleRecentTasks_grid +010e007c=integer/config_minNumVisibleRecentTasks_lowRam +010e007d=integer/config_minimumScreenOffTimeout +010e007e=integer/config_mobile_hotspot_provision_check_period +010e007f=integer/config_mobile_mtu +010e0080=integer/config_multiuserMaxRunningUsers +010e0081=integer/config_multiuserMaximumUsers +010e0082=integer/config_navBarInteractionMode +010e0083=integer/config_navBarOpacityMode +010e0084=integer/config_networkAvoidBadWifi +010e0085=integer/config_networkDefaultDailyMultipathQuotaBytes +010e0086=integer/config_networkMeteredMultipathPreference +010e0087=integer/config_networkNotifySwitchType +010e0088=integer/config_networkPolicyDefaultWarning +010e0089=integer/config_networkTransitionTimeout +010e008a=integer/config_networkWakeupPacketMark +010e008b=integer/config_networkWakeupPacketMask +010e008c=integer/config_nightDisplayColorTemperatureDefault +010e008d=integer/config_nightDisplayColorTemperatureMax +010e008e=integer/config_nightDisplayColorTemperatureMin +010e008f=integer/config_notificationServiceArchiveSize +010e0090=integer/config_notificationStripRemoteViewSizeBytes +010e0091=integer/config_notificationWarnRemoteViewSizeBytes +010e0092=integer/config_notificationsBatteryFullARGB +010e0093=integer/config_notificationsBatteryLedOff +010e0094=integer/config_notificationsBatteryLedOn +010e0095=integer/config_notificationsBatteryLowARGB +010e0096=integer/config_notificationsBatteryMediumARGB +010e0097=integer/config_ntpPollingInterval +010e0098=integer/config_ntpPollingIntervalShorter +010e0099=integer/config_ntpRetry +010e009a=integer/config_ntpTimeout +010e009b=integer/config_num_physical_slots +010e009c=integer/config_overrideHasPermanentMenuKey +010e009d=integer/config_pdp_reject_retry_delay_ms +010e009e=integer/config_phonenumber_compare_min_match +010e009f=integer/config_previousVibrationsDumpLimit +010e00a0=integer/config_radioScanningTimeout +010e00a1=integer/config_reservedPrivilegedKeepaliveSlots +010e00a2=integer/config_safe_media_volume_index +010e00a3=integer/config_safe_media_volume_usb_mB +010e00a4=integer/config_screenBrightnessDark +010e00a5=integer/config_screenBrightnessDim +010e00a6=integer/config_screenBrightnessDoze +010e00a7=integer/config_screenBrightnessForVrSettingDefault +010e00a8=integer/config_screenBrightnessForVrSettingMaximum +010e00a9=integer/config_screenBrightnessForVrSettingMinimum +010e00aa=integer/config_screenBrightnessSettingDefault +010e00ab=integer/config_screenBrightnessSettingMaximum +010e00ac=integer/config_screenBrightnessSettingMinimum +010e00ad=integer/config_screen_magnification_multi_tap_adjustment +010e00ae=integer/config_screen_rotation_color_transition +010e00af=integer/config_screen_rotation_fade_in +010e00b0=integer/config_screen_rotation_fade_in_delay +010e00b1=integer/config_screen_rotation_fade_out +010e00b2=integer/config_screen_rotation_total_180 +010e00b3=integer/config_screen_rotation_total_90 +010e00b4=integer/config_screenshotChordKeyTimeout +010e00b5=integer/config_shortPressOnPowerBehavior +010e00b6=integer/config_shortPressOnSleepBehavior +010e00b7=integer/config_shutdownBatteryTemperature +010e00b8=integer/config_soundEffectVolumeDb +010e00b9=integer/config_stableDeviceDisplayHeight +010e00ba=integer/config_stableDeviceDisplayWidth +010e00bb=integer/config_storageManagerDaystoRetainDefault +010e00bc=integer/config_timeZoneRulesCheckRetryCount +010e00bd=integer/config_timeZoneRulesCheckTimeMillisAllowed +010e00be=integer/config_toastDefaultGravity +010e00bf=integer/config_tooltipAnimTime +010e00c0=integer/config_triplePressOnPowerBehavior +010e00c1=integer/config_undockedHdmiRotation +010e00c2=integer/config_userTypePackageWhitelistMode +010e00c3=integer/config_valid_wappush_index +010e00c4=integer/config_veryLongPressOnPowerBehavior +010e00c5=integer/config_veryLongPressTimeout +010e00c6=integer/config_virtualKeyQuietTimeMillis +010e00c7=integer/config_volte_replacement_rat +010e00c8=integer/config_wakeUpDelayDoze +010e00c9=integer/config_windowOutsetBottom +010e00ca=integer/config_zen_repeat_callers_threshold +010e00cb=integer/date_picker_header_max_lines_material +010e00cc=integer/date_picker_mode +010e00cd=integer/date_picker_mode_material +010e00ce=integer/db_connection_pool_size +010e00cf=integer/db_default_idle_connection_timeout +010e00d0=integer/db_journal_size_limit +010e00d1=integer/db_wal_autocheckpoint +010e00d2=integer/db_wal_truncate_size +010e00d3=integer/default_data_warning_level_mb +010e00d4=integer/default_reserved_data_coding_scheme +010e00d5=integer/disabled_alpha_animation_duration +010e00d6=integer/dock_enter_exit_duration +010e00d7=integer/kg_carousel_angle +010e00d8=integer/kg_glowpad_rotation_offset +010e00d9=integer/kg_security_flipper_weight +010e00da=integer/kg_selector_gravity +010e00db=integer/kg_widget_region_weight +010e00dc=integer/leanback_setup_alpha_activity_in_bkg_delay +010e00dd=integer/leanback_setup_alpha_activity_in_bkg_duration +010e00de=integer/leanback_setup_alpha_activity_out_bkg_delay +010e00df=integer/leanback_setup_alpha_activity_out_bkg_duration +010e00e0=integer/leanback_setup_alpha_backward_in_content_delay +010e00e1=integer/leanback_setup_alpha_backward_in_content_duration +010e00e2=integer/leanback_setup_alpha_backward_out_content_delay +010e00e3=integer/leanback_setup_alpha_backward_out_content_duration +010e00e4=integer/leanback_setup_alpha_forward_in_content_delay +010e00e5=integer/leanback_setup_alpha_forward_in_content_duration +010e00e6=integer/leanback_setup_alpha_forward_out_content_delay +010e00e7=integer/leanback_setup_alpha_forward_out_content_duration +010e00e8=integer/leanback_setup_base_animation_duration +010e00e9=integer/leanback_setup_translation_backward_out_content_delay +010e00ea=integer/leanback_setup_translation_backward_out_content_duration +010e00eb=integer/leanback_setup_translation_content_cliff_v4 +010e00ec=integer/leanback_setup_translation_content_resting_point_v4 +010e00ed=integer/leanback_setup_translation_forward_in_content_delay +010e00ee=integer/leanback_setup_translation_forward_in_content_duration +010e00ef=integer/preference_fragment_scrollbarStyle +010e00f0=integer/preference_screen_header_scrollbarStyle +010e00f1=integer/preferences_left_pane_weight +010e00f2=integer/preferences_right_pane_weight +010e00f3=integer/thumbnail_width_tv +010e00f4=integer/time_picker_mode +010e00f5=integer/time_picker_mode_material +010e00f6=integer/timepicker_title_visibility +010e00f7=integer/default_data_warning_level_mb +010e00f8=integer/disabled_alpha_animation_duration +010e00f9=integer/dock_enter_exit_duration +010e00fa=integer/kg_carousel_angle +010e00fb=integer/kg_glowpad_rotation_offset +010e00fc=integer/kg_security_flipper_weight +010e00fd=integer/kg_selector_gravity +010e00fe=integer/kg_widget_region_weight +010e00ff=integer/leanback_setup_alpha_activity_in_bkg_delay +010e0100=integer/leanback_setup_alpha_activity_in_bkg_duration +010e0101=integer/leanback_setup_alpha_activity_out_bkg_delay +010e0102=integer/leanback_setup_alpha_activity_out_bkg_duration +010e0103=integer/leanback_setup_alpha_backward_in_content_delay +010e0104=integer/leanback_setup_alpha_backward_in_content_duration +010e0105=integer/leanback_setup_alpha_backward_out_content_delay +010e0106=integer/leanback_setup_alpha_backward_out_content_duration +010e0107=integer/leanback_setup_alpha_forward_in_content_delay +010e0108=integer/leanback_setup_alpha_forward_in_content_duration +010e0109=integer/leanback_setup_alpha_forward_out_content_delay +010e010a=integer/leanback_setup_alpha_forward_out_content_duration +010e010b=integer/leanback_setup_base_animation_duration +010e010c=integer/leanback_setup_translation_backward_out_content_delay +010e010d=integer/leanback_setup_translation_backward_out_content_duration +010e010e=integer/leanback_setup_translation_content_cliff_v4 +010e010f=integer/leanback_setup_translation_content_resting_point_v4 +010e0110=integer/leanback_setup_translation_forward_in_content_delay +010e0111=integer/leanback_setup_translation_forward_in_content_duration +010e0112=integer/preference_fragment_scrollbarStyle +010e0113=integer/preference_screen_header_scrollbarStyle +010e0114=integer/preferences_left_pane_weight +010e0115=integer/preferences_right_pane_weight +010e0116=integer/thumbnail_width_tv +010e0117=integer/time_picker_mode +010e0118=integer/time_picker_mode_material +010e0119=integer/timepicker_title_visibility +010f0000=transition/no_transition +010f0001=transition/move +010f0002=transition/fade +010f0003=transition/explode +010f0004=transition/slide_bottom +010f0005=transition/slide_top +010f0006=transition/slide_right +010f0007=transition/slide_left +010f0008=transition/popup_window_enter +010f0009=transition/popup_window_exit +010f000a=xml/password_kbd_qwerty_shifted +010f000b=xml/password_kbd_symbols +010f000c=xml/password_kbd_symbols_shift +010f000d=xml/power_profile +010f000e=xml/preferred_time_zones +010f000f=xml/sms_short_codes +010f0010=xml/storage_list +010f0011=xml/time_zones_by_country +01100000=raw/loaderror +01100001=raw/nodomain +01100002=raw/color_fade_frag +01100003=raw/color_fade_vert +01100004=raw/fallback_categories +01100005=raw/fallbackring +01100006=raw/incognito_mode_start_page +01110000=bool/config_sendPackageName +01110001=bool/config_showDefaultAssistant +01110002=bool/config_showDefaultEmergency +01110003=bool/config_showDefaultHome +01110004=bool/config_perDisplayFocusEnabled +01110005=bool/ImsConnectedDefaultValue +01110006=bool/action_bar_embed_tabs +01110007=bool/action_bar_expanded_action_views_exclusive +01110008=bool/config_LTE_eri_for_network_name +01110009=bool/config_actionMenuItemAllCaps +0111000a=bool/config_adaptive_sleep_available +0111000b=bool/config_allow3rdPartyAppOnInternal +0111000c=bool/config_allowAllRotations +0111000d=bool/config_allowAnimationsInLowPowerMode +0111000e=bool/config_allowAutoBrightnessWhileDozing +0111000f=bool/config_allowDisablingAssistDisclosure +01110010=bool/config_allowEscrowTokenForTrustAgent +01110011=bool/config_allowPriorityVibrationsInLowPowerMode +01110012=bool/config_allowSeamlessRotationDespiteNavBarMoving +01110013=bool/config_allowStartActivityForLongPressOnPowerInSetup +01110014=bool/config_allowTheaterModeWakeFromCameraLens +01110015=bool/config_allowTheaterModeWakeFromDock +01110016=bool/config_allowTheaterModeWakeFromGesture +01110017=bool/config_allowTheaterModeWakeFromKey +01110018=bool/config_allowTheaterModeWakeFromLidSwitch +01110019=bool/config_allowTheaterModeWakeFromMotion +0111001a=bool/config_allowTheaterModeWakeFromMotionWhenNotDreaming +0111001b=bool/config_allowTheaterModeWakeFromPowerKey +0111001c=bool/config_allowTheaterModeWakeFromUnplug +0111001d=bool/config_allowTheaterModeWakeFromWindowLayout +0111001e=bool/config_allow_ussd_over_ims +0111001f=bool/config_alwaysUseCdmaRssi +01110020=bool/config_animateScreenLights +01110021=bool/config_annoy_dianne +01110022=bool/config_apfDrop802_3Frames +01110023=bool/config_assistantOnTopOfDream +01110024=bool/config_autoBrightnessResetAmbientLuxAfterWarmUp +01110025=bool/config_autoPowerModePreferWristTilt +01110026=bool/config_autoPowerModePrefetchLocation +01110027=bool/config_autoPowerModeUseMotionSensor +01110028=bool/config_auto_attach_data_on_creation +01110029=bool/config_automatic_brightness_available +0111002a=bool/config_automotiveHideNavBarForKeyboard +0111002b=bool/config_avoidGfxAccel +0111002c=bool/config_awareSettingAvailable +0111002d=bool/config_batterySaverStickyBehaviourDisabled +0111002e=bool/config_batterySdCardAccessibility +0111002f=bool/config_battery_percentage_setting_available +01110030=bool/config_batterymeterDualTone +01110031=bool/config_bluetooth_address_validation +01110032=bool/config_bluetooth_default_profiles +01110033=bool/config_bluetooth_hfp_inband_ringing_support +01110034=bool/config_bluetooth_le_peripheral_mode_supported +01110035=bool/config_bluetooth_pan_enable_autoconnect +01110036=bool/config_bluetooth_reload_supported_profiles_when_enabled +01110037=bool/config_bluetooth_sco_off_call +01110038=bool/config_bluetooth_wide_band_speech +01110039=bool/config_bugReportHandlerEnabled +0111003a=bool/config_built_in_sip_phone +0111003b=bool/config_buttonTextAllCaps +0111003c=bool/config_cameraDoubleTapPowerGestureEnabled +0111003d=bool/config_camera_sound_forced +0111003e=bool/config_carDockEnablesAccelerometer +0111003f=bool/config_carrier_volte_available +01110040=bool/config_carrier_volte_tty_supported +01110041=bool/config_carrier_vt_available +01110042=bool/config_carrier_wfc_ims_available +01110043=bool/config_cbrs_supported +01110044=bool/config_cellBroadcastAppLinks +01110045=bool/config_checkWallpaperAtBoot +01110046=bool/config_closeDialogWhenTouchOutside +01110047=bool/config_customBugreport +01110048=bool/config_customUserSwitchUi +01110049=bool/config_debugEnableAutomaticSystemServerHeapDumps +0111004a=bool/config_defaultInTouchMode +0111004b=bool/config_defaultRingtonePickerEnabled +0111004c=bool/config_defaultWindowFeatureContextMenu +0111004d=bool/config_defaultWindowFeatureOptionsPanel +0111004e=bool/config_deskDockEnablesAccelerometer +0111004f=bool/config_device_respects_hold_carrier_config +01110050=bool/config_device_volte_available +01110051=bool/config_device_vt_available +01110052=bool/config_device_wfc_ims_available +01110053=bool/config_disableLockscreenByDefault +01110054=bool/config_disableMenuKeyInLockScreen +01110055=bool/config_disableTransitionAnimation +01110056=bool/config_disableUsbPermissionDialogs +01110057=bool/config_displayBlanksAfterDoze +01110058=bool/config_displayBrightnessBucketsInDoze +01110059=bool/config_displayWhiteBalanceAvailable +0111005a=bool/config_displayWhiteBalanceEnabledDefault +0111005b=bool/config_dockedStackDividerFreeSnapMode +0111005c=bool/config_dontPreferApn +0111005d=bool/config_dozeAfterScreenOffByDefault +0111005e=bool/config_dozeAlwaysOnDisplayAvailable +0111005f=bool/config_dozeAlwaysOnEnabled +01110060=bool/config_dozePulsePickup +01110061=bool/config_dozeSupportsAodWallpaper +01110062=bool/config_dozeWakeLockScreenSensorAvailable +01110063=bool/config_dreamsActivatedOnDockByDefault +01110064=bool/config_dreamsActivatedOnSleepByDefault +01110065=bool/config_dreamsEnabledByDefault +01110066=bool/config_dreamsEnabledOnBattery +01110067=bool/config_dreamsSupported +01110068=bool/config_duplicate_port_omadm_wappush +01110069=bool/config_eap_sim_based_auth_supported +0111006a=bool/config_enableActivityRecognitionHardwareOverlay +0111006b=bool/config_enableAppWidgetService +0111006c=bool/config_enableAutoPowerModes +0111006d=bool/config_enableBurnInProtection +0111006e=bool/config_enableCarDockHomeLaunch +0111006f=bool/config_enableCredentialFactoryResetProtection +01110070=bool/config_enableFusedLocationOverlay +01110071=bool/config_enableGeocoderOverlay +01110072=bool/config_enableGeofenceOverlay +01110073=bool/config_enableHapticTextHandle +01110074=bool/config_enableLockBeforeUnlockScreen +01110075=bool/config_enableLockScreenRotation +01110076=bool/config_enableMultiUserUI +01110077=bool/config_enableNetworkLocationOverlay +01110078=bool/config_enableNewAutoSelectNetworkUI +01110079=bool/config_enableNightMode +0111007a=bool/config_enableScreenshotChord +0111007b=bool/config_enableServerNotificationEffectsForAutomotive +0111007c=bool/config_enableUpdateableTimeZoneRules +0111007d=bool/config_enableWallpaperService +0111007e=bool/config_enableWcgMode +0111007f=bool/config_enableWifiDisplay +01110080=bool/config_enable_emergency_call_while_sim_locked +01110081=bool/config_enable_puk_unlock_screen +01110082=bool/config_expandLockScreenUserSwitcher +01110083=bool/config_faceAuthDismissesKeyguard +01110084=bool/config_fillMainBuiltInDisplayCutout +01110085=bool/config_fingerprintSupportsGestures +01110086=bool/config_focusScrollContainersInTouchMode +01110087=bool/config_forceShowSystemBars +01110088=bool/config_forceSystemPackagesQueryable +01110089=bool/config_forceWindowDrawsStatusBarBackground +0111008a=bool/config_freeformWindowManagement +0111008b=bool/config_goToSleepOnButtonPressTheaterMode +0111008c=bool/config_guestUserEphemeral +0111008d=bool/config_handleVolumeKeysInWindowManager +0111008e=bool/config_hasPermanentDpad +0111008f=bool/config_hasRecents +01110090=bool/config_hearing_aid_profile_supported +01110091=bool/config_hotswapCapable +01110092=bool/config_inflateSignalStrength +01110093=bool/config_intrusiveNotificationLed +01110094=bool/config_keepRestrictedProfilesInBackground +01110095=bool/config_keyguardUserSwitcher +01110096=bool/config_lidControlsDisplayFold +01110097=bool/config_lidControlsScreenLock +01110098=bool/config_lidControlsSleep +01110099=bool/config_localDisplaysMirrorContent +0111009a=bool/config_lockDayNightMode +0111009b=bool/config_lockUiMode +0111009c=bool/config_mainBuiltInDisplayIsRound +0111009d=bool/config_maskMainBuiltInDisplayCutout +0111009e=bool/config_mms_content_disposition_support +0111009f=bool/config_mobile_data_capable +011100a0=bool/config_multiuserDelayUserDataLocking +011100a1=bool/config_navBarAlwaysShowOnSideEdgeGesture +011100a2=bool/config_navBarCanMove +011100a3=bool/config_navBarNeedsScrim +011100a4=bool/config_navBarTapThrough +011100a5=bool/config_networkSamplingWakesDevice +011100a6=bool/config_nightDisplayAvailable +011100a7=bool/config_noHomeScreen +011100a8=bool/config_notificationBadging +011100a9=bool/config_notificationHeaderClickableForExpand +011100aa=bool/config_overrideRemoteViewsActivityTransition +011100ab=bool/config_pdp_reject_enable_retry +011100ac=bool/config_permissionsIndividuallyControlled +011100ad=bool/config_pinnerAssistantApp +011100ae=bool/config_pinnerCameraApp +011100af=bool/config_pinnerHomeApp +011100b0=bool/config_powerDecoupleAutoSuspendModeFromDisplay +011100b1=bool/config_powerDecoupleInteractiveModeFromDisplay +011100b2=bool/config_preferenceFragmentClipToPadding +011100b3=bool/config_quickSettingsSupported +011100b4=bool/config_requireCallCapableAccountForHandle +011100b5=bool/config_requireRadioPowerOffOnSimRefreshReset +011100b6=bool/config_restartRadioAfterProvisioning +011100b7=bool/config_restart_radio_on_pdp_fail_regular_deactivation +011100b8=bool/config_reverseDefaultRotation +011100b9=bool/config_safe_media_disable_on_volume_up +011100ba=bool/config_safe_media_volume_enabled +011100bb=bool/config_sendAudioBecomingNoisy +011100bc=bool/config_setColorTransformAccelerated +011100bd=bool/config_setColorTransformAcceleratedPerLayer +011100be=bool/config_sf_limitedAlpha +011100bf=bool/config_sf_slowBlur +011100c0=bool/config_showAreaUpdateInfoSettings +011100c1=bool/config_showBuiltinWirelessChargingAnim +011100c2=bool/config_showGesturalNavigationHints +011100c3=bool/config_showMenuShortcutsWhenKeyboardPresent +011100c4=bool/config_showNavigationBar +011100c5=bool/config_showSysuiShutdown +011100c6=bool/config_showUserSwitcherByDefault +011100c7=bool/config_silenceSensorAvailable +011100c8=bool/config_single_volume +011100c9=bool/config_sip_wifi_only +011100ca=bool/config_skipScreenOnBrightnessRamp +011100cb=bool/config_skipSensorAvailable +011100cc=bool/config_smart_battery_available +011100cd=bool/config_sms_capable +011100ce=bool/config_sms_decode_gsm_8bit_data +011100cf=bool/config_sms_force_7bit_encoding +011100d0=bool/config_sms_utf8_support +011100d1=bool/config_speed_up_audio_on_mt_calls +011100d2=bool/config_stkNoAlphaUsrCnf +011100d3=bool/config_strongAuthRequiredOnBoot +011100d4=bool/config_supportAudioSourceUnprocessed +011100d5=bool/config_supportAutoRotation +011100d6=bool/config_supportBluetoothPersistedState +011100d7=bool/config_supportDoubleTapWake +011100d8=bool/config_supportLongPressPowerWhenNonInteractive +011100d9=bool/config_supportMicNearUltrasound +011100da=bool/config_supportPreRebootSecurityLogs +011100db=bool/config_supportSpeakerNearUltrasound +011100dc=bool/config_supportSystemNavigationKeys +011100dd=bool/config_supportsInsecureLockScreen +011100de=bool/config_supportsMultiDisplay +011100df=bool/config_supportsMultiWindow +011100e0=bool/config_supportsRoundedCornersOnWindows +011100e1=bool/config_supportsSplitScreenMultiWindow +011100e2=bool/config_supportsSystemDecorsOnSecondaryDisplays +011100e3=bool/config_suspendWhenScreenOffDueToProximity +011100e4=bool/config_sustainedPerformanceModeSupported +011100e5=bool/config_swipeDisambiguation +011100e6=bool/config_swipe_up_gesture_setting_available +011100e7=bool/config_switch_phone_on_voice_reg_state_change +011100e8=bool/config_syncstorageengine_masterSyncAutomatically +011100e9=bool/config_tether_upstream_automatic +011100ea=bool/config_timeZoneRulesUpdateTrackingEnabled +011100eb=bool/config_tintNotificationActionButtons +011100ec=bool/config_ui_enableFadingMarquee +011100ed=bool/config_unplugTurnsOnScreen +011100ee=bool/config_usbChargingMessage +011100ef=bool/config_use16BitTaskSnapshotPixelFormat +011100f0=bool/config_useAssistantVolume +011100f1=bool/config_useAttentionLight +011100f2=bool/config_useDefaultFocusHighlight +011100f3=bool/config_useDevInputEventForAudioJack +011100f4=bool/config_useFixedVolume +011100f5=bool/config_useRoundIcon +011100f6=bool/config_useSmsAppService +011100f7=bool/config_useSystemProvidedLauncherForSecondary +011100f8=bool/config_useVideoPauseWorkaround +011100f9=bool/config_useVolumeKeySounds +011100fa=bool/config_useWebViewPacProcessor +011100fb=bool/config_use_sim_language_file +011100fc=bool/config_use_strict_phone_number_comparation +011100fd=bool/config_use_strict_phone_number_comparation_for_kazakhstan +011100fe=bool/config_use_strict_phone_number_comparation_for_russia +011100ff=bool/config_use_voip_mode_for_ims +01110100=bool/config_user_notification_of_restrictied_mobile_access +01110101=bool/config_voice_capable +01110102=bool/config_volumeHushGestureEnabled +01110103=bool/config_wakeOnAssistKeyPress +01110104=bool/config_wakeOnBackKeyPress +01110105=bool/config_wakeOnDpadKeyPress +01110106=bool/config_wifiDisplaySupportsProtectedBuffers +01110107=bool/config_wimaxEnabled +01110108=bool/config_windowActionBarSupported +01110109=bool/config_windowEnableCircularEmulatorDisplayOverlay +0111010a=bool/config_windowIsRound +0111010b=bool/config_windowNoTitleDefault +0111010c=bool/config_windowOverscanByDefault +0111010d=bool/config_windowShowCircularMask +0111010e=bool/config_windowSwipeToDismiss +0111010f=bool/config_wirelessConsentRequired +01110110=bool/config_zramWriteback +01110111=bool/editable_voicemailnumber +01110112=bool/imsServiceAllowTurnOff +01110113=bool/kg_center_small_widgets_vertically +01110114=bool/kg_enable_camera_default_widget +01110115=bool/kg_share_status_area +01110116=bool/kg_sim_puk_account_full_screen +01110117=bool/kg_top_align_page_shrink_on_bouncer_visible +01110118=bool/lockscreen_isPortrait +01110119=bool/preferences_prefer_dual_pane +0111011a=bool/reset_geo_fencing_check_after_boot_or_apm +0111011b=bool/resolver_landscape_phone +0111011c=bool/show_ongoing_ime_switcher +0111011d=bool/skipHoldBeforeMerge +0111011e=bool/skip_restoring_network_selection +0111011f=bool/split_action_bar_is_narrow +01110120=bool/use_lock_pattern_drawable +01110121=bool/target_honeycomb_needs_options_menu +01110122=bool/use_lock_pattern_drawable +01120000=^attr-private/__removed0 +01120001=^attr-private/__removed1 +01120002=^attr-private/__removed2 +01120003=^attr-private/__removed3 +01120004=^attr-private/__removed4 +01120005=^attr-private/__removed5 +01120006=^attr-private/__removed6 +01120007=^attr-private/accessibilityFocusedDrawable +01120008=^attr-private/actionModePopupWindowStyle +01120009=^attr-private/activityChooserViewStyle +0112000a=^attr-private/activityOpenRemoteViewsEnterAnimation +0112000b=^attr-private/adjustable +0112000c=^attr-private/alertDialogButtonGroupStyle +0112000d=^attr-private/alertDialogCenterButtons +0112000e=^attr-private/allowAutoRevokePermissionsExemption +0112000f=^attr-private/allowMassStorage +01120010=^attr-private/allowStacking +01120011=^attr-private/alwaysFocusable +01120012=^attr-private/aspect +01120013=^attr-private/autofillDatasetPickerMaxHeight +01120014=^attr-private/autofillDatasetPickerMaxWidth +01120015=^attr-private/autofillSaveCustomSubtitleMaxHeight +01120016=^attr-private/backgroundLeft +01120017=^attr-private/backgroundPermission +01120018=^attr-private/backgroundRequest +01120019=^attr-private/backgroundRequestDetail +0112001a=^attr-private/backgroundRight +0112001b=^attr-private/borderBottom +0112001c=^attr-private/borderLeft +0112001d=^attr-private/borderRight +0112001e=^attr-private/borderTop +0112001f=^attr-private/buttonPanelSideLayout +01120020=^attr-private/calendarViewMode +01120021=^attr-private/checkMarkGravity +01120022=^attr-private/clickColor +01120023=^attr-private/closeItemLayout +01120024=^attr-private/colorListDivider +01120025=^attr-private/colorPopupBackground +01120026=^attr-private/colorProgressBackgroundNormal +01120027=^attr-private/colorSwitchThumbNormal +01120028=^attr-private/controllerType +01120029=^attr-private/dayHighlightColor +0112002a=^attr-private/daySelectorColor +0112002b=^attr-private/defaultQueryHint +0112002c=^attr-private/dialogCustomTitleDecorLayout +0112002d=^attr-private/dialogMode +0112002e=^attr-private/dialogTitleDecorLayout +0112002f=^attr-private/dialogTitleIconsDecorLayout +01120030=^attr-private/disableChildrenWhenDisabled +01120031=^attr-private/dotSize +01120032=^attr-private/drawableAlpha +01120033=^attr-private/dropdownListPreferredItemHeight +01120034=^attr-private/emulated +01120035=^attr-private/enableControlView +01120036=^attr-private/enableSubtitle +01120037=^attr-private/errorColor +01120038=^attr-private/errorMessageAboveBackground +01120039=^attr-private/errorMessageBackground +0112003a=^attr-private/expandActivityOverflowButtonDrawable +0112003b=^attr-private/externalRouteEnabledDrawable +0112003c=^attr-private/featureId +0112003d=^attr-private/findOnPageNextDrawable +0112003e=^attr-private/findOnPagePreviousDrawable +0112003f=^attr-private/floatingToolbarCloseDrawable +01120040=^attr-private/floatingToolbarDividerColor +01120041=^attr-private/floatingToolbarForegroundColor +01120042=^attr-private/floatingToolbarItemBackgroundBorderlessDrawable +01120043=^attr-private/floatingToolbarItemBackgroundDrawable +01120044=^attr-private/floatingToolbarOpenDrawable +01120045=^attr-private/floatingToolbarPopupBackgroundDrawable +01120046=^attr-private/foregroundInsidePadding +01120047=^attr-private/fragmentBreadCrumbsStyle +01120048=^attr-private/frameDuration +01120049=^attr-private/framesCount +0112004a=^attr-private/fromBottom +0112004b=^attr-private/fromLeft +0112004c=^attr-private/fromRight +0112004d=^attr-private/fromTop +0112004e=^attr-private/gestureOverlayViewStyle +0112004f=^attr-private/glowDot +01120050=^attr-private/hasRoundedCorners +01120051=^attr-private/headerLayout +01120052=^attr-private/headerRemoveIconIfEmpty +01120053=^attr-private/headerTextColor +01120054=^attr-private/hideWheelUntilFocused +01120055=^attr-private/horizontalProgressLayout +01120056=^attr-private/iconfactoryBadgeSize +01120057=^attr-private/iconfactoryIconSize +01120058=^attr-private/initialActivityCount +01120059=^attr-private/internalLayout +0112005a=^attr-private/internalMaxHeight +0112005b=^attr-private/internalMaxWidth +0112005c=^attr-private/internalMinHeight +0112005d=^attr-private/internalMinWidth +0112005e=^attr-private/interpolatorX +0112005f=^attr-private/interpolatorY +01120060=^attr-private/interpolatorZ +01120061=^attr-private/itemColor +01120062=^attr-private/itemLayout +01120063=^attr-private/keyboardViewStyle +01120064=^attr-private/layoutManager +01120065=^attr-private/layout_alwaysShow +01120066=^attr-private/layout_childType +01120067=^attr-private/layout_hasNestedScrollIndicator +01120068=^attr-private/layout_ignoreOffset +01120069=^attr-private/layout_maxHeight +0112006a=^attr-private/layout_removeBorders +0112006b=^attr-private/leftToRight +0112006c=^attr-private/legacyLayout +0112006d=^attr-private/lightRadius +0112006e=^attr-private/lightY +0112006f=^attr-private/lightZ +01120070=^attr-private/listItemLayout +01120071=^attr-private/listLayout +01120072=^attr-private/locale +01120073=^attr-private/lockPatternStyle +01120074=^attr-private/magnifierColorOverlay +01120075=^attr-private/magnifierElevation +01120076=^attr-private/magnifierHeight +01120077=^attr-private/magnifierHorizontalOffset +01120078=^attr-private/magnifierStyle +01120079=^attr-private/magnifierVerticalOffset +0112007a=^attr-private/magnifierWidth +0112007b=^attr-private/magnifierZoom +0112007c=^attr-private/majorWeightMax +0112007d=^attr-private/majorWeightMin +0112007e=^attr-private/maxCollapsedHeight +0112007f=^attr-private/maxCollapsedHeightSmall +01120080=^attr-private/maxFileSize +01120081=^attr-private/maxItems +01120082=^attr-private/minorWeightMax +01120083=^attr-private/minorWeightMin +01120084=^attr-private/monthTextAppearance +01120085=^attr-private/mountPoint +01120086=^attr-private/mtpReserve +01120087=^attr-private/multiChoiceItemLayout +01120088=^attr-private/navigationButtonStyle +01120089=^attr-private/needsDefaultBackgrounds +0112008a=^attr-private/notificationHeaderAppNameVisibility +0112008b=^attr-private/notificationHeaderIconSize +0112008c=^attr-private/notificationHeaderStyle +0112008d=^attr-private/notificationHeaderTextAppearance +0112008e=^attr-private/numDots +0112008f=^attr-private/opacityListDivider +01120090=^attr-private/paddingBottomNoButtons +01120091=^attr-private/paddingTopNoTitle +01120092=^attr-private/pageSpacing +01120093=^attr-private/panelMenuIsCompact +01120094=^attr-private/panelMenuListTheme +01120095=^attr-private/panelMenuListWidth +01120096=^attr-private/pathAdvancedPattern +01120097=^attr-private/pathColor +01120098=^attr-private/pointerIconAlias +01120099=^attr-private/pointerIconAllScroll +0112009a=^attr-private/pointerIconArrow +0112009b=^attr-private/pointerIconCell +0112009c=^attr-private/pointerIconContextMenu +0112009d=^attr-private/pointerIconCopy +0112009e=^attr-private/pointerIconCrosshair +0112009f=^attr-private/pointerIconGrab +011200a0=^attr-private/pointerIconGrabbing +011200a1=^attr-private/pointerIconHand +011200a2=^attr-private/pointerIconHelp +011200a3=^attr-private/pointerIconHorizontalDoubleArrow +011200a4=^attr-private/pointerIconNodrop +011200a5=^attr-private/pointerIconSpotAnchor +011200a6=^attr-private/pointerIconSpotHover +011200a7=^attr-private/pointerIconSpotTouch +011200a8=^attr-private/pointerIconText +011200a9=^attr-private/pointerIconTopLeftDiagonalDoubleArrow +011200aa=^attr-private/pointerIconTopRightDiagonalDoubleArrow +011200ab=^attr-private/pointerIconVerticalDoubleArrow +011200ac=^attr-private/pointerIconVerticalText +011200ad=^attr-private/pointerIconWait +011200ae=^attr-private/pointerIconZoomIn +011200af=^attr-private/pointerIconZoomOut +011200b0=^attr-private/popupPromptView +011200b1=^attr-private/position +011200b2=^attr-private/preferenceActivityStyle +011200b3=^attr-private/preferenceFragmentListStyle +011200b4=^attr-private/preferenceFragmentPaddingSide +011200b5=^attr-private/preferenceFrameLayoutStyle +011200b6=^attr-private/preferenceHeaderPanelStyle +011200b7=^attr-private/preferenceListStyle +011200b8=^attr-private/preferencePanelStyle +011200b9=^attr-private/preserveIconSpacing +011200ba=^attr-private/primary +011200bb=^attr-private/productId +011200bc=^attr-private/progressBarCornerRadius +011200bd=^attr-private/progressLayout +011200be=^attr-private/quickContactBadgeOverlay +011200bf=^attr-private/quickContactWindowSize +011200c0=^attr-private/regularColor +011200c1=^attr-private/removable +011200c2=^attr-private/removeBeforeMRelease +011200c3=^attr-private/request +011200c4=^attr-private/requestDetail +011200c5=^attr-private/resOutColor +011200c6=^attr-private/reverseLayout +011200c7=^attr-private/screenLayout +011200c8=^attr-private/scrollCaptureHint +011200c9=^attr-private/scrollIndicatorPaddingLeft +011200ca=^attr-private/scrollIndicatorPaddingRight +011200cb=^attr-private/searchDialogTheme +011200cc=^attr-private/searchResultListItemHeight +011200cd=^attr-private/searchWidgetCorpusItemBackground +011200ce=^attr-private/seekBarDialogPreferenceStyle +011200cf=^attr-private/seekBarPreferenceStyle +011200d0=^attr-private/selectionDivider +011200d1=^attr-private/selectionDividersDistance +011200d2=^attr-private/selectionScrollOffset +011200d3=^attr-private/showAtTop +011200d4=^attr-private/showRelative +011200d5=^attr-private/showSeekBarValue +011200d6=^attr-private/showTitle +011200d7=^attr-private/showWallpaper +011200d8=^attr-private/singleChoiceItemLayout +011200d9=^attr-private/spanCount +011200da=^attr-private/stackFromEnd +011200db=^attr-private/state_accessibility_focused +011200dc=^attr-private/storageDescription +011200dd=^attr-private/successColor +011200de=^attr-private/systemUserOnly +011200df=^attr-private/tabLayout +011200e0=^attr-private/textAppearanceAutoCorrectionSuggestion +011200e1=^attr-private/textAppearanceEasyCorrectSuggestion +011200e2=^attr-private/textAppearanceMisspelledSuggestion +011200e3=^attr-private/textColorPrimaryActivated +011200e4=^attr-private/textColorSearchUrl +011200e5=^attr-private/textColorSecondaryActivated +011200e6=^attr-private/textEditSuggestionContainerLayout +011200e7=^attr-private/textEditSuggestionHighlightStyle +011200e8=^attr-private/textUnderlineColor +011200e9=^attr-private/textUnderlineThickness +011200ea=^attr-private/thumbDrawable +011200eb=^attr-private/thumbMinHeight +011200ec=^attr-private/thumbMinWidth +011200ed=^attr-private/toBottom +011200ee=^attr-private/toLeft +011200ef=^attr-private/toRight +011200f0=^attr-private/toTop +011200f1=^attr-private/toastFrameBackground +011200f2=^attr-private/tooltipBackgroundColor +011200f3=^attr-private/tooltipForegroundColor +011200f4=^attr-private/tooltipFrameBackground +011200f5=^attr-private/trackDrawable +011200f6=^attr-private/unlockProfile +011200f7=^attr-private/useDisabledAlpha +011200f8=^attr-private/vendorId +011200f9=^attr-private/viewType +011200fa=^attr-private/virtualButtonPressedDrawable +011200fb=^attr-private/windowActionBarFullscreenDecorLayout +011200fc=^attr-private/windowFixedHeightMajor +011200fd=^attr-private/windowFixedHeightMinor +011200fe=^attr-private/windowFixedWidthMajor +011200ff=^attr-private/windowFixedWidthMinor +01120100=^attr-private/windowOutsetBottom +01120101=^attr-private/yearListItemActivatedTextAppearance +01130000=fraction/config_autoBrightnessAdjustmentMaxGamma +01130001=fraction/config_dimBehindFadeDuration +01130002=fraction/config_maximumScreenDimRatio +01130003=fraction/config_prescaleAbsoluteVolume_index1 +01130004=fraction/config_prescaleAbsoluteVolume_index2 +01130005=fraction/config_prescaleAbsoluteVolume_index3 +01130006=fraction/config_screenAutoBrightnessDozeScaleFactor +01130007=fraction/docked_stack_divider_fixed_ratio +01130008=fraction/input_extract_action_margin_bottom +01130009=fraction/input_extract_layout_height +0113000a=fraction/input_extract_layout_padding_left +0113000b=fraction/input_extract_layout_padding_left_no_action +0113000c=fraction/input_extract_layout_padding_right +0113000d=fraction/input_extract_text_margin_bottom +0113000e=fraction/thumbnail_fullscreen_scale +0113000f=plurals/abbrev_in_num_minutes +01130010=plurals/abbrev_in_num_hours +01130011=plurals/abbrev_in_num_days +01130012=plurals/duration_seconds +01130013=plurals/duration_minutes +01130014=plurals/duration_hours +01130015=plurals/wifi_available +01130016=plurals/wifi_available_detailed +01130017=plurals/matches_found +01130018=plurals/restr_pin_countdown +01140000=menu/language_selection_list +01140001=menu/webview_copy +01140002=menu/webview_find +01140003=plurals/last_num_days +01140004=plurals/duration_seconds +01140005=plurals/duration_minutes +01140006=plurals/duration_hours +01140007=plurals/duration_minutes_shortest +01140008=plurals/duration_hours_shortest +01140009=plurals/duration_days_shortest +0114000a=plurals/duration_years_shortest +0114000b=plurals/duration_minutes_shortest_future +0114000c=plurals/duration_hours_shortest_future +0114000d=plurals/duration_days_shortest_future +0114000e=plurals/duration_years_shortest_future +0114000f=plurals/duration_minutes_relative +01140010=plurals/duration_hours_relative +01140011=plurals/duration_days_relative +01140012=plurals/duration_years_relative +01140013=plurals/duration_minutes_relative_future +01140014=plurals/duration_hours_relative_future +01140015=plurals/duration_days_relative_future +01140016=plurals/duration_years_relative_future +01140017=plurals/wifi_available +01140018=plurals/wifi_available_detailed +01140019=plurals/matches_found +0114001a=plurals/restr_pin_countdown +0114001b=plurals/zen_mode_duration_minutes_summary +0114001c=plurals/zen_mode_duration_minutes_summary_short +0114001d=plurals/zen_mode_duration_hours_summary +0114001e=plurals/zen_mode_duration_hours_summary_short +0114001f=plurals/zen_mode_duration_minutes +01140020=plurals/zen_mode_duration_minutes_short +01140021=plurals/zen_mode_duration_hours +01140022=plurals/zen_mode_duration_hours_short +01140023=plurals/selected_count +01150000=plurals/autofill_picker_some_suggestions +01150001=plurals/bugreport_countdown +01150002=plurals/duration_days_relative +01150003=plurals/duration_days_relative_future +01150004=plurals/duration_days_shortest +01150005=plurals/duration_days_shortest_future +01150006=plurals/duration_hours_relative +01150007=plurals/duration_hours_relative_future +01150008=plurals/duration_hours_shortest +01150009=plurals/duration_hours_shortest_future +0115000a=plurals/duration_minutes_relative +0115000b=plurals/duration_minutes_relative_future +0115000c=plurals/duration_minutes_shortest +0115000d=plurals/duration_minutes_shortest_future +0115000e=plurals/duration_years_relative +0115000f=plurals/duration_years_relative_future +01150010=plurals/duration_years_shortest +01150011=plurals/duration_years_shortest_future +01150012=plurals/file_count +01150013=plurals/kg_too_many_failed_attempts_countdown +01150014=plurals/last_num_days +01150015=plurals/matches_found +01150016=plurals/pinpuk_attempts +01150017=plurals/restr_pin_countdown +01150018=plurals/selected_count +01150019=plurals/ssl_ca_cert_warning +0115001a=plurals/zen_mode_duration_hours +0115001b=plurals/zen_mode_duration_hours_short +0115001c=plurals/zen_mode_duration_hours_summary +0115001d=plurals/zen_mode_duration_hours_summary_short +0115001e=plurals/zen_mode_duration_minutes +0115001f=plurals/zen_mode_duration_minutes_short +01150020=plurals/zen_mode_duration_minutes_summary +01150021=plurals/zen_mode_duration_minutes_summary_short +01150022=plurals/zen_mode_duration_minutes_summary +01150023=plurals/zen_mode_duration_minutes_summary_short +01160000=^attr-private/isLightTheme +01160001=^attr-private/textColorPrimaryActivated +01160002=^attr-private/textColorSecondaryActivated +01160003=^attr-private/textColorSearchUrl +01160004=^attr-private/searchWidgetCorpusItemBackground +01160005=^attr-private/textAppearanceEasyCorrectSuggestion +01160006=^attr-private/textAppearanceMisspelledSuggestion +01160007=^attr-private/textAppearanceAutoCorrectionSuggestion +01160008=^attr-private/textUnderlineColor +01160009=^attr-private/textUnderlineThickness +0116000a=^attr-private/errorMessageBackground +0116000b=^attr-private/errorMessageAboveBackground +0116000c=^attr-private/searchResultListItemHeight +0116000d=^attr-private/dropdownListPreferredItemHeight +0116000e=^attr-private/windowActionBarFullscreenDecorLayout +0116000f=^attr-private/floatingToolbarCloseDrawable +01160010=^attr-private/floatingToolbarForegroundColor +01160011=^attr-private/floatingToolbarItemBackgroundBorderlessDrawable +01160012=^attr-private/floatingToolbarItemBackgroundDrawable +01160013=^attr-private/floatingToolbarOpenDrawable +01160014=^attr-private/floatingToolbarPopupBackgroundDrawable +01160015=^attr-private/alertDialogButtonGroupStyle +01160016=^attr-private/alertDialogCenterButtons +01160017=^attr-private/panelMenuIsCompact +01160018=^attr-private/panelMenuListWidth +01160019=^attr-private/panelMenuListTheme +0116001a=^attr-private/gestureOverlayViewStyle +0116001b=^attr-private/quickContactBadgeOverlay +0116001c=^attr-private/fragmentBreadCrumbsStyle +0116001d=^attr-private/activityChooserViewStyle +0116001e=^attr-private/actionModePopupWindowStyle +0116001f=^attr-private/preferenceActivityStyle +01160020=^attr-private/seekBarDialogPreferenceStyle +01160021=^attr-private/preferencePanelStyle +01160022=^attr-private/preferenceHeaderPanelStyle +01160023=^attr-private/preferenceListStyle +01160024=^attr-private/preferenceFragmentListStyle +01160025=^attr-private/preferenceFragmentPaddingSide +01160026=^attr-private/seekBarPreferenceStyle +01160027=^attr-private/textEditSuggestionContainerLayout +01160028=^attr-private/textEditSuggestionHighlightStyle +01160029=^attr-private/dialogTitleIconsDecorLayout +0116002a=^attr-private/dialogCustomTitleDecorLayout +0116002b=^attr-private/dialogTitleDecorLayout +0116002c=^attr-private/toastFrameBackground +0116002d=^attr-private/searchDialogTheme +0116002e=^attr-private/preferenceFrameLayoutStyle +0116002f=^attr-private/accessibilityFocusedDrawable +01160030=^attr-private/findOnPageNextDrawable +01160031=^attr-private/findOnPagePreviousDrawable +01160032=^attr-private/colorSwitchThumbNormal +01160033=^attr-private/lightY +01160034=^attr-private/lightZ +01160035=^attr-private/lightRadius +01160036=^attr-private/windowFixedWidthMajor +01160037=^attr-private/windowFixedHeightMinor +01160038=^attr-private/windowFixedWidthMinor +01160039=^attr-private/windowFixedHeightMajor +0116003a=^attr-private/windowOutsetBottom +0116003b=^attr-private/buttonPanelSideLayout +0116003c=^attr-private/listLayout +0116003d=^attr-private/multiChoiceItemLayout +0116003e=^attr-private/singleChoiceItemLayout +0116003f=^attr-private/listItemLayout +01160040=^attr-private/progressLayout +01160041=^attr-private/horizontalProgressLayout +01160042=^attr-private/showTitle +01160043=^attr-private/needsDefaultBackgrounds +01160044=^attr-private/controllerType +01160045=^attr-private/allowStacking +01160046=^attr-private/activityOpenRemoteViewsEnterAnimation +01160047=^attr-private/foregroundInsidePadding +01160048=^attr-private/paddingBottomNoButtons +01160049=^attr-private/paddingTopNoTitle +0116004a=^attr-private/checkMarkGravity +0116004b=^attr-private/thumbDrawable +0116004c=^attr-private/thumbMinWidth +0116004d=^attr-private/thumbMinHeight +0116004e=^attr-private/trackDrawable +0116004f=^attr-private/backgroundRight +01160050=^attr-private/backgroundLeft +01160051=^attr-private/position +01160052=^attr-private/drawableAlpha +01160053=^attr-private/borderTop +01160054=^attr-private/borderBottom +01160055=^attr-private/borderLeft +01160056=^attr-private/borderRight +01160057=^attr-private/layout_removeBorders +01160058=^attr-private/preserveIconSpacing +01160059=^attr-private/maxItems +0116005a=^attr-private/useDisabledAlpha +0116005b=^attr-private/resOutColor +0116005c=^attr-private/clickColor +0116005d=^attr-private/tabLayout +0116005e=^attr-private/popupPromptView +0116005f=^attr-private/disableChildrenWhenDisabled +01160060=^attr-private/internalLayout +01160061=^attr-private/headerTextColor +01160062=^attr-private/yearListItemActivatedTextAppearance +01160063=^attr-private/dialogMode +01160064=^attr-private/quickContactWindowSize +01160065=^attr-private/majorWeightMin +01160066=^attr-private/minorWeightMin +01160067=^attr-private/majorWeightMax +01160068=^attr-private/minorWeightMax +01160069=^attr-private/monthTextAppearance +0116006a=^attr-private/daySelectorColor +0116006b=^attr-private/dayHighlightColor +0116006c=^attr-private/calendarViewMode +0116006d=^attr-private/selectionDivider +0116006e=^attr-private/selectionDividerHeight +0116006f=^attr-private/selectionDividersDistance +01160070=^attr-private/internalMinHeight +01160071=^attr-private/internalMaxHeight +01160072=^attr-private/internalMinWidth +01160073=^attr-private/internalMaxWidth +01160074=^attr-private/virtualButtonPressedDrawable +01160075=^attr-private/hideWheelUntilFocused +01160076=^attr-private/legacyLayout +01160077=^attr-private/frameDuration +01160078=^attr-private/framesCount +01160079=^attr-private/opticalInsetLeft +0116007a=^attr-private/opticalInsetTop +0116007b=^attr-private/opticalInsetRight +0116007c=^attr-private/opticalInsetBottom +0116007d=^attr-private/interpolatorX +0116007e=^attr-private/interpolatorY +0116007f=^attr-private/interpolatorZ +01160080=^attr-private/removeBeforeMRelease +01160081=^attr-private/state_accessibility_focused +01160082=^attr-private/initialActivityCount +01160083=^attr-private/expandActivityOverflowButtonDrawable +01160084=^attr-private/keyboardViewStyle +01160085=^attr-private/aspect +01160086=^attr-private/pathColor +01160087=^attr-private/regularColor +01160088=^attr-private/errorColor +01160089=^attr-private/successColor +0116008a=^attr-private/closeItemLayout +0116008b=^attr-private/defaultQueryHint +0116008c=^attr-private/pointerIconArrow +0116008d=^attr-private/pointerIconSpotHover +0116008e=^attr-private/pointerIconSpotTouch +0116008f=^attr-private/pointerIconSpotAnchor +01160090=^attr-private/pointerIconContextMenu +01160091=^attr-private/pointerIconHand +01160092=^attr-private/pointerIconHelp +01160093=^attr-private/pointerIconWait +01160094=^attr-private/pointerIconCell +01160095=^attr-private/pointerIconCrosshair +01160096=^attr-private/pointerIconText +01160097=^attr-private/pointerIconVerticalText +01160098=^attr-private/pointerIconAlias +01160099=^attr-private/pointerIconCopy +0116009a=^attr-private/pointerIconNodrop +0116009b=^attr-private/pointerIconAllScroll +0116009c=^attr-private/pointerIconHorizontalDoubleArrow +0116009d=^attr-private/pointerIconVerticalDoubleArrow +0116009e=^attr-private/pointerIconTopRightDiagonalDoubleArrow +0116009f=^attr-private/pointerIconTopLeftDiagonalDoubleArrow +011600a0=^attr-private/pointerIconZoomIn +011600a1=^attr-private/pointerIconZoomOut +011600a2=^attr-private/pointerIconGrab +011600a3=^attr-private/pointerIconGrabbing +011600a4=^attr-private/mountPoint +011600a5=^attr-private/storageDescription +011600a6=^attr-private/primary +011600a7=^attr-private/removable +011600a8=^attr-private/emulated +011600a9=^attr-private/mtpReserve +011600aa=^attr-private/allowMassStorage +011600ab=^attr-private/maxFileSize +011600ac=^attr-private/screenLayout +011600ad=^attr-private/headerLayout +011600ae=^attr-private/headerRemoveIconIfEmpty +011600af=^attr-private/locale +011600b0=^attr-private/vendorId +011600b1=^attr-private/productId +011600b2=^attr-private/externalRouteEnabledDrawable +011600b3=^attr-private/pageSpacing +011600b4=^attr-private/scrollIndicatorPaddingLeft +011600b5=^attr-private/scrollIndicatorPaddingRight +011600b6=^attr-private/dotSize +011600b7=^attr-private/numDots +011600b8=^attr-private/glowDot +011600b9=^attr-private/leftToRight +011600ba=^attr-private/layout_childType +011600bb=^attr-private/itemLayout +011600bc=^attr-private/itemColor +011600bd=^attr-private/navigationButtonStyle +011600be=^attr-private/maxCollapsedHeight +011600bf=^attr-private/maxCollapsedHeightSmall +011600c0=^attr-private/showRelative +011600c1=^attr-private/layout_alwaysShow +011600c2=^attr-private/layout_ignoreOffset +011600c3=^attr-private/layout_hasNestedScrollIndicator +011600c4=^attr-private/cantSaveState +011600c5=^attr-private/systemUserOnly +011600c6=^attr-private/alwaysFocusable +011600c7=^attr-private/minimalWidth +011600c8=^attr-private/minimalHeight +01170000=xml/apns +01170001=xml/audio_assets +01170002=xml/autofill_compat_accessibility_service +01170003=xml/autotext +01170004=xml/bookmarks +01170005=xml/color_extraction +01170006=xml/config_user_types +01170007=xml/config_webview_packages +01170008=xml/default_zen_mode_config +01170009=xml/global_keys +0117000a=xml/kg_password_kbd_numeric +0117000b=xml/password_kbd_extension +0117000c=xml/password_kbd_numeric +0117000d=xml/password_kbd_popup_template +0117000e=xml/password_kbd_qwerty +0117000f=xml/password_kbd_qwerty_shifted +01170010=xml/password_kbd_symbols +01170011=xml/password_kbd_symbols_shift +01170012=xml/power_profile +01170013=xml/power_profile_test +01170014=xml/sms_7bit_translation_table +01170015=xml/sms_short_codes +01170016=xml/storage_list diff --git a/jadx-core/src/main/resources/resources.arsc b/jadx-core/src/main/resources/resources.arsc deleted file mode 100644 index ae33d6327..000000000 Binary files a/jadx-core/src/main/resources/resources.arsc and /dev/null differ