merger.xml 430 KB
Newer Older
冷佳娟's avatar
冷佳娟 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="23.0.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/res"/></dataSet><dataSet config="23.0.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res"/></dataSet><dataSet config="23.0.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res"/></dataSet><dataSet config="0.8.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/res"/></dataSet><dataSet config="0.8.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/res"/></dataSet><dataSet config="0.8.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/res"/></dataSet><dataSet config="r174650$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/res"/></dataSet><dataSet config="0.8.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res"/></dataSet><dataSet config="0.8.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/res"/></dataSet><dataSet config="0.20.1$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res"/></dataSet><dataSet config="debug$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/bundles/debug/res"/></dataSet><dataSet config="main$Generated" generated="true"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/src/androidTest/res"/><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/generated/res/rs/androidTest/debug"/><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/generated/res/resValues/androidTest/debug"/></dataSet><dataSet config="23.0.1" from-dependency="true" generated-set="23.0.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/res"/></dataSet><dataSet config="23.0.1" from-dependency="true" generated-set="23.0.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res"><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml" qualifiers="v17"><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
        <item name="android:layout_marginEnd">8dp</item>
    </style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
        <item name="android:layout_gravity">center_vertical|start</item>
        <item name="android:paddingEnd">8dp</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
        <item name="android:layout_toStartOf">@android:id/icon2</item>
        <item name="android:layout_toEndOf">@android:id/icon1</item>
    </style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
        <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
    </style><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
        <item name="android:textAlignment">viewStart</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
        <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
        <item name="android:paddingEnd">4dp</item>
    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
        <item name="android:layout_alignParentStart">true</item>
        <item name="android:textAlignment">viewStart</item>
    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
        <item name="android:paddingEnd">16dp</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
        <item name="android:layout_toStartOf">@id/edit_query</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
        <item name="android:layout_alignParentStart">true</item>
    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
        <item name="android:layout_marginStart">16dp</item>
    </style><style name="RtlOverlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow">
        <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
        <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
        <item name="android:layout_alignParentEnd">true</item>
    </style></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml" qualifiers="mr-rIN"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करा"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी स्‍पष्‍ट करा"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"शोध"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सह सामायिक करा"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सर्व पहा"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एक अ‍ॅप निवडा"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"वर नेव्‍हिगेट करा"</string><string msgid="7723749260725869598" name="abc_search_hint">"शोधा…"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण झाले"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"शोध क्वेरी"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"यांच्यासह सामायिक करा"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"व्हॉइस शोध"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक पर्याय"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml" qualifiers="ne-rNP"><string msgid="893419373245838918" name="abc_searchview_description_voice">"भ्वाइस खोजी"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"जिज्ञासा पेस गर्नुहोस्"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"प्रश्‍न हटाउनुहोस्"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"जिज्ञासाको खोज गर्नुहोस्"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"साझेदारी गर्नुहोस्..."</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सँग साझेदारी गर्नुहोस्"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"सम्पन्न भयो"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोज्नुहोस्..."</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"खोज्नुहोस्"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"गृह खोज्नुहोस्"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"९९९+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"माथि खोज्नुहोस्"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त पार्नुहोस्"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml" qualifiers="v21"><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
    </style><style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
        
        <item name="actionBarSize">?android:attr/actionBarSize</item>
        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>

        
        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>

        
        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
        <item name="dividerVertical">?android:attr/dividerVertical</item>
        <item name="editTextBackground">?android:attr/editTextBackground</item>
        <item name="editTextColor">?android:attr/editTextColor</item>
        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>

        
        <item name="autoCompleteTextViewStyle">?android:attr/autoCompleteTextViewStyle</item>
        <item name="buttonStyle">?android:attr/buttonStyle</item>
        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
        <item name="editTextStyle">?android:attr/editTextStyle</item>
        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
        <item name="spinnerStyle">?android:attr/spinnerStyle</item>

        
        <item name="android:colorPrimary">?attr/colorPrimary</item>
        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
        <item name="android:colorAccent">?attr/colorAccent</item>
        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
    </style><style name="Platform.AppCompat.Light" parent="android:Theme.Material.Light">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowActionBar">false</item>

        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
    </style><style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/><style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
    </style><style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
    </style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
    </style><style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/><style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
    </style><style name="Platform.AppCompat" parent="android:Theme.Material">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowActionBar">false</item>

        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
    </style><style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/><style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/><style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
        
        <item name="actionBarSize">?android:attr/actionBarSize</item>
        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>

        
        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>

        
        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
        <item name="dividerVertical">?android:attr/dividerVertical</item>
        <item name="editTextBackground">?android:attr/editTextBackground</item>
        <item name="editTextColor">?android:attr/editTextColor</item>
        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>

        
        <item name="autoCompleteTextViewStyle">?android:attr/autoCompleteTextViewStyle</item>
        <item name="buttonStyle">?android:attr/buttonStyle</item>
        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
        <item name="editTextStyle">?android:attr/editTextStyle</item>
        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
        <item name="spinnerStyle">?android:attr/spinnerStyle</item>

        
        <item name="android:colorPrimary">?attr/colorPrimary</item>
        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
        <item name="android:colorAccent">?attr/colorAccent</item>
        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
    </style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/><style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
    </style><style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/><style name="Base.Widget.AppCompat.ListView.Menu"/><style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
    </style><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
    </style><style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
    </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
    </style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/><style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
    </style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
    </style><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/><style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/><style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/><style name="Platform.ThemeOverlay.AppCompat.Dark"/><style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/><style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog">
        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu">
    </style><style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
    </style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
    </style><style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/><style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
    </style><style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog">
        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
    </style><style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
    </style><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/><style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/><style name="Platform.ThemeOverlay.AppCompat" parent="">
        
        <item name="android:colorPrimary">?attr/colorPrimary</item>
        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
        <item name="android:colorAccent">?attr/colorAccent</item>
        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
    </style><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/><style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/><style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
    </style><style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/><style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
    </style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
        <item name="android:dropDownHorizontalOffset">-4dip</item>
        <item name="android:overlapAnchor">true</item>
    </style><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/><style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/><style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
    </style><style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/><style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
        <item name="android:minWidth">56dp</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
    </style><style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
    </style><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
    </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
    </style><style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/><style name="Platform.ThemeOverlay.AppCompat.Light"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
    </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
        <item name="android:dropDownHorizontalOffset">-4dip</item>
        <item name="android:overlapAnchor">true</item>
    </style><style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText"/><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
    </style><style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml" qualifiers="mk-rMK"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пребарај барање"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Движи се нагоре"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избери апликација"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пребарај"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Сподели со"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пребарување…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовно пребарување"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Собери"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Поднеси барање"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Види ги сите"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Повеќе опции"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Исчисти барање"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml" qualifiers="gl-rES"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string></file><file name="abc_slide_in_bottom" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_out_top" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml" qualifiers="" type="anim"/><file name="abc_popup_enter" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml" qualifiers="" type="anim"/><file name="abc_fade_out" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml" qualifiers="" type="anim"/><file name="abc_slide_in_top" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml" qualifiers="" type="anim"/><file name="abc_grow_fade_in_from_bottom" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_shrink_fade_out_from_bottom" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_out_bottom" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml" qualifiers="" type="anim"/><file name="abc_fade_in" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml" qualifiers="" type="anim"/><file name="abc_popup_exit" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml" qualifiers="" type="anim"/><file name="abc_control_background_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml" qualifiers="v23" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml" qualifiers="ro"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Căutați"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Afișați-le pe toate"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Interogare de căutare"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"˃999"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminat"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Restrângeți"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ștergeți interogarea"</string><string msgid="7723749260725869598" name="abc_search_hint">"Căutați…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Trimiteți la"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Căutare vocală"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Trimiteți interogarea"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Trimiteți la %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigați în sus"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml" qualifiers="w500dp-v13"><integer name="abc_max_action_buttons">4</integer></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml" qualifiers="v18"><dimen name="abc_switch_padding">0px</dimen></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml" qualifiers="sq-rAL"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shpërnda publikisht me %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dërgo pyetjen"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Kërkim me zë"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Shpalos"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"U krye!"</string><string msgid="7723749260725869598" name="abc_search_hint">"Kërko..."</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsione të tjera"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kërko pyetjen"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ngjitu lart"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Shikoji të gjitha"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Pastro pyetjen"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Kërko"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shpërnda publikisht me"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml" qualifiers="v11"><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Base.V11.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
    </style><style name="Base.TextAppearance.AppCompat.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Platform.V11.AppCompat.Light" parent="android:Theme.Holo.Light">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowActionBar">false</item>

        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>

        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>

        
        <item name="android:colorForeground">@color/foreground_material_light</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
        <item name="android:colorBackground">@color/background_material_light</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
        <item name="android:backgroundDimAmount">0.6</item>
        <item name="android:windowBackground">@color/background_material_light</item>

        
        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorHint">@color/hint_foreground_material_light</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
        <item name="android:textColorLink">?attr/colorAccent</item>
        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>

        
        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>

        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>

        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
    </style><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Base.TextAppearance.AppCompat.Title.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Base.V11.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
    </style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog"/><style name="Base.TextAppearance.AppCompat.Large.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Platform.AppCompat" parent="Platform.V11.AppCompat"/><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/><style name="Base.TextAppearance.AppCompat.Small.Inverse">
        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
    </style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
    </style><style name="Platform.V11.AppCompat" parent="android:Theme.Holo">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowActionBar">false</item>

        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>

        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>

        
        <item name="android:colorForeground">@color/foreground_material_dark</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
        <item name="android:colorBackground">@color/background_material_dark</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
        <item name="android:backgroundDimAmount">0.6</item>
        <item name="android:windowBackground">@color/background_material_dark</item>

        
        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorHint">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
        <item name="android:textColorLink">?attr/colorAccent</item>
        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>

        
        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>

        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>

        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
    </style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
    </style><style name="Platform.AppCompat.Light" parent="Platform.V11.AppCompat.Light"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml" qualifiers="ru"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Поисковый запрос"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Отправить запрос"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Открыть доступ пользователю %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="7723749260725869598" name="abc_search_hint">"Поиск"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на главный экран"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Показать все"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовой поиск"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Открыть доступ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбрать приложение"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Поиск"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Удалить запрос"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вверх"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свернуть"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Другие параметры"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml" qualifiers="tl"><string msgid="7723749260725869598" name="abc_search_hint">"Maghanap…"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"I-collapse"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Ibahagi sa/kay %s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tapos na"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Mag-navigate patungo sa home"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pumili ng isang app"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Mag-navigate pataas"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Isumite ang query"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Maghanap"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"I-clear ang query"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Higit pang mga opsyon"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query sa paghahanap"</string></file><file name="abc_color_highlight_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml" qualifiers="v23" type="color"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml" qualifiers="hy-rAM"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Տարածել"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ուղղվել տուն"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Կատարված է"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Որոնել"</string><string msgid="7723749260725869598" name="abc_search_hint">"Որոնում..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ուղղվել վերև"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ընտրել ծրագիր"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Տարածել ըստ %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"選擇分享對象"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽首頁"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml" qualifiers="te-rIN"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ప్రశ్నను క్లియర్ చేయి"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"వీరితో భాగస్వామ్యం చేయి"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేయండి"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"అనువర్తనాన్ని ఎంచుకోండి"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"కుదించండి"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"శోధించు"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sతో భాగస్వామ్యం చేయి"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"పూర్తయింది"</string><string msgid="7723749260725869598" name="abc_search_hint">"శోధించు..."</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"హోమ్‌కు నావిగేట్ చేయండి"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పించు"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ప్రశ్న శోధించండి"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml" qualifiers="w600dp-v13"><integer name="abc_max_action_buttons">5</integer><dimen name="abc_search_view_text_min_width">192dip</dimen></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml" qualifiers="my-rMM"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s ၊ %2$s ၊ %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ပြီးဆုံးပါပြီ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"အားလုံးကို ကြည့်ရန်"</string><string msgid="7723749260725869598" name="abc_search_hint">"ရှာဖွေပါ..."</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"အပေါ်သို့သွားရန်"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s၊ %2$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ကို မျှဝေပါရန်"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ပိုမိုရွေးချယ်စရာများ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ရှာစရာ အချက်အလက်နေရာ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"မျှဝေဖို့ ရွေးပါ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ရှာဖွေရန်"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"အသံဖြင့် ရှာဖွေခြင်း"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ခေါက်ရန်"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"၉၉၉+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml" qualifiers="ta-rIN"><string msgid="4076576682505996667" name="abc_action_mode_done">"முடிந்தது"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"தேடல் வினவல்"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"மேலே வழிசெலுத்து"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s உடன் பகிர்"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"இதனுடன் பகிர்"</string><string msgid="7723749260725869598" name="abc_search_hint">"தேடு..."</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"முகப்பிற்கு வழிசெலுத்து"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"பயன்பாட்டைத் தேர்வுசெய்க"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"வினவலை அழி"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பி"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"குரல் தேடல்"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"தேடு"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"எல்லாம் காட்டு"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"சுருக்கு"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml" qualifiers="it"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml" qualifiers="ca"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml" qualifiers="eu-rES"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string><string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml" qualifiers="cs"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s – %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml" qualifiers="az-rAZ"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Evə get"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daha çox seçim"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查询"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"转到上一层级"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多选项"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"语音搜索"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收起"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"转到主屏幕"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享方式"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜索"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"选择应用"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜索查询"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查询"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"通过%s分享"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜索…"</string></file><file name="abc_btn_default_mtrl_shape" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml" qualifiers="" type="drawable"/><file name="abc_btn_radio_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml" qualifiers="" type="drawable"/><file name="abc_textfield_search_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_dialog_material_background_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml" qualifiers="" type="drawable"/><file name="abc_text_cursor_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml" qualifiers="" type="drawable"/><file name="abc_cab_background_top_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_tab_indicator_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml" qualifiers="" type="drawable"/><file name="abc_cab_background_internal_bg" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_btn_check_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_borderless_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_colored_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_full_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml" qualifiers="" type="drawable"/><file name="abc_switch_thumb_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_spinner_textfield_background_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml" qualifiers="" type="drawable"/><file name="abc_dialog_material_background_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml" qualifiers="" type="drawable"/><file name="abc_edit_text_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml" qualifiers="in"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string><string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml" qualifiers="ja"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s、%2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string><string msgid="7723749260725869598" name="abc_search_hint">"検索…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"折りたたむ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sと共有"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s、%2$s、%3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml" qualifiers="el"><string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string><string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml" qualifiers="lv"><string msgid="7723749260725869598" name="abc_search_hint">"Meklējiet…"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sakļaut"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kopīgot ar %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml" qualifiers="da"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml" qualifiers="kk-rKZ"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дайын"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s бөлісу"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string><string msgid="7723749260725869598" name="abc_search_hint">"Іздеу…"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Тасалау"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml" qualifiers="bn-rBD"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান চয়ন করুন"</string><string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে ভাগ করুন"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে ভাগ করুন"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string></file><file name="abc_action_bar_view_list_nav_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_checkbox" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view_list_item" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml" qualifiers="" type="layout"/><file name="notification_template_big_media" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml" qualifiers="" type="layout"/><file name="abc_screen_content_include" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml" qualifiers="" type="layout"/><file name="abc_select_dialog_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_action_bar_title_item" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml" qualifiers="" type="layout"/><file name="abc_screen_toolbar" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml" qualifiers="" type="layout"/><file name="abc_dialog_title_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml" qualifiers="" type="layout"/><file name="abc_search_view" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml" qualifiers="" type="layout"/><file name="abc_search_dropdown_item_icons_2line" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml" qualifiers="" type="layout"/><file name="abc_action_menu_item_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_action_bar_up_container" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml" qualifiers="" type="layout"/><file name="notification_media_cancel_action" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml" qualifiers="" type="layout"/><file name="abc_action_menu_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml" qualifiers="" type="layout"/><file name="notification_template_lines" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml" qualifiers="" type="layout"/><file name="notification_template_part_time" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_radio" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml" qualifiers="" type="layout"/><file name="abc_screen_simple_overlay_action_mode" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml" qualifiers="" type="layout"/><file name="abc_popup_menu_item_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml" qualifiers="" type="layout"/><file name="select_dialog_singlechoice_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml" qualifiers="" type="layout"/><file name="select_dialog_item_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml" qualifiers="" type="layout"/><file name="support_simple_spinner_dropdown_item" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml" qualifiers="" type="layout"/><file name="notification_media_action" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml" qualifiers="" type="layout"/><file name="notification_template_media" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_action_mode_bar" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml" qualifiers="" type="layout"/><file name="abc_action_mode_close_item_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_icon" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml" qualifiers="" type="layout"/><file name="abc_expanded_menu_layout" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml" qualifiers="" type="layout"/><file name="notification_template_big_media_narrow" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml" qualifiers="" type="layout"/><file name="notification_template_part_chronometer" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml" qualifiers="" type="layout"/><file name="abc_screen_simple" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml" qualifiers="" type="layout"/><file name="select_dialog_multichoice_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml" qualifiers="" type="layout"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml" qualifiers="en-rIN"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999 +"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"顯示全部"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s (%2$s):%3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享對象"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽主頁"</string></file><file name="abc_secondary_text_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml" qualifiers="" type="color"/><file name="abc_background_cache_hint_selector_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml" qualifiers="" type="color"/><file name="switch_thumb_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml" qualifiers="" type="color"/><file name="switch_thumb_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_search_url_text" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml" qualifiers="" type="color"/><file name="abc_secondary_text_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_background_cache_hint_selector_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml" qualifiers="" type="color"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml" qualifiers="am"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml" qualifiers="land"><dimen name="abc_action_bar_progress_bar_size">32dp</dimen><dimen name="abc_text_size_title_material_toolbar">14dp</dimen><bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool><dimen name="abc_action_bar_default_height_material">48dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen><bool name="abc_action_bar_embed_tabs_pre_jb">true</bool></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml" qualifiers="sw600dp-v13"><dimen name="abc_action_bar_default_padding_start_material">8dp</dimen><dimen name="abc_config_prefDialogWidth">580dp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><dimen name="abc_action_bar_default_padding_end_material">8dp</dimen><dimen name="abc_action_bar_default_height_material">64dp</dimen><integer name="abc_max_action_buttons">5</integer><dimen name="abc_action_bar_content_inset_material">24dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml" qualifiers=""><style name="Base.TextAppearance.AppCompat.Small.Inverse">
        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
        <item name="android:layout_marginRight">8dp</item>
    </style><style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><dimen name="abc_text_size_button_material">14sp</dimen><bool name="abc_config_closeDialogWhenTouchOutside">true</bool><dimen name="abc_action_bar_default_height_material">56dp</dimen><attr format="reference" name="drawerArrowStyle"/><color name="abc_search_url_text_pressed">@android:color/black</color><declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/></declare-styleable><dimen name="abc_button_padding_horizontal_material">8dp</dimen><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
        <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
        <item name="android:background">?attr/controlBackground</item>
    </style><color name="material_blue_grey_900">#ff263238</color><dimen name="abc_control_corner_material">2dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/><string name="abc_activity_chooser_view_see_all">See all</string><dimen name="abc_dialog_list_padding_vertical_material">8dp</dimen><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
        <item name="android:layout_marginLeft">16dp</item>
    </style><style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
    </style><style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
    </style><style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
    </style><color name="secondary_text_default_material_light">#8a000000</color><style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
        <item name="color">?attr/colorControlNormal</item>
    </style><string name="abc_shareactionprovider_share_with_application">Share with %s</string><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><dimen name="abc_action_button_min_height_material">48dp</dimen><style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/><style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/><color name="ripple_material_light">#1f000000</color><string name="abc_activitychooserview_choose_application">Choose an app</string><style name="Base.TextAppearance.AppCompat.Large.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><integer name="status_bar_notification_info_maxnum">999</integer><style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
    </style><style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
    </style><color name="secondary_text_disabled_material_dark">#36ffffff</color><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
    </style><style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/><style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/><declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction"><flag name="never" value="0"/><flag name="ifRoom" value="1"/><flag name="always" value="2"/><flag name="withText" value="4"/><flag name="collapseActionView" value="8"/></attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
    </style><style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
    </style><style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
    </style><style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/><style name="Base.TextAppearance.AppCompat.Small">
        <item name="android:textSize">@dimen/abc_text_size_small_material</item>
        <item name="android:textColor">?android:attr/textColorTertiary</item>
    </style><color name="material_grey_100">#fff5f5f5</color><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
        <item name="android:textColor">?android:textColorPrimaryInverse</item>
    </style><style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/><color name="highlighted_text_material_dark">#6680cbc4</color><style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/><style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/><style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/><declare-styleable name="ActionBar"><attr name="navigationMode"><enum name="normal" value="0"/><enum name="listMode" value="1"/><enum name="tabMode" value="2"/></attr><attr name="displayOptions"><flag name="none" value="0"/><flag name="useLogo" value="0x1"/><flag name="showHome" value="0x2"/><flag name="homeAsUp" value="0x4"/><flag name="showTitle" value="0x8"/><flag name="showCustom" value="0x10"/><flag name="disableHome" value="0x20"/></attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable><item name="action_bar_activity_content" type="id"/><color name="button_material_dark">#ff5a595b</color><style name="Base.TextAppearance.AppCompat.Caption">
        <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
        <item name="background">?attr/colorPrimary</item>
        <item name="backgroundStacked">?attr/colorPrimary</item>
        <item name="backgroundSplit">?attr/colorPrimary</item>
    </style><style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/><style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
    </style><style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/><style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
    </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
        <item name="overlapAnchor">true</item>
        <item name="android:dropDownHorizontalOffset">-4dip</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu">
    </style><style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
    </style><style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/><declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small">
    </style><bool name="abc_config_allowActionMenuItemTextWithIcon">false</bool><dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen><style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/><bool name="abc_action_bar_embed_tabs">true</bool><style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
        <item name="windowActionBar">true</item>
        <item name="windowActionBarOverlay">false</item>
        <item name="actionBarPopupTheme">@null</item>

        
        <item name="isLightTheme">true</item>

        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>

        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>

        
        <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
        <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
        <item name="actionBarWidgetTheme">@null</item>
        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
        <item name="actionBarDivider">?attr/dividerVertical</item>
        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>

        
        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>

        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>

        
        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>

        
        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
        <item name="android:panelBackground">@android:color/transparent</item>
        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>

        
        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
        <item name="listPreferredItemHeight">64dp</item>
        <item name="listPreferredItemHeightSmall">48dp</item>
        <item name="listPreferredItemHeightLarge">80dp</item>
        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>

        
        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>

        
        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>

        
        <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
        <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>

        
        <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>

        
        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>

        
        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>

        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
        <item name="editTextColor">?android:attr/textColorPrimary</item>
        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>

        
        <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
        <item name="colorPrimary">@color/primary_material_light</item>
        <item name="colorAccent">@color/accent_material_light</item>

        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
        <item name="colorControlActivated">?attr/colorAccent</item>
        <item name="colorControlHighlight">@color/ripple_material_light</item>
        <item name="colorButtonNormal">@color/button_material_light</item>
        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>

        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>

        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>

        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>

        
        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>

        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>

        
        <item name="dialogTheme">@style/Theme.AppCompat.Light.Dialog</item>
        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>

        <item name="alertDialogTheme">@style/Theme.AppCompat.Light.Dialog.Alert</item>
        <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
        <item name="alertDialogCenterButtons">false</item>
        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
        <item name="listDividerAlertDialog">@null</item>

        
        <item name="windowFixedWidthMajor">0dp</item>
        <item name="windowFixedWidthMinor">0dp</item>
        <item name="windowFixedHeightMajor">0dp</item>
        <item name="windowFixedHeightMinor">0dp</item>
    </style><declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable><color name="bright_foreground_material_light">@android:color/black</color><style name="Base.Widget.AppCompat.ActionBar" parent="">
        <item name="displayOptions">showTitle</item>
        <item name="divider">?attr/dividerVertical</item>
        <item name="height">?attr/actionBarSize</item>

        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>

        <item name="background">@null</item>
        <item name="backgroundStacked">@null</item>
        <item name="backgroundSplit">@null</item>

        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>

        <item name="android:gravity">center_vertical</item>
        <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
        <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
        <item name="elevation">8dp</item>
        <item name="popupTheme">?attr/actionBarPopupTheme</item>
    </style><color name="bright_foreground_disabled_material_dark">#80ffffff</color><bool name="abc_action_bar_embed_tabs_pre_jb">false</bool><color name="foreground_material_dark">@android:color/white</color><dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
        <item name="barLength">18dp</item>
        <item name="gapBetweenBars">3dp</item>
        <item name="drawableSize">24dp</item>
    </style><string name="abc_action_mode_done">Done</string><style name="Base.Widget.AppCompat.Spinner.Underlined">
        <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
    </style><style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/><style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu">
    </style><color name="primary_text_default_material_dark">#ffffffff</color><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large">
    </style><style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
    </style><color name="material_grey_300">#ffe0e0e0</color><dimen name="abc_action_bar_default_padding_start_material">0dp</dimen><item name="dialog_fixed_width_minor" type="dimen">320dp</item><dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen><style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/><style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
    </style><style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
        <item name="layout">@layout/abc_search_view</item>
        <item name="queryBackground">@drawable/abc_textfield_search_material</item>
        <item name="submitBackground">@drawable/abc_textfield_search_material</item>
        <item name="closeIcon">@drawable/abc_ic_clear_mtrl_alpha</item>
        <item name="searchIcon">@drawable/abc_ic_search_api_mtrl_alpha</item>
        <item name="searchHintIcon">@drawable/abc_ic_search_api_mtrl_alpha</item>
        <item name="goIcon">@drawable/abc_ic_go_search_api_mtrl_alpha</item>
        <item name="voiceIcon">@drawable/abc_ic_voice_search_api_mtrl_alpha</item>
        <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
        <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
    </style><declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
    </style><style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
        <item name="android:layout_toLeftOf">@id/edit_query</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
        <item name="android:layout_alignParentLeft">true</item>
    </style><style name="Widget.AppCompat.Spinner.DropDown"/><style name="TextAppearance.StatusBar.EventContent.Time" parent=""/><style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/><declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargins"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr format="dimension" name="maxButtonHeight"/><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="android:minHeight"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/></declare-styleable><style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/><integer name="abc_max_action_buttons">2</integer><style name="Base.TextAppearance.AppCompat.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/><dimen name="abc_dropdownitem_text_padding_left">8dip</dimen><string name="abc_searchview_description_search">Search</string><color name="switch_thumb_disabled_material_dark">#ff616161</color><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
        <item name="android:paddingRight">16dp</item>
    </style><item name="progress_horizontal" type="id"/><color name="primary_text_disabled_material_light">#39000000</color><dimen name="notification_large_icon_height">64dp</dimen><style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
    </style><style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/><declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
        <item name="android:textColor">?android:attr/textColorSecondary</item>
    </style><style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu">
    </style><style name="Base.Theme.AppCompat.Dialog.MinWidth">
        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
    </style><style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
    </style><style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
    </style><style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
    </style><color name="bright_foreground_material_dark">@android:color/white</color><style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/><dimen name="abc_edit_text_inset_bottom_material">7dp</dimen><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
        <item name="android:progressDrawable">@drawable/abc_ratingbar_full_material</item>
        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_full_material</item>
    </style><dimen name="notification_large_icon_width">64dp</dimen><style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
    </style><item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/><declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable><declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/></declare-styleable><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
    </style><style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/><style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/><color name="highlighted_text_material_light">#66009688</color><style name="Base.TextAppearance.AppCompat.Display2">
        <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/><style name="Base.TextAppearance.AppCompat.Display1">
        <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><style name="Base.TextAppearance.AppCompat.Display4">
        <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><color name="primary_text_default_material_light">#de000000</color><style name="Base.TextAppearance.AppCompat.Display3">
        <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable><item name="action_bar_spinner" type="id"/><dimen name="abc_text_size_caption_material">12sp</dimen><style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
    </style><color name="accent_material_dark">@color/material_deep_teal_200</color><dimen name="abc_action_button_min_width_material">48dp</dimen><declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode"><enum name="src_over" value="3"/><enum name="src_in" value="5"/><enum name="src_atop" value="9"/><enum name="multiply" value="14"/><enum name="screen" value="15"/></attr></declare-styleable><style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/><style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/><declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers"><flag name="none" value="0"/><flag name="beginning" value="1"/><flag name="middle" value="2"/><flag name="end" value="4"/></attr><attr format="dimension" name="dividerPadding"/></declare-styleable><style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/><style name="Base.Widget.AppCompat.ActionBar.Solid">
        <item name="background">?attr/colorPrimary</item>
        <item name="backgroundStacked">?attr/colorPrimary</item>
        <item name="backgroundSplit">?attr/colorPrimary</item>
    </style><style name="TextAppearance.StatusBar.EventContent" parent=""/><style name="Base.TextAppearance.AppCompat.Body2">
        <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><style name="Base.TextAppearance.AppCompat.Body1">
        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
    </style><style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/><style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/><color name="material_deep_teal_200">#ff80cbc4</color><style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
        <item name="android:maxLines">1</item>
        <item name="android:scrollHorizontally">true</item>
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
    </style><dimen name="abc_action_button_min_width_overflow_material">36dp</dimen><style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
    </style><style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
        <item name="divider">?attr/actionBarDivider</item>
        <item name="showDividers">middle</item>
        <item name="dividerPadding">8dip</item>
    </style><style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/><style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/><style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
        <item name="android:gravity">center</item>
        <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
        <item name="divider">?attr/dividerVertical</item>
        <item name="showDividers">middle</item>
        <item name="dividerPadding">6dip</item>
    </style><string name="abc_searchview_description_submit">Submit query</string><dimen name="abc_search_view_preferred_width">320dip</dimen><item name="action_menu_divider" type="id"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Menu">
        <item name="android:textColor">?attr/actionMenuTextColor</item>
        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
    </style><dimen name="abc_text_size_body_1_material">14sp</dimen><style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
    </style><color name="hint_foreground_material_light">@color/bright_foreground_disabled_material_light</color><declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="reference" name="track"/><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable><style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/><style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
    </style><style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/><style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
    </style><item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item><style name="Base.Widget.AppCompat.ActionMode" parent="">
        <item name="background">?attr/actionModeBackground</item>
        <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
        <item name="height">?attr/actionBarSize</item>
        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
        <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
    </style><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Spinner"/><style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/><style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/><attr format="dimension" name="height"/><style name="Widget.AppCompat.ActionButton.Overflow" parent="RtlOverlay.Widget.AppCompat.ActionButton.Overflow"/><color name="background_material_light">@color/material_grey_50</color><dimen name="abc_alert_dialog_button_bar_height">48dp</dimen><style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/><style name="Base.AlertDialog.AppCompat" parent="android:Widget">
        <item name="android:layout">@layout/abc_alert_dialog_material</item>
        <item name="listLayout">@layout/abc_select_dialog_material</item>
        <item name="listItemLayout">@layout/select_dialog_item_material</item>
        <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
        <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
    </style><style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/><color name="primary_dark_material_dark">@android:color/black</color><style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large">
    </style><dimen name="abc_text_size_display_3_material">56sp</dimen><dimen name="abc_text_size_small_material">14sp</dimen><item name="abc_dialog_min_width_minor" type="dimen">95%</item><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
        <item name="android:textColor">?android:textColorPrimary</item>
        <item name="android:textColorHint">?android:textColorHint</item>
        <item name="android:textColorHighlight">?android:textColorHighlight</item>
        <item name="android:textColorLink">?android:textColorLink</item>
        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
    </style><dimen name="abc_text_size_menu_material">16sp</dimen><style name="Base.Widget.AppCompat.ActionButton" parent="">
        <item name="android:background">?attr/actionBarItemBackground</item>
        <item name="android:paddingLeft">12dip</item>
        <item name="android:paddingRight">12dip</item>
        <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
        <item name="android:scaleType">center</item>
        <item name="android:gravity">center</item>
        <item name="android:maxLines">2</item>
        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
    </style><style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/><style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><string name="status_bar_notification_info_overflow">999+</string><string name="abc_toolbar_collapse_description">Collapse</string><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
        <item name="android:background">?attr/controlBackground</item>
        <item name="android:minWidth">56dp</item>
        <item name="android:scaleType">center</item>
    </style><style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
        <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
        <item name="android:dropDownVerticalOffset">0dip</item>
        <item name="android:dropDownHorizontalOffset">0dip</item>
        <item name="android:dropDownWidth">wrap_content</item>
        <item name="android:clickable">true</item>
        <item name="android:gravity">left|start|center_vertical</item>
        <item name="overlapAnchor">true</item>
    </style><item name="progress_circular" type="id"/><style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/><style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/><color name="button_material_light">#ffd6d7d7</color><style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/><style name="Base.TextAppearance.AppCompat.Medium">
        <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
        <item name="android:textColor">?android:attr/textColorSecondary</item>
    </style><dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen><string name="abc_action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string><style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
        <item name="android:background">?attr/editTextBackground</item>
        <item name="android:textColor">?attr/editTextColor</item>
        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
    </style><style name="Base.Widget.AppCompat.Button" parent="android:Widget">
        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
        <item name="android:minHeight">48dip</item>
        <item name="android:minWidth">88dip</item>
        <item name="android:focusable">true</item>
        <item name="android:clickable">true</item>
        <item name="android:gravity">center_vertical|center_horizontal</item>
    </style><dimen name="abc_dropdownitem_text_padding_right">8dip</dimen><color name="material_grey_50">#fffafafa</color><item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item><item name="dialog_fixed_height_major" type="dimen">80%</item><dimen name="abc_control_padding_material">4dp</dimen><item name="up" type="id"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu">
    </style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
    </style><color name="abc_search_url_text_normal">#7fa87f</color><item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item><style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/><style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/><color name="background_material_dark">@color/material_grey_850</color><style name="Base.TextAppearance.AppCompat.Subhead">
        <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen><style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
        <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
        <item name="actionBarWidgetTheme">@null</item>
        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>

        
        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>

        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
        <item name="colorPrimary">@color/primary_material_dark</item>
    </style><style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/><style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/><color name="foreground_material_light">@android:color/black</color><style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
    </style><style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
        <item name="android:windowBackground">@color/background_material_dark</item>
        <item name="android:colorForeground">@color/foreground_material_dark</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
        <item name="android:colorBackground">@color/background_material_dark</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>

        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorHint">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>

        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
        <item name="colorControlHighlight">@color/ripple_material_dark</item>
        <item name="colorButtonNormal">@color/button_material_dark</item>
        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>

        
        <item name="isLightTheme">false</item>
    </style><style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
        <item name="android:minWidth">64dp</item>
        <item name="android:maxLines">2</item>
        <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
    </style><style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/><declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable><style name="Theme.AppCompat.Light.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style><color name="ripple_material_dark">#42ffffff</color><dimen name="abc_panel_menu_list_width">296dp</dimen><style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
    </style><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
        <item name="android:paddingLeft">8dp</item>
        <item name="android:paddingRight">8dp</item>
        <item name="android:gravity">center_vertical</item>
    </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/><color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
        <item name="android:textColor">?android:attr/textColorPrimary</item>
    </style><color name="secondary_text_disabled_material_light">#24000000</color><style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
        <item name="android:textStyle">normal</item>
        <item name="android:textColor">?android:textColorPrimary</item>
        <item name="android:textColorHint">?android:textColorHint</item>
    </style><style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
        <item name="android:background">?attr/editTextBackground</item>
        <item name="android:textColor">?attr/editTextColor</item>
        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
    </style><color name="dim_foreground_disabled_material_dark">#80bebebe</color><dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen><dimen name="abc_edit_text_inset_top_material">10dp</dimen><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
        <item name="overlapAnchor">true</item>
        <item name="android:dropDownHorizontalOffset">-4dip</item>
    </style><color name="background_floating_material_light">@android:color/white</color><integer name="cancel_button_image_alpha">127</integer><declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/></declare-styleable><style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
    </style><style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/><style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
    </style><style name="Base.Widget.AppCompat.Button.Borderless">
        <item name="android:background">@drawable/abc_btn_borderless_material</item>
    </style><dimen name="abc_text_size_body_2_material">14sp</dimen><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
        <item name="android:layout_alignParentRight">true</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
        <item name="android:layout_toLeftOf">@android:id/icon2</item>
        <item name="android:layout_toRightOf">@android:id/icon1</item>
    </style><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
        <item name="android:paddingLeft">8dp</item>
        <item name="android:paddingRight">8dp</item>
    </style><style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
    </style><style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
        <item name="android:background">@null</item>
        <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
        <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
        <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
    </style><dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen><dimen name="abc_action_bar_progress_bar_size">40dp</dimen><style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/><style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/><color name="primary_material_dark">@color/material_grey_900</color><style name="Platform.AppCompat.Light" parent="android:Theme.Light">
        <item name="android:windowNoTitle">true</item>

        
        <item name="android:colorForeground">@color/foreground_material_light</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
        <item name="android:colorBackground">@color/background_material_light</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
        <item name="android:backgroundDimAmount">0.6</item>
        <item name="android:windowBackground">@color/background_material_light</item>

        
        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorHint">@color/hint_foreground_material_light</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
        <item name="android:textColorLink">?attr/colorAccent</item>

        
        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>

        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
    </style><style name="Base.Widget.AppCompat.Button.Colored">
        <item name="android:background">@drawable/abc_btn_colored_material</item>
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Inverse</item>
    </style><color name="abc_search_url_text_selected">@android:color/black</color><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
        <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
    </style><color name="primary_material_light">@color/material_grey_100</color><style name="Base.TextAppearance.AppCompat.Title.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><item name="home" type="id"/><style name="Base.TextAppearance.AppCompat.Menu">
        <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><dimen name="abc_text_size_large_material">22sp</dimen><style name="Base.Theme.AppCompat.CompactMenu" parent="">
        <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
        <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
    </style><style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/><style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/><attr format="string" name="title"/><declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/></declare-styleable><style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/><style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/><style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
        <item name="android:colorBackground">@color/background_floating_material_dark</item>
        <item name="android:colorBackgroundCacheHint">@null</item>

        <item name="android:windowFrame">@null</item>
        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
        <item name="android:windowBackground">@drawable/abc_dialog_material_background_dark</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>

        <item name="windowActionBar">false</item>
        <item name="windowActionModeOverlay">true</item>

        <item name="listPreferredItemPaddingLeft">24dip</item>
        <item name="listPreferredItemPaddingRight">24dip</item>

        <item name="android:listDivider">@null</item>
    </style><style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/><style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
    </style><dimen name="abc_text_size_display_1_material">34sp</dimen><dimen name="abc_text_size_subhead_material">16sp</dimen><dimen name="abc_text_size_headline_material">24sp</dimen><style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
    </style><style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
    </style><dimen name="notification_subtext_size">12dp</dimen><string name="abc_searchview_description_query">Search query</string><color name="material_deep_teal_500">#ff009688</color><drawable name="notification_template_icon_bg">#3333B5E5</drawable><style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
    </style><style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar">
        <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
        <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
        <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
        <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
    </style><style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/><style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/><style name="Base.Widget.AppCompat.Button.Small">
        <item name="android:minHeight">48dip</item>
        <item name="android:minWidth">48dip</item>
    </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
    </style><dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen><string name="abc_action_bar_up_description">Navigate up</string><dimen name="abc_switch_padding">3dp</dimen><style name="Base.Theme.AppCompat.Dialog.Alert">
        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
    </style><item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item><item name="action_menu_presenter" type="id"/><style name="Base.ThemeOverlay.AppCompat.ActionBar">
        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
    </style><color name="dim_foreground_disabled_material_light">#80323232</color><style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
        <item name="android:dropDownVerticalOffset">0dip</item>
        <item name="android:dropDownHorizontalOffset">0dip</item>
        <item name="android:dropDownWidth">wrap_content</item>
    </style><color name="switch_thumb_disabled_material_light">#ffbdbdbd</color><string name="abc_action_menu_overflow_description">More options</string><style name="Base.TextAppearance.AppCompat.Title">
        <item name="android:textSize">@dimen/abc_text_size_title_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><item name="dialog_fixed_width_major" type="dimen">320dp</item><declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable><integer name="abc_config_activityDefaultDur">220</integer><style name="Base.Widget.AppCompat.Toolbar" parent="android:Widget">
        <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
        <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
        <item name="android:minHeight">?attr/actionBarSize</item>
        <item name="titleMargins">4dp</item>
        <item name="maxButtonHeight">56dp</item>
        <item name="collapseIcon">?attr/homeAsUpIndicator</item>
        <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
        <item name="contentInsetStart">16dp</item>
        <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
    </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu">
    </style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
        <item name="android:textColor">?android:attr/textColorPrimary</item>
        <item name="android:textSize">12sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:ellipsize">marquee</item>
        <item name="android:maxLines">2</item>
        <item name="android:maxWidth">180dp</item>
        <item name="textAllCaps">true</item>
    </style><style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/><style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
    </style><declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable><style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/><declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable><item name="dialog_fixed_height_minor" type="dimen">100%</item><style name="Base.TextAppearance.AppCompat.Large">
        <item name="android:textSize">@dimen/abc_text_size_large_material</item>
        <item name="android:textColor">?android:attr/textColorPrimary</item>
    </style><declare-styleable name="Theme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize"><enum name="wrap_content" value="0"/></attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/></declare-styleable><style name="Base.Theme.AppCompat.Dialog.FixedSize">
        <item name="windowFixedWidthMajor">@dimen/dialog_fixed_width_major</item>
        <item name="windowFixedWidthMinor">@dimen/dialog_fixed_width_minor</item>
        <item name="windowFixedHeightMajor">@dimen/dialog_fixed_height_major</item>
        <item name="windowFixedHeightMinor">@dimen/dialog_fixed_height_minor</item>
    </style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/><dimen name="abc_config_prefDialogWidth">320dp</dimen><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
        <item name="android:background">@null</item>
    </style><dimen name="abc_text_size_title_material">20sp</dimen><integer name="abc_config_activityShortDur">150</integer><style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/><style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
        <item name="android:divider">?attr/dividerHorizontal</item>
    </style><dimen name="abc_dialog_padding_material">24dp</dimen><style name="Base.Widget.AppCompat.ListView.DropDown">
        <item name="android:divider">@null</item>
    </style><style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/><color name="primary_text_disabled_material_dark">#4Dffffff</color><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
    </style><style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/><style name="TextAppearance.StatusBar.EventContent.Info" parent=""/><style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/><style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/><color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color><dimen name="abc_dropdownitem_icon_width">32dip</dimen><style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu">
    </style><string name="abc_action_bar_home_description">Navigate home</string><item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item><style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
        <item name="android:layout_alignParentLeft">true</item>
    </style><dimen name="abc_text_size_display_4_material">112sp</dimen><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal">
    </style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
        <item name="android:layout_gravity">center_vertical|left</item>
        <item name="android:paddingRight">8dp</item>
    </style><style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
    </style><dimen name="abc_floating_window_z">16dp</dimen><style name="Base.Widget.AppCompat.SearchView.ActionBar">
        <item name="queryBackground">@null</item>
        <item name="submitBackground">@null</item>
        <item name="searchHintIcon">@null</item>
        <item name="defaultQueryHint">@string/abc_search_hint</item>
    </style><style name="RtlOverlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow">
        <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
        <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
    </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
    </style><style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
        <item name="windowActionBar">true</item>
        <item name="windowActionBarOverlay">false</item>
        <item name="actionBarPopupTheme">@null</item>

        
        <item name="isLightTheme">false</item>

        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>

        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>

        
        <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
        <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
        <item name="actionBarWidgetTheme">@null</item>
        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
        <item name="actionBarDivider">?attr/dividerVertical</item>
        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>

        
        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>

        
        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>

        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>

        
        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
        <item name="android:panelBackground">@android:color/transparent</item>
        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>

        
        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
        <item name="listPreferredItemHeight">64dp</item>
        <item name="listPreferredItemHeightSmall">48dp</item>
        <item name="listPreferredItemHeightLarge">80dp</item>
        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>

        
        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>

        
        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>

        
        <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
        <item name="dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>

        
        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>

        
        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>

        
        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>

        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
        <item name="editTextColor">?android:attr/textColorPrimary</item>
        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>

        
        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
        <item name="colorPrimary">@color/primary_material_dark</item>
        <item name="colorAccent">@color/accent_material_dark</item>

        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
        <item name="colorControlActivated">?attr/colorAccent</item>
        <item name="colorControlHighlight">@color/ripple_material_dark</item>
        <item name="colorButtonNormal">@color/button_material_dark</item>
        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>

        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>

        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>

        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>

        
        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>

        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>

        
        <item name="dialogTheme">@style/Theme.AppCompat.Dialog</item>
        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>

        <item name="alertDialogTheme">@style/Theme.AppCompat.Dialog.Alert</item>
        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
        <item name="alertDialogCenterButtons">false</item>
        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
        <item name="listDividerAlertDialog">@null</item>

        
        <item name="windowFixedWidthMajor">0dp</item>
        <item name="windowFixedWidthMinor">0dp</item>
        <item name="windowFixedHeightMajor">0dp</item>
        <item name="windowFixedHeightMinor">0dp</item>
    </style><item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item><style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
    </style><dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen><color name="dim_foreground_material_light">#ff323232</color><dimen name="abc_search_view_text_min_width">160dip</dimen><style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/><style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/><color name="switch_thumb_normal_material_light">#fff1f1f1</color><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/><style name="Base.Theme.AppCompat.Light.Dialog.Alert">
        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
    </style><color name="material_grey_850">#ff303030</color><style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
        <item name="windowFixedWidthMajor">@dimen/dialog_fixed_width_major</item>
        <item name="windowFixedWidthMinor">@dimen/dialog_fixed_width_minor</item>
        <item name="windowFixedHeightMajor">@dimen/dialog_fixed_height_major</item>
        <item name="windowFixedHeightMinor">@dimen/dialog_fixed_height_minor</item>
    </style><style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
        <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
        <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
    </style><dimen name="abc_action_bar_default_padding_end_material">0dp</dimen><declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable><color name="secondary_text_default_material_dark">#b3ffffff</color><style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
    </style><style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
    </style><color name="material_grey_600">#ff757575</color><style name="Theme.AppCompat.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style><dimen name="abc_control_inset_material">4dp</dimen><style name="Platform.ThemeOverlay.AppCompat.Light">
        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>

        
        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
    </style><style name="Platform.ThemeOverlay.AppCompat" parent=""/><style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/><color name="material_blue_grey_950">#ff21272b</color><dimen name="abc_action_bar_content_inset_material">16dp</dimen><style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/><string name="abc_shareactionprovider_share_with">Share with</string><style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small">
    </style><color name="accent_material_light">@color/material_deep_teal_500</color><string name="abc_action_bar_home_description_format">%1$s, %2$s</string><style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
    </style><dimen name="abc_text_size_display_2_material">45sp</dimen><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
        <item name="android:background">@drawable/abc_tab_indicator_material</item>
        <item name="android:gravity">center_horizontal</item>
        <item name="android:paddingLeft">16dip</item>
        <item name="android:paddingRight">16dip</item>
        <item name="android:layout_width">0dip</item>
        <item name="android:layout_weight">1</item>
        <item name="android:minWidth">80dip</item>
    </style><attr format="boolean" name="isLightTheme"/><style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.SearchResult.Title">
        <item name="android:textSize">18sp</item>
    </style><style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/><style name="Platform.AppCompat" parent="android:Theme">
        <item name="android:windowNoTitle">true</item>

        
        <item name="android:colorForeground">@color/foreground_material_dark</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
        <item name="android:colorBackground">@color/background_material_dark</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
        <item name="android:backgroundDimAmount">0.6</item>
        <item name="android:windowBackground">@color/background_material_dark</item>

        
        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorHint">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
        <item name="android:textColorLink">?attr/colorAccent</item>

        
        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>

        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
    </style><style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
    </style><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
        <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
        <item name="android:background">?attr/controlBackground</item>
    </style><style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/><color name="abc_input_method_navigation_guard">@android:color/black</color><style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/><color name="dim_foreground_material_dark">#ffbebebe</color><color name="primary_dark_material_light">@color/material_grey_600</color><style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/><color name="material_grey_900">#ff212121</color><style name="TextAppearance.StatusBar.EventContent.Line2" parent=""/><style name="Base.Widget.AppCompat.Button.Borderless.Colored">
        <item name="android:textColor">?attr/colorAccent</item>
    </style><declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/></declare-styleable><style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/><string name="abc_searchview_description_voice">Voice search</string><style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
        <item name="android:colorBackground">@color/background_floating_material_light</item>
        <item name="android:colorBackgroundCacheHint">@null</item>

        <item name="android:windowFrame">@null</item>
        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
        <item name="android:windowBackground">@drawable/abc_dialog_material_background_light</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>

        <item name="windowActionBar">false</item>
        <item name="windowActionModeOverlay">true</item>

        <item name="listPreferredItemPaddingLeft">24dip</item>
        <item name="listPreferredItemPaddingRight">24dip</item>

        <item name="android:listDivider">@null</item>
    </style><bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool><color name="bright_foreground_disabled_material_light">#80000000</color><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
    </style><style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/><style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
        <item name="android:windowBackground">@color/background_material_light</item>
        <item name="android:colorForeground">@color/foreground_material_light</item>
        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
        <item name="android:colorBackground">@color/background_material_light</item>
        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>

        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
        <item name="android:textColorHint">@color/hint_foreground_material_light</item>
        <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item>
        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>

        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
        <item name="colorControlHighlight">@color/ripple_material_light</item>
        <item name="colorButtonNormal">@color/button_material_light</item>
        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>

        
        <item name="isLightTheme">true</item>
    </style><dimen name="abc_text_size_medium_material">18sp</dimen><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
        <item name="android:background">@drawable/abc_tab_indicator_material</item>
    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
        <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
        <item name="android:paddingRight">4dp</item>
    </style><style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/><dimen name="abc_dialog_padding_top_material">18dp</dimen><style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/><style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu">
    </style><color name="background_floating_material_dark">@color/material_grey_800</color><style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
        <item name="color">?android:attr/textColorSecondary</item>
        <item name="spinBars">true</item>
        <item name="thickness">2dp</item>
        <item name="arrowShaftLength">16dp</item>
        <item name="arrowHeadLength">8dp</item>
    </style><style name="Base.TextAppearance.AppCompat.Button">
        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
        <item name="textAllCaps">true</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><dimen name="abc_action_bar_stacked_max_height">48dp</dimen><item name="abc_dialog_min_width_major" type="dimen">65%</item><style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/><style name="Base.Widget.AppCompat.ActionButton.CloseMode">
        <item name="android:background">?attr/controlBackground</item>
    </style><string name="abc_searchview_description_clear">Clear query</string><bool name="abc_action_bar_expanded_action_views_exclusive">true</bool><style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
        <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
        <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
        <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
        <item name="android:background">?attr/controlBackground</item>
        <item name="showText">false</item>
        <item name="switchPadding">@dimen/abc_switch_padding</item>
    </style><style name="TextAppearance.StatusBar.EventContent.Title" parent=""/><declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable><style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/><color name="switch_thumb_normal_material_dark">#ffbdbdbd</color><color name="material_grey_800">#ff424242</color><style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/><style name="Base.TextAppearance.AppCompat.Headline">
        <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen><color name="material_blue_grey_800">#ff37474f</color><style name="Base.Widget.AppCompat.ActionButton.Overflow">
        <item name="android:src">@drawable/abc_ic_menu_moreoverflow_mtrl_alpha</item>
        <item name="android:background">?attr/actionBarItemBackground</item>
        <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
        <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
    </style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">?android:textColorSecondary</item>
    </style><declare-styleable name="ActionMenuView"/><style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
    </style><declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode"><enum name="src_over" value="3"/><enum name="src_in" value="5"/><enum name="src_atop" value="9"/><enum name="multiply" value="14"/><enum name="screen" value="15"/></attr></declare-styleable><style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
        <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
        <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
    </style><style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/><item name="split_action_bar" type="id"/><style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
    </style><dimen name="abc_button_inset_vertical_material">6dp</dimen><style name="Platform.ThemeOverlay.AppCompat.Dark">
        
        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>

        
        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
    </style><declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable><bool name="abc_config_actionMenuItemAllCaps">true</bool><string name="abc_search_hint">Search…</string><color name="hint_foreground_material_dark">@color/bright_foreground_disabled_material_dark</color></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml" qualifiers="pl"><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Udostępnij dla %s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Więcej opcji"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Udostępnij dla"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotowe"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Szukaj"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Przejdź do strony głównej"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Wybierz aplikację"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobacz wszystkie"</string><string msgid="7723749260725869598" name="abc_search_hint">"Szukaj…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Wyszukiwane hasło"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wyślij zapytanie"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zwiń"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Przejdź wyżej"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml" qualifiers="vi"><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Gửi truy vấn"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Xóa truy vấn"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tìm kiếm…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Chia sẻ với %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Thêm tùy chọn"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Xong"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tìm kiếm"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Tìm kiếm truy vấn"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Điều hướng lên trên"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều hướng về trang chủ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Thu gọn"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml" qualifiers="km-rKH"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើស​ច្រើន​ទៀត"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់​​​ស្នើ​សំណួរ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរក​សំណួរ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ចែករំលែក​ជាមួយ %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើល​ទាំងអស់"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរក​សំឡេង"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើល​ឡើងលើ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជាមួយ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើល​ទៅ​ដើម"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"បង្រួម"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើស​កម្មវិធី​​"</string><string msgid="7723749260725869598" name="abc_search_hint">"ស្វែងរក…"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml" qualifiers="ky-rKG"><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлүшүү"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Издөө талаптары"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s аркылуу бөлүшүү"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Издөө"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Үн аркылуу издөө"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бардыгын көрүү"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Жыйнап коюу"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Талаптарды тазалоо"</string><string msgid="7723749260725869598" name="abc_search_hint">"Издөө…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Талап жөнөтүү"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Даяр"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Көбүрөөк мүмкүнчүлүктөр"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жогору"</string></file><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml" qualifiers="sv"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dela med"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visa alla"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Sök …"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sök"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ta bort frågan"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigera uppåt"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fler alternativ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dela med %s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klart"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Röstsökning"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Sökfråga"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Skicka fråga"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Välj en app"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Visa startsidan"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Komprimera"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml" qualifiers="gu-rIN"><string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નેવિગેટ કરો"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string><string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s સાથે શેર કરો"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક એપ્લિકેશન પસંદ કરો"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml" qualifiers="sl"><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Krmarjenje navzgor"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deljenje z:"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Iskanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deljenje z"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Krmarjenje domov"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno iskanje"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Strni"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Iskalna poizvedba"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Končano"</string><string msgid="7723749260725869598" name="abc_search_hint">"Iskanje …"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbris poizvedbe"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Več možnosti"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml" qualifiers="sk"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vymazať dopyt"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hľadať"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Prejsť na plochu"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobraziť všetko"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Zdieľať pomocou"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zbaliť"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhľadať…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Zdieľať pomocou %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Prejsť hore"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odoslať dopyt"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zvoľte aplikáciu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file name="abc_list_focused_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_voice_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_rating_star_off_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_rating_star_on_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_clear_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_moreoverflow_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_go_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml" qualifiers="sw"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tafuta"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shiriki na:"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shiriki na %s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hoja ya utafutaji"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chagua programu"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Futa hoja"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Nenda mwanzo"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tafuta…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wasilisha hoja"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tafuta kwa kutamka"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nenda juu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Nimemaliza"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kunja"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Angalia zote"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml" qualifiers="ur-rPK"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"سکیڑیں"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"استفسار صاف کریں"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک کریں مع"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ہوم پر نیویگیٹ کریں"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"صوتی تلاش"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"مزید اختیارات"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏%s کے ساتھ اشتراک کریں"</string><string msgid="7723749260725869598" name="abc_search_hint">"تلاش کریں…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"استفسار تلاش کریں"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"تلاش کریں"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ہو گیا"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partilhar com %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partilhar com"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Reduzir"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml" qualifiers="lo-rLA"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ສົ່ງການຊອກຫາ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ໂຕເລືອກອື່ນ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ແບ່ງ​ປັນ​ກັບ​ %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ຫຍໍ້"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ຂຶ້ນເທິງ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ເລືອກແອັບຯ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ຊອກຫາ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ຊອກຫາ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງຫມົດ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ແລ້ວໆ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ຊອກຫາ"</string></file><file name="abc_list_focused_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_voice_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_rating_star_off_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_rating_star_on_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_clear_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_moreoverflow_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_go_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml" qualifiers="tr"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Daralt"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorguyu temizle"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Şununla paylaş"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yukarı git"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tamamlandı"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ara…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorguyu gönder"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ile paylaş"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Arama sorgusu"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sesli arama"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ana ekrana git"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Ara"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml" qualifiers="hdpi-v4"><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
          <item name="barLength">18.66dp</item>
          <item name="gapBetweenBars">3.33dp</item>
          <item name="drawableSize">24dp</item>
     </style></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml" qualifiers="v14"><style name="TextAppearance.StatusBar.EventContent.Line2">
        <item name="android:textSize">@dimen/notification_subtext_size</item>
    </style><style name="Base.TextAppearance.AppCompat.Button">
        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
        <item name="android:textAllCaps">true</item>
        <item name="android:textColor">?android:textColorPrimary</item>
    </style><style name="Platform.V14.AppCompat.Light" parent="Platform.V11.AppCompat.Light">
        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>

        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
    </style><style name="TextAppearance.StatusBar.EventContent.Time"/><style name="Platform.AppCompat.Light" parent="Platform.V14.AppCompat.Light"/><style name="Platform.V14.AppCompat" parent="Platform.V11.AppCompat">
        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>

        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
    </style><style name="TextAppearance.StatusBar.EventContent.Info"/><style name="TextAppearance.StatusBar.EventContent.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/><style name="Platform.AppCompat" parent="Platform.V14.AppCompat"/><style name="TextAppearance.StatusBar.EventContent" parent="@android:style/TextAppearance.StatusBar.EventContent"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml" qualifiers="ka-rGE"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"აკეცვა"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-თან გაზიარება"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string><string msgid="7723749260725869598" name="abc_search_hint">"ძიება..."</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml" qualifiers="v22"><style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
    </style><style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/><style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
    </style><style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml" qualifiers="is-rIS"><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string></file><file name="abc_list_focused_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_voice_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_rating_star_off_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_rating_star_on_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_clear_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_moreoverflow_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_go_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml" qualifiers="kn-rIN"><string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕು"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ಹುಡುಕಿ…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ಸಂಕುಚಿಸು"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml" qualifiers="h720dp-v13"><dimen name="abc_alert_dialog_button_bar_height">54dip</dimen></file><file name="abc_action_bar_item_background_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml" qualifiers="v21" type="drawable"/><file name="abc_btn_colored_material" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml" qualifiers="v21" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml" qualifiers="w480dp-v13"><bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool><bool name="abc_action_bar_embed_tabs_pre_jb">true</bool></file><file name="abc_background_cache_hint_selector_material_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml" qualifiers="v11" type="color"/><file name="abc_background_cache_hint_selector_material_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" qualifiers="v11" type="color"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml" qualifiers="si-rLK"><string msgid="4076576682505996667" name="abc_action_mode_done">"අවසාන වූ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ඉහලට සංචාලනය කරන්න"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"සොයන්න..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"සමඟ බෙදාගන්න"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s සමඟ බෙදාගන්න"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ගෙදරට සංචාලනය කරන්න"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"සෙවීම"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"හඬ සෙවීම"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"හකුළන්න"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml" qualifiers="v23"><style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
        
        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>

        <item name="controlBackground">@drawable/abc_control_background_material</item>
    </style><style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/><style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
        
        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>

        <item name="controlBackground">@drawable/abc_control_background_material</item>
    </style><style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/><style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml" qualifiers="th"><string msgid="893419373245838918" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"เสร็จสิ้น"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"แชร์กับ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ยุบ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"แชร์กับ %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ส่งข้อความค้นหา"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"นำทางขึ้น"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ข้อความค้นหา"</string><string msgid="7723749260725869598" name="abc_search_hint">"ค้นหา…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ค้นหา"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"เลือกแอป"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ล้างข้อความค้นหา"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml" qualifiers="v12"><style name="Base.V12.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText">
        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
    </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V12.Widget.AppCompat.AutoCompleteTextView"/><style name="Base.Widget.AppCompat.EditText" parent="Base.V12.Widget.AppCompat.EditText"/><style name="Base.V12.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView">
        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
    </style></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml" qualifiers="fa"><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏، %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏، %2$s‏، %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"۹۹۹+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string><string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"انجام شد"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml" qualifiers="lt"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programą"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sutraukti"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant „%s“"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ieškoti..."</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml" qualifiers="large-v4"><item name="dialog_fixed_height_major" type="dimen">60%</item><dimen name="abc_search_view_text_min_width">192dip</dimen><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/><dimen name="abc_config_prefDialogWidth">440dp</dimen><item name="dialog_fixed_width_major" type="dimen">60%</item><bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool><bool name="abc_action_bar_embed_tabs_pre_jb">true</bool><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/><item name="dialog_fixed_width_minor" type="dimen">90%</item><integer name="abc_max_action_buttons">4</integer><item name="dialog_fixed_height_minor" type="dimen">90%</item></file><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml" qualifiers="mn-rMN"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Хайх"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Нэмэлт сонголтууд"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string><string msgid="7723749260725869598" name="abc_search_hint">"Хайх..."</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Хайх асуулга"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Хуваалцах"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-тай хуваалцах"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Асуулгыг цэвэрлэх"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Апп сонгох"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дууссан"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дуут хайлт"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Дээш шилжих"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Асуулгыг илгээх"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Хумих"</string></file><file name="abc_list_focused_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_voice_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_rating_star_off_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_rating_star_on_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_clear_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_moreoverflow_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_go_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml" qualifiers="et-rEE"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string><string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml" qualifiers="iw"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏, %2$s‏, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string><string msgid="7723749260725869598" name="abc_search_hint">"חפש…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml" qualifiers="en-rGB"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml" qualifiers="fi"><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml" qualifiers="uz-rUZ"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuqoriga o‘tish"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"So‘rovni tozalash"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tayyor"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Dastur tanlang"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Boshiga o‘tish"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Izlash"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Barchasini ko‘rish"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"So‘rovni izlash"</string><string msgid="7723749260725869598" name="abc_search_hint">"Qidirish…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ovozli qidiruv"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"So‘rov yaratish"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Qo‘shimcha sozlamalar"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yig‘ish"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bo‘lishish:"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml" qualifiers="en-rAU"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml" qualifiers="port"><bool name="abc_action_bar_embed_tabs">false</bool></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml" qualifiers="fr"><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml" qualifiers="pa-rIN"><string msgid="2550479030709304392" name="abc_searchview_description_query">"ਸਵਾਲ ਖੋਜੋ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ਖੋਜੋ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ਸਵਾਲ ਹਟਾਓ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ਨਸ਼ਟ ਕਰੋ"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ਹੋਰ ਚੋਣਾਂ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ਖੋਜ…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ਵੌਇਸ ਖੋਜ"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml" qualifiers="es"><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml" qualifiers="hr"><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml" qualifiers="ml-rIN"><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ഇവരുമായി പങ്കിടുക"</string><string msgid="7723749260725869598" name="abc_search_hint">"തിരയുക…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"തിരയൽ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"തിരയൽ അന്വേഷണം"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s എന്നതുമായി പങ്കിടുക"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"കൂടുതല്‍ ഓപ്‌ഷനുകള്‍"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"പൂർത്തിയാക്കി"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ശബ്ദ തിരയൽ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"അന്വേഷണം മായ്‌ക്കുക"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"അന്വേഷണം സമർപ്പിക്കുക"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml" qualifiers="hu"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string><string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml" qualifiers="nl"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Meer opties"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gereed"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Samenvouwen"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Zoeken"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Een app selecteren"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Delen met %s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Zoeken…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Zoekopdracht"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Delen met"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Omhoog navigeren"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml" qualifiers="w720dp-v13"><bool name="abc_action_bar_expanded_action_views_exclusive">false</bool></file><file name="abc_ic_menu_selectall_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_voice_search_api_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_clear_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_moreoverflow_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml" qualifiers="bg"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ – %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ – %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string></file><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml" qualifiers="af"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string><string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml" qualifiers="nb"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s – %2$s – %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Gå til startsiden"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søk …"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Gå opp"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml" qualifiers="hi"><string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करें"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ पर नेविगेट करें"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml" qualifiers="de"><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string><string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml" qualifiers="xlarge-v4"><item name="dialog_fixed_width_major" type="dimen">50%</item><bool name="abc_action_bar_expanded_action_views_exclusive">false</bool><dimen name="abc_search_view_text_min_width">192dip</dimen><item name="dialog_fixed_width_minor" type="dimen">70%</item><integer name="abc_max_action_buttons">5</integer><item name="dialog_fixed_height_major" type="dimen">60%</item><item name="dialog_fixed_height_minor" type="dimen">90%</item></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml" qualifiers="ko"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s와(과) 공유"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string><string msgid="7723749260725869598" name="abc_search_hint">"검색..."</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"접기"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml" qualifiers="ar"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string><string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml" qualifiers="es-rUS"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml" qualifiers="pt"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string></file><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_ab_back_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml" qualifiers="uk"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пошуковий запит"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Вибрати програму"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Переглянути всі"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовий пошук"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Надіслати через %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пошук…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на головний"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Інші опції"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згорнути"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Очистити запит"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Надіслати запит"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Надіслати через"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вгору"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml" qualifiers="sr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Одлазак на Почетну"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избор апликације"</string><string msgid="7723749260725869598" name="abc_search_hint">"Претражите..."</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Дели са апликацијом %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Још опција"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Слање упита"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовна претрага"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Кретање нагоре"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Скупи"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Брисање упита"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Претрага"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Дели са"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Упит за претрагу"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прикажи све"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml" qualifiers="ms-rMY"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Runtuhkan"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih apl"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kongsi dengan %s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cari…"</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml" qualifiers="xlarge-land-v4"><dimen name="abc_search_view_text_min_width">256dip</dimen></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml" qualifiers="w360dp-v13"><integer name="abc_max_action_buttons">3</integer></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml" qualifiers="zu"><string msgid="7723749260725869598" name="abc_search_hint">"Iyasesha..."</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Hambisa umbuzo"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Yabelana no-%s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Izinketho eziningi"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kwenziwe"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Umbuzo wosesho"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Zulazulela phezulu"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sula inkinga"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sesha"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Yabelana no-"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Goqa"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Khetha uhlelo lokusebenza"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Buka konke"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file></source></dataSet><dataSet config="23.0.1" from-dependency="true" generated-set="23.0.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res"><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res/values/values.xml" qualifiers=""><item name="item_touch_helper_previous_elevation" type="id"/><declare-styleable name="RecyclerView"><attr format="string" name="layoutManager"/><attr name="android:orientation"/><attr format="integer" name="spanCount"/><attr format="boolean" name="reverseLayout"/><attr format="boolean" name="stackFromEnd"/></declare-styleable><dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen></file></source></dataSet><dataSet config="0.8.1" from-dependency="true" generated-set="0.8.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/res"/></dataSet><dataSet config="0.8.1" from-dependency="true" generated-set="0.8.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/res"/></dataSet><dataSet config="0.8.1" from-dependency="true" generated-set="0.8.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/res"/></dataSet><dataSet config="r174650" from-dependency="true" generated-set="r174650$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/res"/></dataSet><dataSet config="0.8.1" from-dependency="true" generated-set="0.8.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res"><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml" qualifiers=""><declare-styleable name="GenericDraweeView"><attr format="integer" name="fadeDuration"/><attr format="float" name="viewAspectRatio"/><attr format="reference" name="placeholderImage"/><attr name="placeholderImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="retryImage"/><attr name="retryImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="failureImage"/><attr name="failureImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="progressBarImage"/><attr name="progressBarImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="integer" name="progressBarAutoRotateInterval"/><attr name="actualImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="backgroundImage"/><attr format="reference" name="overlayImage"/><attr format="reference" name="pressedStateOverlayImage"/><attr format="boolean" name="roundAsCircle"/><attr format="dimension" name="roundedCornerRadius"/><attr format="boolean" name="roundTopLeft"/><attr format="boolean" name="roundTopRight"/><attr format="boolean" name="roundBottomRight"/><attr format="boolean" name="roundBottomLeft"/><attr format="color" name="roundWithOverlayColor"/><attr format="dimension" name="roundingBorderWidth"/><attr format="color" name="roundingBorderColor"/></declare-styleable></file></source></dataSet><dataSet config="0.8.1" from-dependency="true" generated-set="0.8.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/res"/></dataSet><dataSet config="0.20.1" from-dependency="true" generated-set="0.20.1$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res"><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-es-rES/values-es-rES.xml" qualifiers="es-rES"><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">Inspeccionar elemento</string><string name="catalyst_jsload_title">Espera...</string><string name="catalyst_jsload_error">Unable to download JS bundle</string></file><file name="catalyst_push_up_out" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/anim/catalyst_push_up_out.xml" qualifiers="" type="anim"/><file name="catalyst_push_up_in" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/anim/catalyst_push_up_in.xml" qualifiers="" type="anim"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-ro/values-ro.xml" qualifiers="ro"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">Show Inspector</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_jsload_title">Please wait...</string><string name="catalyst_jsload_error">Unable to download JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-ru/values-ru.xml" qualifiers="ru"><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_element_inspector">Проверить элемент</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Подождите...</string><string name="catalyst_reloadjs">Reload JS</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">檢查元素</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">請稍候……</string><string name="catalyst_settings_title">Catalyst Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-it/values-it.xml" qualifiers="it"><string name="catalyst_element_inspector">Esamina elemento</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_title">Attendi...</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-cs/values-cs.xml" qualifiers="cs"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_element_inspector">Prozkoumat prvek</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Čekejte prosím...</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-fb/values-fb.xml" qualifiers="fb"><string name="catalyst_element_inspector">[Show Inspector#c1b106c92869437ebd88f326d632b973:1]</string><string name="catalyst_debugjs">[Debug JS#2010fa256bd28603b686da2713bb843a:1]</string><string name="catalyst_jsload_error">[Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]</string><string name="catalyst_jsload_title">[Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]</string><string name="catalyst_settings_title">[Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]</string><string name="catalyst_reloadjs">[Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]</string><string name="catalyst_jsload_message">[Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]</string><string name="catalyst_settings">[Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-zh-rCN/values-zh-rCN.xml" qualifiers="zh-rCN"><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_jsload_title">请稍等...</string><string name="catalyst_element_inspector">检查元素</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-in/values-in.xml" qualifiers="in"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_title">Harap tunggu...</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_element_inspector">Periksa Elemen</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-ja/values-ja.xml" qualifiers="ja"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_title">しばらくお待ちください</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_element_inspector">要素を確認</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-el/values-el.xml" qualifiers="el"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_element_inspector">Εξέταση στοιχείου</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_title">Περιμένετε...</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-da/values-da.xml" qualifiers="da"><string name="catalyst_element_inspector">Inspicer element</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_jsload_title">Vent venligst...</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-fb-rLL/values-fb-rLL.xml" qualifiers="fb-rLL"><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">(तत्व निरीक्षण गर्नुहोस्)</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">(অনুগ্রহ করে অপেক্ষা করুন….)</string><string name="catalyst_reloadjs">Reload JS</string></file><file name="redbox_item_frame" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/layout/redbox_item_frame.xml" qualifiers="" type="layout"/><file name="fps_view" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/layout/fps_view.xml" qualifiers="" type="layout"/><file name="redbox_view" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/layout/redbox_view.xml" qualifiers="" type="layout"/><file name="redbox_item_title" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/layout/redbox_item_title.xml" qualifiers="" type="layout"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-zh-rHK/values-zh-rHK.xml" qualifiers="zh-rHK"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">請稍候……</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_element_inspector">檢查項目</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values/values.xml" qualifiers=""><string name="catalyst_settings" project="catalyst" translatable="false">Dev Settings</string><style name="Animation.Catalyst.RedBox" parent="@android:style/Animation">
    <item name="android:windowEnterAnimation">@anim/catalyst_push_up_in</item>
    <item name="android:windowExitAnimation">@anim/catalyst_push_up_out</item>
  </style><style name="Theme.ReactNative.AppCompat.Light" parent="@style/Theme.AppCompat.Light.NoActionBar">
        <item name="android:textColor">@android:color/black</item>
    </style><string name="catalyst_perf_monitor_off" project="catalyst" translatable="false">Disable Perf Monitor</string><string name="catalyst_hot_module_replacement" project="catalyst" translatable="false">Enable Hot Module Replacement</string><style name="Theme.Catalyst.RedBox" parent="@style/Theme.AppCompat.DialogWhenLarge">
    <item name="android:windowBackground">@color/catalyst_redbox_background</item>
    <item name="android:windowAnimationStyle">@style/Animation.Catalyst.RedBox</item>
    <item name="android:inAnimation">@android:anim/fade_in</item>
    <item name="android:outAnimation">@android:anim/fade_out</item>
    <item name="android:textColor">@android:color/white</item>
  </style><string name="catalyst_element_inspector_off" project="catalyst" translatable="false">Hide Inspector</string><string name="catalyst_settings_title" project="catalyst" translatable="false">Catalyst Dev Settings</string><string name="catalyst_stop_profile" project="catalyst" translatable="false">Stop Profile</string><string name="catalyst_jsload_message" project="catalyst" translatable="false">Fetching JS bundle</string><string name="catalyst_element_inspector" project="catalyst" translatable="false">Show Inspector</string><string name="catalyst_start_profile" project="catalyst" translatable="false">Start Profile</string><string name="catalyst_hot_module_replacement_off" project="catalyst" translatable="false">Disable Hot Module Replacement</string><string name="catalyst_jsload_title" project="catalyst" translatable="false">Please wait…</string><string name="catalyst_perf_monitor" project="catalyst" translatable="false">Enable Perf Monitor</string><string name="catalyst_remotedbg_error" project="catalyst" translatable="false">Unable to connect with remote debugger</string><style name="Theme.Catalyst"/><color name="catalyst_redbox_background">#eecc0000</color><string name="catalyst_live_reload_off" project="catalyst" translatable="false">Disable Live Reload</string><string name="catalyst_debugjs" project="catalyst" translatable="false">Debug in Chrome</string><string name="catalyst_debugjs_off" project="catalyst" translatable="false">Stop Chrome Debugging</string><string name="catalyst_reloadjs" project="catalyst" translatable="false">Reload JS</string><style name="Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.ReactNative.AppCompat.Light">
        <item name="android:windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="android:windowFullscreen">true</item>
        <item name="android:windowContentOverlay">@null</item>
    </style><string name="catalyst_live_reload" project="catalyst" translatable="false">Enable Live Reload</string><string name="catalyst_jsload_error" project="catalyst" translatable="false">Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host &amp; port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081</string><string name="catalyst_remotedbg_message" project="catalyst" translatable="false">Connecting to remote debugger</string><style name="Theme"/></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-pl/values-pl.xml" qualifiers="pl"><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Zaczekaj...</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_element_inspector">Zbadaj element</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-vi/values-vi.xml" qualifiers="vi"><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_element_inspector">Kiểm tra phần tử</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Vui lòng đợi...</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-sv/values-sv.xml" qualifiers="sv"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_element_inspector">Inspektionselement</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Vänta ...</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-pt-rPT/values-pt-rPT.xml" qualifiers="pt-rPT"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_element_inspector">Show Inspector</string><string name="catalyst_jsload_title">Aguarda...</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file name="preferences" path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/xml/preferences.xml" qualifiers="" type="xml"/><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-tr/values-tr.xml" qualifiers="tr"><string name="catalyst_element_inspector">Öğeyi Denetle</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Lütfen bekleyin...</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-th/values-th.xml" qualifiers="th"><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">โปรดรอ...</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_element_inspector">ตรวจสอบอิลิเมนต์</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-en-rGB/values-en-rGB.xml" qualifiers="en-rGB"><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Please wait...</string><string name="catalyst_element_inspector">Show Inspector</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-fi/values-fi.xml" qualifiers="fi"><string name="catalyst_element_inspector">Tarkista elementti</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Odota…</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-fr/values-fr.xml" qualifiers="fr"><string name="catalyst_element_inspector">Inspecter l’élément</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Veuillez patienter...</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-es/values-es.xml" qualifiers="es"><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Espera...</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_element_inspector">Inspeccionar elemento</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-hu/values-hu.xml" qualifiers="hu"><string name="catalyst_settings">Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_title">Kérjük, várj...</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_element_inspector">Elem megtekintése</string><string name="catalyst_debugjs">Debug JS</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-nl/values-nl.xml" qualifiers="nl"><string name="catalyst_jsload_title">Even geduld...</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">Element inspecteren</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_jsload_message">Fetching JS bundle</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-nb/values-nb.xml" qualifiers="nb"><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Vent litt ...</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">Inspiser element</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-de/values-de.xml" qualifiers="de"><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_element_inspector">Element untersuchen</string><string name="catalyst_jsload_title">Bitte warten Sie ...</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings">Dev Settings</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-ko/values-ko.xml" qualifiers="ko"><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">기다려주세요...</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_settings">Dev Settings</string><string name="catalyst_element_inspector">요소 검사</string></file><file path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.20.1/res/values-pt/values-pt.xml" qualifiers="pt"><string name="catalyst_settings">Dev Settings</string><string name="catalyst_debugjs">Debug JS</string><string name="catalyst_reloadjs">Reload JS</string><string name="catalyst_jsload_error">Unable to download JS bundle</string><string name="catalyst_jsload_title">Aguarde...</string><string name="catalyst_jsload_message">Fetching JS bundle</string><string name="catalyst_settings_title">Catalyst Dev Settings</string><string name="catalyst_element_inspector">Show Inspector</string></file></source></dataSet><dataSet config="debug" from-dependency="true" generated-set="debug$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/intermediates/bundles/debug/res"/></dataSet><dataSet config="main" generated-set="main$Generated"><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/src/androidTest/res"/><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/generated/res/rs/androidTest/debug"/><source path="/Users/bess.leng/Project/rn-h2u-file-system/android/build/generated/res/resValues/androidTest/debug"/></dataSet><mergedItems><configuration qualifiers=""><declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/></declare-styleable><declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/></declare-styleable><declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/></declare-styleable><declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable><declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable><declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable><declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable><declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable><declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/></declare-styleable><declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/></declare-styleable><declare-styleable name="ActionBar"><attr name="navigationMode"><enum name="normal" value="0"/><enum name="listMode" value="1"/><enum name="tabMode" value="2"/></attr><attr name="displayOptions"><flag name="none" value="0"/><flag name="useLogo" value="0x1"/><flag name="showHome" value="0x2"/><flag name="homeAsUp" value="0x4"/><flag name="showTitle" value="0x8"/><flag name="showCustom" value="0x10"/><flag name="disableHome" value="0x20"/></attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable><declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable><declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable><declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargins"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr format="dimension" name="maxButtonHeight"/><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="android:minHeight"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/></declare-styleable><declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable><declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable><declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction"><flag name="never" value="0"/><flag name="ifRoom" value="1"/><flag name="always" value="2"/><flag name="withText" value="4"/><flag name="collapseActionView" value="8"/></attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable><declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode"><enum name="src_over" value="3"/><enum name="src_in" value="5"/><enum name="src_atop" value="9"/><enum name="multiply" value="14"/><enum name="screen" value="15"/></attr></declare-styleable><declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable><declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable><declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers"><flag name="none" value="0"/><flag name="beginning" value="1"/><flag name="middle" value="2"/><flag name="end" value="4"/></attr><attr format="dimension" name="dividerPadding"/></declare-styleable><declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable><declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable><declare-styleable name="Theme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize"><enum name="wrap_content" value="0"/></attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/></declare-styleable><declare-styleable name="RecyclerView"><attr format="string" name="layoutManager"/><attr name="android:orientation"/><attr format="integer" name="spanCount"/><attr format="boolean" name="reverseLayout"/><attr format="boolean" name="stackFromEnd"/></declare-styleable><declare-styleable name="GenericDraweeView"><attr format="integer" name="fadeDuration"/><attr format="float" name="viewAspectRatio"/><attr format="reference" name="placeholderImage"/><attr name="placeholderImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="retryImage"/><attr name="retryImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="failureImage"/><attr name="failureImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="progressBarImage"/><attr name="progressBarImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="integer" name="progressBarAutoRotateInterval"/><attr name="actualImageScaleType"><enum name="none" value="-1"/><enum name="fitXY" value="0"/><enum name="fitStart" value="1"/><enum name="fitCenter" value="2"/><enum name="fitEnd" value="3"/><enum name="center" value="4"/><enum name="centerInside" value="5"/><enum name="centerCrop" value="6"/><enum name="focusCrop" value="7"/></attr><attr format="reference" name="backgroundImage"/><attr format="reference" name="overlayImage"/><attr format="reference" name="pressedStateOverlayImage"/><attr format="boolean" name="roundAsCircle"/><attr format="dimension" name="roundedCornerRadius"/><attr format="boolean" name="roundTopLeft"/><attr format="boolean" name="roundTopRight"/><attr format="boolean" name="roundBottomRight"/><attr format="boolean" name="roundBottomLeft"/><attr format="color" name="roundWithOverlayColor"/><attr format="dimension" name="roundingBorderWidth"/><attr format="color" name="roundingBorderColor"/></declare-styleable><declare-styleable name="ActionMenuView"/><declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode"><enum name="src_over" value="3"/><enum name="src_in" value="5"/><enum name="src_atop" value="9"/><enum name="multiply" value="14"/><enum name="screen" value="15"/></attr></declare-styleable><declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="reference" name="track"/><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable></configuration></mergedItems></merger>